OpenAPI 3.1.02026-08-226994571.1 MB

1e929292ddd5

Claude Code Marketplace

Register Plugin

Register a plugin in the LiteLLM marketplace.

LiteLLM acts as a registry/discovery layer. Plugins are hosted on GitHub/GitLab/Bitbucket. Claude Code will clone from the git source when users install.

Parameters: - name: Plugin name (kebab-case) - source: Git source reference (github or url format) - version: Semantic version (optional) - description: Plugin description (optional) - author: Author information (optional) - homepage: Plugin homepage URL (optional) - keywords: Search keywords (optional) - category: Plugin category (optional)

Returns: Registration status and plugin information.

Example: bash curl -X POST http://localhost:4000/claude-code/plugins \ -H "Authorization: Bearer sk-..." \ -H "Content-Type: application/json" \ -d '{ "name": "my-plugin", "source": {"source": "github", "repo": "org/my-plugin"}, "version": "1.0.0", "description": "My awesome plugin" }'

post/claude-code/plugins

Request body

namestring required

Plugin name (kebab-case, e.g., 'my-plugin')

sourceobject required

Git source reference. Supported formats:

versionstring nullable

Semantic version

descriptionstring nullable

Plugin description

homepagestring nullable

Plugin homepage URL

keywordsstring[] nullable

Search keywords

categorystring nullable

Plugin category

Response

Successful Response

{"stackTrail":"paths:/claude-code/plugins:post:responses:200:content:application/json:schema","oasType":"schema","type":"unknown"}