Creator Contest. Win $100. Enter →

    Guides
    claude code
    plugins
    extensions

    Claude Code Plugins, Extensions & Skills — What's Available (2026)

    Everything you can add to Claude Code in 2026. SKILL.md skills, MCP servers, and marketplace plugins — what they are and how they differ.

    May 20, 20265 min read
    Share:

    People search for "Claude Code plugins" and "Claude Code extensions" but Claude Code doesn't use that terminology. What Claude Code has is skills and MCP connections. Here's what each does and how they relate to what you might call plugins or extensions.

    Quick Answer: Claude Code has "skills" and "MCP connections" instead of plugins or extensions. Skills are markdown instructions that teach Claude how to perform tasks, while MCP connections allow Claude to interact with external services and tools.

    Skills (SKILL.md)

    Skills are the primary way to extend Claude Code. A SKILL.md file teaches Claude how to handle specific tasks — code review, testing, documentation, DevOps, and more.

    Skills are not code that runs. They're instructions that Claude reads and follows. Think of them as expert knowledge packaged in a file.

    ~/.claude/skills/code-reviewer/SKILL.md
    

    Install a skill by putting its folder in your skills directory. Claude Code loads it at session startup.

    Find skills: Agensi marketplace or GitHub.

    See SKILL.md in action

    MCP connections

    MCP (Model Context Protocol) lets Claude Code connect to external services and use them as tools. An MCP server exposes capabilities that Claude can call — reading from databases, querying APIs, accessing file systems, or interacting with services like GitHub, Slack, or Jira.

    MCP connections are the closest thing to what other tools call "plugins" — they give Claude new capabilities it doesn't have natively.

    Common MCP connections:

    • Database access (read and write to your DB)
    • GitHub integration (create issues, read PRs)
    • Project management (Jira, Linear, Asana)
    • Monitoring (read logs, check alerts)
    • Custom internal tools

    Skills vs MCP — when to use each

    Skills (SKILL.md)MCP Connections
    What they doTeach Claude how to do tasksGive Claude access to external services
    FormatMarkdown instructionsServer endpoint
    InstallationDrop file in folderConfigure connection URL
    Example"Review code checking for OWASP Top 10""Read from our PostgreSQL database"
    Requires hostingNoYes (MCP server)

    They're complementary. A code review skill tells Claude how to review code. An MCP connection to GitHub gives Claude access to PRs that need review. Together: Claude pulls the PR via MCP and reviews it using the skill's standards.

    Where to find them

    Skills

    • Agensi — curated marketplace, security-scanned, one-time purchase
    • GitHub — open source, unvetted, free
    • Community — shared on Reddit, Discord, blogs

    MCP servers

    • Agensi's one-liner curl install — live access to the full skill catalog via MCP
    • Official integrations — Anthropic maintains MCP servers for common services
    • Community servers — open source MCP servers on GitHub
    • Custom — build your own for internal tools

    The "plugin marketplace" for Claude Code

    If you're looking for what would be a "plugin marketplace" in other ecosystems, the closest thing is Agensi. It's a curated catalog of skills organized by category (code review, testing, DevOps, frontend, documentation, etc.) that you can browse, purchase, and install in seconds.

    With Agensi's one-liner curl install, your agent connects via MCP and pulls skills on demand — no manual browsing or downloading. You describe what you need and the right skill loads automatically.

    What's coming

    The skill and MCP ecosystem is growing rapidly. Expect:

    • More MCP integrations with common dev tools
    • Agent-native discovery (your agent finds and suggests skills automatically)
    • Skill composition (skills that reference other skills)
    • Team skill management (centralized skill configuration for organizations)

    Browse the skill catalog at Agensi.

    Frequently Asked Questions

    Find the right skill for your workflow

    Browse our marketplace of AI agent skills, ready to install in seconds.

    Browse

    Related Articles