Source profileQuality 84/100

anthropics/claude-plugins-official/plugins/plugin-dev/skills/mcp-integration/SKILL.md

mcp-integration

This skill should be used when the user asks to "add MCP server", "integrate MCP", "configure MCP in plugin", "use .mcp.json", "set up Model Context Protocol", "connect external service", mentions "${CLAUDE_PLUGIN_ROOT} with MCP", or discusses MCP server types (SSE, stdio, HTTP, WebSocket). Provides comprehensive guidance for integrating Model Context Protocol servers into Claude Code plugins for external tool and service integration.

Source repository stars
33,026
Declared platforms
1
Static risk flags
1
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

This skill should be used when the user asks to "add MCP server", "integrate MCP", "configure MCP in plugin", "use . mcp.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeDeclaredSource recordInstall path and trigger
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/anthropics/claude-plugins-official --skill "plugins/plugin-dev/skills/mcp-integration"
    Safe inspection promptEditorial

    Inspect the Agent Skill "mcp-integration" from https://github.com/anthropics/claude-plugins-official/blob/2836081e91e492efdd9fc17acbd2e857f754bc73/plugins/plugin-dev/skills/mcp-integration/SKILL.md at commit 2836081e91e492efdd9fc17acbd2e857f754bc73. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      stdio (Local Process)

      Execute local MCP servers as child processes. Best for local tools and custom servers.

      File system accessLocal database connectionsCustom MCP servers
    2. 02

      Implementation Workflow

      To add MCP integration to a plugin:

      Choose MCP server type (stdio, SSE, HTTP, ws)Create .mcp.json at plugin root with configurationUse ${CLAUDEPLUGINROOT} for all file references
    3. 03

      MCP Server Configuration Methods

      Plugins can bundle MCP servers in two ways:

      Clear separation of concernsEasier to maintainBetter for multiple servers
    4. 04

      Method 1: Dedicated .mcp.json (Recommended)

      Create .mcp.json at plugin root:

      Clear separation of concernsEasier to maintainBetter for multiple servers
    5. 05

      Method 2: Inline in plugin.json

      Add mcpServers field to plugin.json:

      Single configuration fileGood for simple single-server pluginsAdd mcpServers field to plugin.json:

    Permission review

    Static risk signals and limitations

    Network access

    medium · line 99

    The documentation includes network, browsing, or remote request actions.

    "url": "https://mcp.asana.com/sse"

    Network access

    medium · line 124

    The documentation includes network, browsing, or remote request actions.

    "url": "https://api.example.com/mcp",

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score84/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars33,026SourceRepository attention, not individual Skill quality
    Compatibility1 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    anthropics/claude-plugins-official
    Skill path
    plugins/plugin-dev/skills/mcp-integration/SKILL.md
    Commit
    2836081e91e492efdd9fc17acbd2e857f754bc73
    License
    Apache-2.0
    Collected
    2026-08-04
    Default branch
    main
    View the original SKILL.md

    MCP Integration for Claude Code Plugins

    Overview

    Model Context Protocol (MCP) enables Claude Code plugins to integrate with external services and APIs by providing structured tool access. Use MCP integration to expose external service capabilities as tools within Claude Code.

    Key capabilities:

    • Connect to external services (databases, APIs, file systems)
    • Provide 10+ related tools from a single service
    • Handle OAuth and complex authentication flows
    • Bundle MCP servers with plugins for automatic setup

    MCP Server Configuration Methods

    Plugins can bundle MCP servers in two ways:

    Method 1: Dedicated .mcp.json (Recommended)

    Create .mcp.json at plugin root:

    {
      "database-tools": {
        "command": "${CLAUDE_PLUGIN_ROOT}/servers/db-server",
        "args": ["--config", "${CLAUDE_PLUGIN_ROOT}/config.json"],
        "env": {
          "DB_URL": "${DB_URL}"
        }
      }
    }
    

    Benefits:

    • Clear separation of concerns
    • Easier to maintain
    • Better for multiple servers

    Method 2: Inline in plugin.json

    Add mcpServers field to plugin.json:

    {
      "name": "my-plugin",
      "version": "1.0.0",
      "mcpServers": {
        "plugin-api": {
          "command": "${CLAUDE_PLUGIN_ROOT}/servers/api-server",
          "args": ["--port", "8080"]
        }
      }
    }
    

    Benefits:

    • Single configuration file
    • Good for simple single-server plugins

    MCP Server Types

    stdio (Local Process)

    Execute local MCP servers as child processes. Best for local tools and custom servers.

    Configuration:

    {
      "filesystem": {
        "command": "npx",
        "args": ["-y", "@modelcontextprotocol/server-filesystem", "/allowed/path"],
        "env": {
          "LOG_LEVEL": "debug"
        }
      }
    }
    

    Use cases:

    • File system access
    • Local database connections
    • Custom MCP servers
    • NPM-packaged MCP servers

    Process management:

    • Claude Code spawns and manages the process
    • Communicates via stdin/stdout
    • Terminates when Claude Code exits

    SSE (Server-Sent Events)

    Connect to hosted MCP servers with OAuth support. Best for cloud services.

    Configuration:

    {
      "asana": {
        "type": "sse",
        "url": "https://mcp.asana.com/sse"
      }
    }
    

    Use cases:

    • Official hosted MCP servers (Asana, GitHub, etc.)
    • Cloud services with MCP endpoints
    • OAuth-based authentication
    • No local installation needed

    Authentication:

    • OAuth flows handled automatically
    • User prompted on first use
    • Tokens managed by Claude Code

    HTTP (REST API)

    Connect to RESTful MCP servers with token authentication.

    Configuration:

    {
      "api-service": {
        "type": "http",
        "url": "https://api.example.com/mcp",
        "headers": {
          "Authorization": "Bearer ${API_TOKEN}",
          "X-Custom-Header": "value"
        }
      }
    }
    

    Use cases:

    • REST API-based MCP servers
    • Token-based authentication
    • Custom API backends
    • Stateless interactions

    WebSocket (Real-time)

    Connect to WebSocket MCP servers for real-time bidirectional communication.

    Configuration:

    {
      "realtime-service": {
        "type": "ws",
        "url": "wss://mcp.example.com/ws",
        "headers": {
          "Authorization": "Bearer ${TOKEN}"
        }
      }
    }
    

    Use cases:

    • Real-time data streaming
    • Persistent connections
    • Push notifications from server
    • Low-latency requirements

    Environment Variable Expansion

    All MCP configurations support environment variable substitution:

    ${CLAUDE_PLUGIN_ROOT} - Plugin directory (always use for portability):

    {
      "command": "${CLAUDE_PLUGIN_ROOT}/servers/my-server"
    }
    

    User environment variables - From user's shell:

    {
      "env": {
        "API_KEY": "${MY_API_KEY}",
        "DATABASE_URL": "${DB_URL}"
      }
    }
    

    Best practice: Document all required environment variables in plugin README.

    MCP Tool Naming

    When MCP servers provide tools, they're automatically prefixed:

    Format: mcp__plugin_<plugin-name>_<server-name>__<tool-name>

    Example:

    • Plugin: asana
    • Server: asana
    • Tool: create_task
    • Full name: mcp__plugin_asana_asana__asana_create_task

    Using MCP Tools in Commands

    Pre-allow specific MCP tools in command frontmatter:

    ---
    allowed-tools: [
      "mcp__plugin_asana_asana__asana_create_task",
      "mcp__plugin_asana_asana__asana_search_tasks"
    ]
    ---
    

    Wildcard (use sparingly):

    ---
    allowed-tools: ["mcp__plugin_asana_asana__*"]
    ---
    

    Best practice: Pre-allow specific tools, not wildcards, for security.

    Lifecycle Management

    Automatic startup:

    • MCP servers start when plugin enables
    • Connection established before first tool use
    • Restart required for configuration changes

    Lifecycle:

    1. Plugin loads
    2. MCP configuration parsed
    3. Server process started (stdio) or connection established (SSE/HTTP/WS)
    4. Tools discovered and registered
    5. Tools available as mcp__plugin_...__...

    Viewing servers: Use /mcp command to see all servers including plugin-provided ones.

    Authentication Patterns

    OAuth (SSE/HTTP)

    OAuth handled automatically by Claude Code:

    {
      "type": "sse",
      "url": "https://mcp.example.com/sse"
    }
    

    User authenticates in browser on first use. No additional configuration needed.

    Token-Based (Headers)

    Static or environment variable tokens:

    {
      "type": "http",
      "url": "https://api.example.com",
      "headers": {
        "Authorization": "Bearer ${API_TOKEN}"
      }
    }
    

    Document required environment variables in README.

    Environment Variables (stdio)

    Pass configuration to MCP server:

    {
      "command": "python",
      "args": ["-m", "my_mcp_server"],
      "env": {
        "DATABASE_URL": "${DB_URL}",
        "API_KEY": "${API_KEY}",
        "LOG_LEVEL": "info"
      }
    }
    

    Integration Patterns

    Pattern 1: Simple Tool Wrapper

    Commands use MCP tools with user interaction:

    # Command: create-item.md
    ---
    allowed-tools: ["mcp__plugin_name_server__create_item"]
    ---
    
    Steps:
    1. Gather item details from user
    2. Use mcp__plugin_name_server__create_item
    3. Confirm creation
    

    Use for: Adding validation or preprocessing before MCP calls.

    Pattern 2: Autonomous Agent

    Agents use MCP tools autonomously:

    # Agent: data-analyzer.md
    
    Analysis Process:
    1. Query data via mcp__plugin_db_server__query
    2. Process and analyze results
    3. Generate insights report
    

    Use for: Multi-step MCP workflows without user interaction.

    Pattern 3: Multi-Server Plugin

    Integrate multiple MCP servers:

    {
      "github": {
        "type": "sse",
        "url": "https://mcp.github.com/sse"
      },
      "jira": {
        "type": "sse",
        "url": "https://mcp.jira.com/sse"
      }
    }
    

    Use for: Workflows spanning multiple services.

    Security Best Practices

    Use HTTPS/WSS

    Always use secure connections:

    ✅ "url": "https://mcp.example.com/sse"
    ❌ "url": "http://mcp.example.com/sse"
    

    Token Management

    DO:

    • ✅ Use environment variables for tokens
    • ✅ Document required env vars in README
    • ✅ Let OAuth flow handle authentication

    DON'T:

    • ❌ Hardcode tokens in configuration
    • ❌ Commit tokens to git
    • ❌ Share tokens in documentation

    Permission Scoping

    Pre-allow only necessary MCP tools:

    ✅ allowed-tools: [
      "mcp__plugin_api_server__read_data",
      "mcp__plugin_api_server__create_item"
    ]
    
    ❌ allowed-tools: ["mcp__plugin_api_server__*"]
    

    Error Handling

    Connection Failures

    Handle MCP server unavailability:

    • Provide fallback behavior in commands
    • Inform user of connection issues
    • Check server URL and configuration

    Tool Call Errors

    Handle failed MCP operations:

    • Validate inputs before calling MCP tools
    • Provide clear error messages
    • Check rate limiting and quotas

    Configuration Errors

    Validate MCP configuration:

    • Test server connectivity during development
    • Validate JSON syntax
    • Check required environment variables

    Performance Considerations

    Lazy Loading

    MCP servers connect on-demand:

    • Not all servers connect at startup
    • First tool use triggers connection
    • Connection pooling managed automatically

    Batching

    Batch similar requests when possible:

    # Good: Single query with filters
    tasks = search_tasks(project="X", assignee="me", limit=50)
    
    # Avoid: Many individual queries
    for id in task_ids:
        task = get_task(id)
    

    Testing MCP Integration

    Local Testing

    1. Configure MCP server in .mcp.json
    2. Install plugin locally (.claude-plugin/)
    3. Run /mcp to verify server appears
    4. Test tool calls in commands
    5. Check claude --debug logs for connection issues

    Validation Checklist

    • MCP configuration is valid JSON
    • Server URL is correct and accessible
    • Required environment variables documented
    • Tools appear in /mcp output
    • Authentication works (OAuth or tokens)
    • Tool calls succeed from commands
    • Error cases handled gracefully

    Debugging

    Enable Debug Logging

    claude --debug
    

    Look for:

    • MCP server connection attempts
    • Tool discovery logs
    • Authentication flows
    • Tool call errors

    Common Issues

    Server not connecting:

    • Check URL is correct
    • Verify server is running (stdio)
    • Check network connectivity
    • Review authentication configuration

    Tools not available:

    • Verify server connected successfully
    • Check tool names match exactly
    • Run /mcp to see available tools
    • Restart Claude Code after config changes

    Authentication failing:

    • Clear cached auth tokens
    • Re-authenticate
    • Check token scopes and permissions
    • Verify environment variables set

    Quick Reference

    MCP Server Types

    TypeTransportBest ForAuth
    stdioProcessLocal tools, custom serversEnv vars
    SSEHTTPHosted services, cloud APIsOAuth
    HTTPRESTAPI backends, token authTokens
    wsWebSocketReal-time, streamingTokens

    Configuration Checklist

    • Server type specified (stdio/SSE/HTTP/ws)
    • Type-specific fields complete (command or url)
    • Authentication configured
    • Environment variables documented
    • HTTPS/WSS used (not HTTP/WS)
    • ${CLAUDE_PLUGIN_ROOT} used for paths

    Best Practices

    DO:

    • ✅ Use ${CLAUDE_PLUGIN_ROOT} for portable paths
    • ✅ Document required environment variables
    • ✅ Use secure connections (HTTPS/WSS)
    • ✅ Pre-allow specific MCP tools in commands
    • ✅ Test MCP integration before publishing
    • ✅ Handle connection and tool errors gracefully

    DON'T:

    • ❌ Hardcode absolute paths
    • ❌ Commit credentials to git
    • ❌ Use HTTP instead of HTTPS
    • ❌ Pre-allow all tools with wildcards
    • ❌ Skip error handling
    • ❌ Forget to document setup

    Additional Resources

    Reference Files

    For detailed information, consult:

    • references/server-types.md - Deep dive on each server type
    • references/authentication.md - Authentication patterns and OAuth
    • references/tool-usage.md - Using MCP tools in commands and agents

    Example Configurations

    Working examples in examples/:

    • stdio-server.json - Local stdio MCP server
    • sse-server.json - Hosted SSE server with OAuth
    • http-server.json - REST API with token auth

    External Resources

    Implementation Workflow

    To add MCP integration to a plugin:

    1. Choose MCP server type (stdio, SSE, HTTP, ws)
    2. Create .mcp.json at plugin root with configuration
    3. Use ${CLAUDE_PLUGIN_ROOT} for all file references
    4. Document required environment variables in README
    5. Test locally with /mcp command
    6. Pre-allow MCP tools in relevant commands
    7. Handle authentication (OAuth or tokens)
    8. Test error cases (connection failures, auth errors)
    9. Document MCP integration in plugin README

    Focus on stdio for custom/local servers, SSE for hosted services with OAuth.

    Alternatives

    Compare before choosing

    Computed 1007

    narrative-io/narrative-skills-marketplace

    design-analysis

    Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "

    Computed 9840,833

    luongnv89/claude-howto

    self-assessment

    Comprehensive Claude Code self-assessment and learning path advisor. Runs a multi-category quiz covering 10 feature areas, produces a detailed skill profile with per-topic scores, identifies specific gaps, and generates a personalized learning path with prioritized next steps. Use when asked to "assess my level", "take the quiz", "find my level", "where should I start", "what should I learn next", "check my skills", "skill check", or "level up".

    Computed 97195

    PramodDutta/qaskills

    Pairwise Test Generator

    Generate optimized test combinations using pairwise (all-pairs) testing algorithms to achieve maximum coverage with minimum test cases across multiple input parameters

    Computed 97195

    PramodDutta/qaskills

    RAG Regression Testing

    Gate RAG pipelines in CI with versioned golden eval sets, per-metric thresholds, baseline drift detection, and a build that fails when retrieval or answer quality regresses.