← All plugins
example-plugin
A comprehensive example plugin demonstrating all Claude Code extension options including commands, agents, skills, hooks, and MCP servers
Claude Code2 skills1 MCP serverstreamable-http
by Anthropic33.3kupdated 40 minutes ago
Source
git clone https://github.com/anthropics/claude-plugins-officialClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/example-plugin/ inside the repository.
Layout
plugins/example-plugin/
├── .claude-plugin/plugin.json├── skills/example-command/SKILL.md├── skills/example-skill/SKILL.md└── .mcp.json
Skills2
example-commandskills/example-command/SKILL.md
An example user-invoked skill that demonstrates frontmatter options and the skills/<name>/SKILL.md layout
example-skillskills/example-skill/SKILL.md
This skill should be used when the user asks to "demonstrate skills", "show skill format", "create a skill template", or discusses skill development patterns. Provides a reference template for creating Claude Code plugin skills.
MCP servers1
example-serverstreamable-http
- url
- https://mcp.example.com/api
Manifests1
plugins/example-plugin/.claude-plugin/plugin.json
{
"name": "example-plugin",
"description": "A comprehensive example plugin demonstrating all Claude Code extension options including commands, agents, skills, hooks, and MCP servers",
"author": {
"name": "Anthropic",
"email": "support@anthropic.com"
}
}