Official XMTP plugins for Claude Code
npx claudepluginhub xmtp/claude-pluginsSkill for working with XMTP messaging via the xmtp CLI tool
Official Claude Code plugin marketplace for XMTP.
A plugin marketplace is a catalog that distributes Claude Code plugins to your team and community. When someone adds this marketplace, they can browse and install any plugin listed here with a single command.
A plugin can contain any combination of:
Plugins are installed per-user and auto-update when the marketplace is refreshed.
# Add the marketplace
/plugin marketplace add xmtp/claude-plugins
# Install a plugin
/plugin install xmtp-docs-mcp@xmtp-plugins
| Plugin | Description | Source |
|---|---|---|
xmtp-docs-mcp | MCP server that exposes XMTP documentation as searchable tools | xmtp/xmtp-docs-mcp |
xmtp-cli | Skill for working with XMTP messaging via the xmtp CLI tool | Local |
There are two ways to add a plugin to this marketplace. Both are configured in .claude-plugin/marketplace.json.
If your plugin already lives in its own GitHub repo, point to it with a GitHub source. Use strict: false so the marketplace entry defines the plugin config (skills, MCP servers, hooks, etc.) without needing changes in the source repo.
{
"name": "my-plugin",
"source": {
"source": "github",
"repo": "xmtp/my-plugin-repo"
},
"description": "What the plugin does",
"version": "1.0.0",
"strict": false,
"mcpServers": {
"my-server": {
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/dist/server.js"]
}
}
}
When to use this: The plugin has its own release cycle, CI, or is maintained by a different team. The marketplace just catalogs it.
Put your plugin under plugins/ and use a relative path source. The plugin needs a .claude-plugin/plugin.json manifest and its content (skills, hooks, agents, etc.) in the standard directory structure.
plugins/
my-plugin/
.claude-plugin/
plugin.json
skills/
my-skill/
SKILL.md
{
"name": "my-plugin",
"source": "./plugins/my-plugin",
"description": "What the plugin does",
"version": "1.0.0"
}
When to use this: Lightweight plugins (skills, hooks) that don't need their own repo, or plugins you want to iterate on quickly.
For the full plugin spec, see the Claude Code plugin marketplace docs.
MIT