claude_code_marketplace

Register Plugin

Register a new 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.

This endpoint is create-only and never overwrites. If a plugin with the same name already exists it returns 409 Conflict; use PUT /claude-code/plugins/{plugin_name} to update an existing plugin.

Requires a proxy admin API key.

Parameters: - name: Plugin name (kebab-case) - source: Git source reference (github, url, or git-subdir 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 (action is always "created") 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

categorystring nullable

Plugin category

descriptionstring nullable

Plugin description

domainstring nullable

Skill domain (e.g., 'Productivity')

homepagestring nullable

Plugin homepage URL

keywordsstring[] nullable

Search keywords

namestring required

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

namespacestring nullable

Skill namespace within domain (e.g., 'workflows')

sourceobject required

Git source reference. Supported formats:

versionstring nullable

Semantic version

Response

Successful Response

actionstring required

Action taken (created/updated)

statusstring required

Operation status

Changes