[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-mcp-integration":3,"mdc--eovjs5-key":36,"related-repo-anthropic-mcp-integration":4535,"related-org-anthropic-mcp-integration":4637},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":31,"sourceUrl":34,"mdContent":35},"mcp-integration","integrate MCP servers into plugins","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.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20],{"name":14,"slug":15,"type":16},"MCP","mcp","tag",{"name":18,"slug":19,"type":16},"Plugin Development","plugin-development",{"name":21,"slug":22,"type":16},"API Development","api-development",32228,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official","2026-04-10T04:55:49.547827",null,3591,[29,15,30],"claude-code","skills",{"repoUrl":24,"stars":23,"forks":27,"topics":32,"description":33},[29,15,30],"Official, Anthropic-managed directory of high quality Claude Code Plugins.","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official\u002Ftree\u002FHEAD\u002Fplugins\u002Fplugin-dev\u002Fskills\u002Fmcp-integration","---\nname: mcp-integration\ndescription: 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.\nversion: 0.1.0\n---\n\n# MCP Integration for Claude Code Plugins\n\n## Overview\n\nModel 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.\n\n**Key capabilities:**\n- Connect to external services (databases, APIs, file systems)\n- Provide 10+ related tools from a single service\n- Handle OAuth and complex authentication flows\n- Bundle MCP servers with plugins for automatic setup\n\n## MCP Server Configuration Methods\n\nPlugins can bundle MCP servers in two ways:\n\n### Method 1: Dedicated .mcp.json (Recommended)\n\nCreate `.mcp.json` at plugin root:\n\n```json\n{\n  \"database-tools\": {\n    \"command\": \"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fdb-server\",\n    \"args\": [\"--config\", \"${CLAUDE_PLUGIN_ROOT}\u002Fconfig.json\"],\n    \"env\": {\n      \"DB_URL\": \"${DB_URL}\"\n    }\n  }\n}\n```\n\n**Benefits:**\n- Clear separation of concerns\n- Easier to maintain\n- Better for multiple servers\n\n### Method 2: Inline in plugin.json\n\nAdd `mcpServers` field to plugin.json:\n\n```json\n{\n  \"name\": \"my-plugin\",\n  \"version\": \"1.0.0\",\n  \"mcpServers\": {\n    \"plugin-api\": {\n      \"command\": \"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fapi-server\",\n      \"args\": [\"--port\", \"8080\"]\n    }\n  }\n}\n```\n\n**Benefits:**\n- Single configuration file\n- Good for simple single-server plugins\n\n## MCP Server Types\n\n### stdio (Local Process)\n\nExecute local MCP servers as child processes. Best for local tools and custom servers.\n\n**Configuration:**\n```json\n{\n  \"filesystem\": {\n    \"command\": \"npx\",\n    \"args\": [\"-y\", \"@modelcontextprotocol\u002Fserver-filesystem\", \"\u002Fallowed\u002Fpath\"],\n    \"env\": {\n      \"LOG_LEVEL\": \"debug\"\n    }\n  }\n}\n```\n\n**Use cases:**\n- File system access\n- Local database connections\n- Custom MCP servers\n- NPM-packaged MCP servers\n\n**Process management:**\n- Claude Code spawns and manages the process\n- Communicates via stdin\u002Fstdout\n- Terminates when Claude Code exits\n\n### SSE (Server-Sent Events)\n\nConnect to hosted MCP servers with OAuth support. Best for cloud services.\n\n**Configuration:**\n```json\n{\n  \"asana\": {\n    \"type\": \"sse\",\n    \"url\": \"https:\u002F\u002Fmcp.asana.com\u002Fsse\"\n  }\n}\n```\n\n**Use cases:**\n- Official hosted MCP servers (Asana, GitHub, etc.)\n- Cloud services with MCP endpoints\n- OAuth-based authentication\n- No local installation needed\n\n**Authentication:**\n- OAuth flows handled automatically\n- User prompted on first use\n- Tokens managed by Claude Code\n\n### HTTP (REST API)\n\nConnect to RESTful MCP servers with token authentication.\n\n**Configuration:**\n```json\n{\n  \"api-service\": {\n    \"type\": \"http\",\n    \"url\": \"https:\u002F\u002Fapi.example.com\u002Fmcp\",\n    \"headers\": {\n      \"Authorization\": \"Bearer ${API_TOKEN}\",\n      \"X-Custom-Header\": \"value\"\n    }\n  }\n}\n```\n\n**Use cases:**\n- REST API-based MCP servers\n- Token-based authentication\n- Custom API backends\n- Stateless interactions\n\n### WebSocket (Real-time)\n\nConnect to WebSocket MCP servers for real-time bidirectional communication.\n\n**Configuration:**\n```json\n{\n  \"realtime-service\": {\n    \"type\": \"ws\",\n    \"url\": \"wss:\u002F\u002Fmcp.example.com\u002Fws\",\n    \"headers\": {\n      \"Authorization\": \"Bearer ${TOKEN}\"\n    }\n  }\n}\n```\n\n**Use cases:**\n- Real-time data streaming\n- Persistent connections\n- Push notifications from server\n- Low-latency requirements\n\n## Environment Variable Expansion\n\nAll MCP configurations support environment variable substitution:\n\n**${CLAUDE_PLUGIN_ROOT}** - Plugin directory (always use for portability):\n```json\n{\n  \"command\": \"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fmy-server\"\n}\n```\n\n**User environment variables** - From user's shell:\n```json\n{\n  \"env\": {\n    \"API_KEY\": \"${MY_API_KEY}\",\n    \"DATABASE_URL\": \"${DB_URL}\"\n  }\n}\n```\n\n**Best practice:** Document all required environment variables in plugin README.\n\n## MCP Tool Naming\n\nWhen MCP servers provide tools, they're automatically prefixed:\n\n**Format:** `mcp__plugin_\u003Cplugin-name>_\u003Cserver-name>__\u003Ctool-name>`\n\n**Example:**\n- Plugin: `asana`\n- Server: `asana`\n- Tool: `create_task`\n- **Full name:** `mcp__plugin_asana_asana__asana_create_task`\n\n### Using MCP Tools in Commands\n\nPre-allow specific MCP tools in command frontmatter:\n\n```markdown\n---\nallowed-tools: [\n  \"mcp__plugin_asana_asana__asana_create_task\",\n  \"mcp__plugin_asana_asana__asana_search_tasks\"\n]\n---\n```\n\n**Wildcard (use sparingly):**\n```markdown\n---\nallowed-tools: [\"mcp__plugin_asana_asana__*\"]\n---\n```\n\n**Best practice:** Pre-allow specific tools, not wildcards, for security.\n\n## Lifecycle Management\n\n**Automatic startup:**\n- MCP servers start when plugin enables\n- Connection established before first tool use\n- Restart required for configuration changes\n\n**Lifecycle:**\n1. Plugin loads\n2. MCP configuration parsed\n3. Server process started (stdio) or connection established (SSE\u002FHTTP\u002FWS)\n4. Tools discovered and registered\n5. Tools available as `mcp__plugin_...__...`\n\n**Viewing servers:**\nUse `\u002Fmcp` command to see all servers including plugin-provided ones.\n\n## Authentication Patterns\n\n### OAuth (SSE\u002FHTTP)\n\nOAuth handled automatically by Claude Code:\n\n```json\n{\n  \"type\": \"sse\",\n  \"url\": \"https:\u002F\u002Fmcp.example.com\u002Fsse\"\n}\n```\n\nUser authenticates in browser on first use. No additional configuration needed.\n\n### Token-Based (Headers)\n\nStatic or environment variable tokens:\n\n```json\n{\n  \"type\": \"http\",\n  \"url\": \"https:\u002F\u002Fapi.example.com\",\n  \"headers\": {\n    \"Authorization\": \"Bearer ${API_TOKEN}\"\n  }\n}\n```\n\nDocument required environment variables in README.\n\n### Environment Variables (stdio)\n\nPass configuration to MCP server:\n\n```json\n{\n  \"command\": \"python\",\n  \"args\": [\"-m\", \"my_mcp_server\"],\n  \"env\": {\n    \"DATABASE_URL\": \"${DB_URL}\",\n    \"API_KEY\": \"${API_KEY}\",\n    \"LOG_LEVEL\": \"info\"\n  }\n}\n```\n\n## Integration Patterns\n\n### Pattern 1: Simple Tool Wrapper\n\nCommands use MCP tools with user interaction:\n\n```markdown\n# Command: create-item.md\n---\nallowed-tools: [\"mcp__plugin_name_server__create_item\"]\n---\n\nSteps:\n1. Gather item details from user\n2. Use mcp__plugin_name_server__create_item\n3. Confirm creation\n```\n\n**Use for:** Adding validation or preprocessing before MCP calls.\n\n### Pattern 2: Autonomous Agent\n\nAgents use MCP tools autonomously:\n\n```markdown\n# Agent: data-analyzer.md\n\nAnalysis Process:\n1. Query data via mcp__plugin_db_server__query\n2. Process and analyze results\n3. Generate insights report\n```\n\n**Use for:** Multi-step MCP workflows without user interaction.\n\n### Pattern 3: Multi-Server Plugin\n\nIntegrate multiple MCP servers:\n\n```json\n{\n  \"github\": {\n    \"type\": \"sse\",\n    \"url\": \"https:\u002F\u002Fmcp.github.com\u002Fsse\"\n  },\n  \"jira\": {\n    \"type\": \"sse\",\n    \"url\": \"https:\u002F\u002Fmcp.jira.com\u002Fsse\"\n  }\n}\n```\n\n**Use for:** Workflows spanning multiple services.\n\n## Security Best Practices\n\n### Use HTTPS\u002FWSS\n\nAlways use secure connections:\n\n```json\n✅ \"url\": \"https:\u002F\u002Fmcp.example.com\u002Fsse\"\n❌ \"url\": \"http:\u002F\u002Fmcp.example.com\u002Fsse\"\n```\n\n### Token Management\n\n**DO:**\n- ✅ Use environment variables for tokens\n- ✅ Document required env vars in README\n- ✅ Let OAuth flow handle authentication\n\n**DON'T:**\n- ❌ Hardcode tokens in configuration\n- ❌ Commit tokens to git\n- ❌ Share tokens in documentation\n\n### Permission Scoping\n\nPre-allow only necessary MCP tools:\n\n```markdown\n✅ allowed-tools: [\n  \"mcp__plugin_api_server__read_data\",\n  \"mcp__plugin_api_server__create_item\"\n]\n\n❌ allowed-tools: [\"mcp__plugin_api_server__*\"]\n```\n\n## Error Handling\n\n### Connection Failures\n\nHandle MCP server unavailability:\n- Provide fallback behavior in commands\n- Inform user of connection issues\n- Check server URL and configuration\n\n### Tool Call Errors\n\nHandle failed MCP operations:\n- Validate inputs before calling MCP tools\n- Provide clear error messages\n- Check rate limiting and quotas\n\n### Configuration Errors\n\nValidate MCP configuration:\n- Test server connectivity during development\n- Validate JSON syntax\n- Check required environment variables\n\n## Performance Considerations\n\n### Lazy Loading\n\nMCP servers connect on-demand:\n- Not all servers connect at startup\n- First tool use triggers connection\n- Connection pooling managed automatically\n\n### Batching\n\nBatch similar requests when possible:\n\n```\n# Good: Single query with filters\ntasks = search_tasks(project=\"X\", assignee=\"me\", limit=50)\n\n# Avoid: Many individual queries\nfor id in task_ids:\n    task = get_task(id)\n```\n\n## Testing MCP Integration\n\n### Local Testing\n\n1. Configure MCP server in `.mcp.json`\n2. Install plugin locally (`.claude-plugin\u002F`)\n3. Run `\u002Fmcp` to verify server appears\n4. Test tool calls in commands\n5. Check `claude --debug` logs for connection issues\n\n### Validation Checklist\n\n- [ ] MCP configuration is valid JSON\n- [ ] Server URL is correct and accessible\n- [ ] Required environment variables documented\n- [ ] Tools appear in `\u002Fmcp` output\n- [ ] Authentication works (OAuth or tokens)\n- [ ] Tool calls succeed from commands\n- [ ] Error cases handled gracefully\n\n## Debugging\n\n### Enable Debug Logging\n\n```bash\nclaude --debug\n```\n\nLook for:\n- MCP server connection attempts\n- Tool discovery logs\n- Authentication flows\n- Tool call errors\n\n### Common Issues\n\n**Server not connecting:**\n- Check URL is correct\n- Verify server is running (stdio)\n- Check network connectivity\n- Review authentication configuration\n\n**Tools not available:**\n- Verify server connected successfully\n- Check tool names match exactly\n- Run `\u002Fmcp` to see available tools\n- Restart Claude Code after config changes\n\n**Authentication failing:**\n- Clear cached auth tokens\n- Re-authenticate\n- Check token scopes and permissions\n- Verify environment variables set\n\n## Quick Reference\n\n### MCP Server Types\n\n| Type | Transport | Best For | Auth |\n|------|-----------|----------|------|\n| stdio | Process | Local tools, custom servers | Env vars |\n| SSE | HTTP | Hosted services, cloud APIs | OAuth |\n| HTTP | REST | API backends, token auth | Tokens |\n| ws | WebSocket | Real-time, streaming | Tokens |\n\n### Configuration Checklist\n\n- [ ] Server type specified (stdio\u002FSSE\u002FHTTP\u002Fws)\n- [ ] Type-specific fields complete (command or url)\n- [ ] Authentication configured\n- [ ] Environment variables documented\n- [ ] HTTPS\u002FWSS used (not HTTP\u002FWS)\n- [ ] ${CLAUDE_PLUGIN_ROOT} used for paths\n\n### Best Practices\n\n**DO:**\n- ✅ Use ${CLAUDE_PLUGIN_ROOT} for portable paths\n- ✅ Document required environment variables\n- ✅ Use secure connections (HTTPS\u002FWSS)\n- ✅ Pre-allow specific MCP tools in commands\n- ✅ Test MCP integration before publishing\n- ✅ Handle connection and tool errors gracefully\n\n**DON'T:**\n- ❌ Hardcode absolute paths\n- ❌ Commit credentials to git\n- ❌ Use HTTP instead of HTTPS\n- ❌ Pre-allow all tools with wildcards\n- ❌ Skip error handling\n- ❌ Forget to document setup\n\n## Additional Resources\n\n### Reference Files\n\nFor detailed information, consult:\n\n- **`references\u002Fserver-types.md`** - Deep dive on each server type\n- **`references\u002Fauthentication.md`** - Authentication patterns and OAuth\n- **`references\u002Ftool-usage.md`** - Using MCP tools in commands and agents\n\n### Example Configurations\n\nWorking examples in `examples\u002F`:\n\n- **`stdio-server.json`** - Local stdio MCP server\n- **`sse-server.json`** - Hosted SSE server with OAuth\n- **`http-server.json`** - REST API with token auth\n\n### External Resources\n\n- **Official MCP Docs**: https:\u002F\u002Fmodelcontextprotocol.io\u002F\n- **Claude Code MCP Docs**: https:\u002F\u002Fdocs.claude.com\u002Fen\u002Fdocs\u002Fclaude-code\u002Fmcp\n- **MCP SDK**: @modelcontextprotocol\u002Fsdk\n- **Testing**: Use `claude --debug` and `\u002Fmcp` command\n\n## Implementation Workflow\n\nTo add MCP integration to a plugin:\n\n1. Choose MCP server type (stdio, SSE, HTTP, ws)\n2. Create `.mcp.json` at plugin root with configuration\n3. Use ${CLAUDE_PLUGIN_ROOT} for all file references\n4. Document required environment variables in README\n5. Test locally with `\u002Fmcp` command\n6. Pre-allow MCP tools in relevant commands\n7. Handle authentication (OAuth or tokens)\n8. Test error cases (connection failures, auth errors)\n9. Document MCP integration in plugin README\n\nFocus on stdio for custom\u002Flocal servers, SSE for hosted services with OAuth.\n",{"data":37,"body":39},{"name":4,"description":6,"version":38},"0.1.0",{"type":40,"children":41},"root",[42,51,58,64,73,98,104,109,116,130,377,385,403,409,422,673,680,693,699,705,710,718,943,951,974,982,1000,1006,1011,1018,1140,1147,1170,1178,1196,1202,1207,1214,1439,1446,1469,1475,1480,1487,1673,1680,1703,1709,1714,1724,1777,1787,1907,1917,1923,1928,1944,1952,2001,2007,2012,2096,2104,2157,2166,2172,2180,2198,2206,2241,2259,2265,2271,2276,2364,2369,2375,2380,2533,2538,2544,2549,2796,2802,2808,2813,2926,2936,2942,2947,3017,3026,3032,3037,3255,3264,3270,3276,3281,3362,3368,3376,3394,3402,3420,3426,3431,3497,3503,3509,3514,3532,3538,3543,3561,3567,3572,3590,3596,3602,3607,3625,3631,3636,3646,3652,3658,3714,3720,3798,3804,3810,3832,3837,3860,3866,3874,3897,3905,3934,3942,3965,3971,3976,4103,4109,4167,4173,4180,4213,4220,4253,4259,4265,4270,4315,4321,4333,4378,4384,4453,4459,4464,4524,4529],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"mcp-integration-for-claude-code-plugins",[48],{"type":49,"value":50},"text","MCP Integration for Claude Code Plugins",{"type":43,"tag":52,"props":53,"children":55},"h2",{"id":54},"overview",[56],{"type":49,"value":57},"Overview",{"type":43,"tag":59,"props":60,"children":61},"p",{},[62],{"type":49,"value":63},"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.",{"type":43,"tag":59,"props":65,"children":66},{},[67],{"type":43,"tag":68,"props":69,"children":70},"strong",{},[71],{"type":49,"value":72},"Key capabilities:",{"type":43,"tag":74,"props":75,"children":76},"ul",{},[77,83,88,93],{"type":43,"tag":78,"props":79,"children":80},"li",{},[81],{"type":49,"value":82},"Connect to external services (databases, APIs, file systems)",{"type":43,"tag":78,"props":84,"children":85},{},[86],{"type":49,"value":87},"Provide 10+ related tools from a single service",{"type":43,"tag":78,"props":89,"children":90},{},[91],{"type":49,"value":92},"Handle OAuth and complex authentication flows",{"type":43,"tag":78,"props":94,"children":95},{},[96],{"type":49,"value":97},"Bundle MCP servers with plugins for automatic setup",{"type":43,"tag":52,"props":99,"children":101},{"id":100},"mcp-server-configuration-methods",[102],{"type":49,"value":103},"MCP Server Configuration Methods",{"type":43,"tag":59,"props":105,"children":106},{},[107],{"type":49,"value":108},"Plugins can bundle MCP servers in two ways:",{"type":43,"tag":110,"props":111,"children":113},"h3",{"id":112},"method-1-dedicated-mcpjson-recommended",[114],{"type":49,"value":115},"Method 1: Dedicated .mcp.json (Recommended)",{"type":43,"tag":59,"props":117,"children":118},{},[119,121,128],{"type":49,"value":120},"Create ",{"type":43,"tag":122,"props":123,"children":125},"code",{"className":124},[],[126],{"type":49,"value":127},".mcp.json",{"type":49,"value":129}," at plugin root:",{"type":43,"tag":131,"props":132,"children":137},"pre",{"className":133,"code":134,"language":135,"meta":136,"style":136},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"database-tools\": {\n    \"command\": \"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fdb-server\",\n    \"args\": [\"--config\", \"${CLAUDE_PLUGIN_ROOT}\u002Fconfig.json\"],\n    \"env\": {\n      \"DB_URL\": \"${DB_URL}\"\n    }\n  }\n}\n","json","",[138],{"type":43,"tag":122,"props":139,"children":140},{"__ignoreMap":136},[141,153,183,226,288,313,350,359,368],{"type":43,"tag":142,"props":143,"children":146},"span",{"class":144,"line":145},"line",1,[147],{"type":43,"tag":142,"props":148,"children":150},{"style":149},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[151],{"type":49,"value":152},"{\n",{"type":43,"tag":142,"props":154,"children":156},{"class":144,"line":155},2,[157,162,168,173,178],{"type":43,"tag":142,"props":158,"children":159},{"style":149},[160],{"type":49,"value":161},"  \"",{"type":43,"tag":142,"props":163,"children":165},{"style":164},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[166],{"type":49,"value":167},"database-tools",{"type":43,"tag":142,"props":169,"children":170},{"style":149},[171],{"type":49,"value":172},"\"",{"type":43,"tag":142,"props":174,"children":175},{"style":149},[176],{"type":49,"value":177},":",{"type":43,"tag":142,"props":179,"children":180},{"style":149},[181],{"type":49,"value":182}," {\n",{"type":43,"tag":142,"props":184,"children":186},{"class":144,"line":185},3,[187,192,198,202,206,211,217,221],{"type":43,"tag":142,"props":188,"children":189},{"style":149},[190],{"type":49,"value":191},"    \"",{"type":43,"tag":142,"props":193,"children":195},{"style":194},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[196],{"type":49,"value":197},"command",{"type":43,"tag":142,"props":199,"children":200},{"style":149},[201],{"type":49,"value":172},{"type":43,"tag":142,"props":203,"children":204},{"style":149},[205],{"type":49,"value":177},{"type":43,"tag":142,"props":207,"children":208},{"style":149},[209],{"type":49,"value":210}," \"",{"type":43,"tag":142,"props":212,"children":214},{"style":213},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[215],{"type":49,"value":216},"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fdb-server",{"type":43,"tag":142,"props":218,"children":219},{"style":149},[220],{"type":49,"value":172},{"type":43,"tag":142,"props":222,"children":223},{"style":149},[224],{"type":49,"value":225},",\n",{"type":43,"tag":142,"props":227,"children":229},{"class":144,"line":228},4,[230,234,239,243,247,252,256,261,265,270,274,279,283],{"type":43,"tag":142,"props":231,"children":232},{"style":149},[233],{"type":49,"value":191},{"type":43,"tag":142,"props":235,"children":236},{"style":194},[237],{"type":49,"value":238},"args",{"type":43,"tag":142,"props":240,"children":241},{"style":149},[242],{"type":49,"value":172},{"type":43,"tag":142,"props":244,"children":245},{"style":149},[246],{"type":49,"value":177},{"type":43,"tag":142,"props":248,"children":249},{"style":149},[250],{"type":49,"value":251}," [",{"type":43,"tag":142,"props":253,"children":254},{"style":149},[255],{"type":49,"value":172},{"type":43,"tag":142,"props":257,"children":258},{"style":213},[259],{"type":49,"value":260},"--config",{"type":43,"tag":142,"props":262,"children":263},{"style":149},[264],{"type":49,"value":172},{"type":43,"tag":142,"props":266,"children":267},{"style":149},[268],{"type":49,"value":269},",",{"type":43,"tag":142,"props":271,"children":272},{"style":149},[273],{"type":49,"value":210},{"type":43,"tag":142,"props":275,"children":276},{"style":213},[277],{"type":49,"value":278},"${CLAUDE_PLUGIN_ROOT}\u002Fconfig.json",{"type":43,"tag":142,"props":280,"children":281},{"style":149},[282],{"type":49,"value":172},{"type":43,"tag":142,"props":284,"children":285},{"style":149},[286],{"type":49,"value":287},"],\n",{"type":43,"tag":142,"props":289,"children":291},{"class":144,"line":290},5,[292,296,301,305,309],{"type":43,"tag":142,"props":293,"children":294},{"style":149},[295],{"type":49,"value":191},{"type":43,"tag":142,"props":297,"children":298},{"style":194},[299],{"type":49,"value":300},"env",{"type":43,"tag":142,"props":302,"children":303},{"style":149},[304],{"type":49,"value":172},{"type":43,"tag":142,"props":306,"children":307},{"style":149},[308],{"type":49,"value":177},{"type":43,"tag":142,"props":310,"children":311},{"style":149},[312],{"type":49,"value":182},{"type":43,"tag":142,"props":314,"children":316},{"class":144,"line":315},6,[317,322,328,332,336,340,345],{"type":43,"tag":142,"props":318,"children":319},{"style":149},[320],{"type":49,"value":321},"      \"",{"type":43,"tag":142,"props":323,"children":325},{"style":324},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[326],{"type":49,"value":327},"DB_URL",{"type":43,"tag":142,"props":329,"children":330},{"style":149},[331],{"type":49,"value":172},{"type":43,"tag":142,"props":333,"children":334},{"style":149},[335],{"type":49,"value":177},{"type":43,"tag":142,"props":337,"children":338},{"style":149},[339],{"type":49,"value":210},{"type":43,"tag":142,"props":341,"children":342},{"style":213},[343],{"type":49,"value":344},"${DB_URL}",{"type":43,"tag":142,"props":346,"children":347},{"style":149},[348],{"type":49,"value":349},"\"\n",{"type":43,"tag":142,"props":351,"children":353},{"class":144,"line":352},7,[354],{"type":43,"tag":142,"props":355,"children":356},{"style":149},[357],{"type":49,"value":358},"    }\n",{"type":43,"tag":142,"props":360,"children":362},{"class":144,"line":361},8,[363],{"type":43,"tag":142,"props":364,"children":365},{"style":149},[366],{"type":49,"value":367},"  }\n",{"type":43,"tag":142,"props":369,"children":371},{"class":144,"line":370},9,[372],{"type":43,"tag":142,"props":373,"children":374},{"style":149},[375],{"type":49,"value":376},"}\n",{"type":43,"tag":59,"props":378,"children":379},{},[380],{"type":43,"tag":68,"props":381,"children":382},{},[383],{"type":49,"value":384},"Benefits:",{"type":43,"tag":74,"props":386,"children":387},{},[388,393,398],{"type":43,"tag":78,"props":389,"children":390},{},[391],{"type":49,"value":392},"Clear separation of concerns",{"type":43,"tag":78,"props":394,"children":395},{},[396],{"type":49,"value":397},"Easier to maintain",{"type":43,"tag":78,"props":399,"children":400},{},[401],{"type":49,"value":402},"Better for multiple servers",{"type":43,"tag":110,"props":404,"children":406},{"id":405},"method-2-inline-in-pluginjson",[407],{"type":49,"value":408},"Method 2: Inline in plugin.json",{"type":43,"tag":59,"props":410,"children":411},{},[412,414,420],{"type":49,"value":413},"Add ",{"type":43,"tag":122,"props":415,"children":417},{"className":416},[],[418],{"type":49,"value":419},"mcpServers",{"type":49,"value":421}," field to plugin.json:",{"type":43,"tag":131,"props":423,"children":425},{"className":133,"code":424,"language":135,"meta":136,"style":136},"{\n  \"name\": \"my-plugin\",\n  \"version\": \"1.0.0\",\n  \"mcpServers\": {\n    \"plugin-api\": {\n      \"command\": \"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fapi-server\",\n      \"args\": [\"--port\", \"8080\"]\n    }\n  }\n}\n",[426],{"type":43,"tag":122,"props":427,"children":428},{"__ignoreMap":136},[429,436,473,510,533,557,593,651,658,665],{"type":43,"tag":142,"props":430,"children":431},{"class":144,"line":145},[432],{"type":43,"tag":142,"props":433,"children":434},{"style":149},[435],{"type":49,"value":152},{"type":43,"tag":142,"props":437,"children":438},{"class":144,"line":155},[439,443,448,452,456,460,465,469],{"type":43,"tag":142,"props":440,"children":441},{"style":149},[442],{"type":49,"value":161},{"type":43,"tag":142,"props":444,"children":445},{"style":164},[446],{"type":49,"value":447},"name",{"type":43,"tag":142,"props":449,"children":450},{"style":149},[451],{"type":49,"value":172},{"type":43,"tag":142,"props":453,"children":454},{"style":149},[455],{"type":49,"value":177},{"type":43,"tag":142,"props":457,"children":458},{"style":149},[459],{"type":49,"value":210},{"type":43,"tag":142,"props":461,"children":462},{"style":213},[463],{"type":49,"value":464},"my-plugin",{"type":43,"tag":142,"props":466,"children":467},{"style":149},[468],{"type":49,"value":172},{"type":43,"tag":142,"props":470,"children":471},{"style":149},[472],{"type":49,"value":225},{"type":43,"tag":142,"props":474,"children":475},{"class":144,"line":185},[476,480,485,489,493,497,502,506],{"type":43,"tag":142,"props":477,"children":478},{"style":149},[479],{"type":49,"value":161},{"type":43,"tag":142,"props":481,"children":482},{"style":164},[483],{"type":49,"value":484},"version",{"type":43,"tag":142,"props":486,"children":487},{"style":149},[488],{"type":49,"value":172},{"type":43,"tag":142,"props":490,"children":491},{"style":149},[492],{"type":49,"value":177},{"type":43,"tag":142,"props":494,"children":495},{"style":149},[496],{"type":49,"value":210},{"type":43,"tag":142,"props":498,"children":499},{"style":213},[500],{"type":49,"value":501},"1.0.0",{"type":43,"tag":142,"props":503,"children":504},{"style":149},[505],{"type":49,"value":172},{"type":43,"tag":142,"props":507,"children":508},{"style":149},[509],{"type":49,"value":225},{"type":43,"tag":142,"props":511,"children":512},{"class":144,"line":228},[513,517,521,525,529],{"type":43,"tag":142,"props":514,"children":515},{"style":149},[516],{"type":49,"value":161},{"type":43,"tag":142,"props":518,"children":519},{"style":164},[520],{"type":49,"value":419},{"type":43,"tag":142,"props":522,"children":523},{"style":149},[524],{"type":49,"value":172},{"type":43,"tag":142,"props":526,"children":527},{"style":149},[528],{"type":49,"value":177},{"type":43,"tag":142,"props":530,"children":531},{"style":149},[532],{"type":49,"value":182},{"type":43,"tag":142,"props":534,"children":535},{"class":144,"line":290},[536,540,545,549,553],{"type":43,"tag":142,"props":537,"children":538},{"style":149},[539],{"type":49,"value":191},{"type":43,"tag":142,"props":541,"children":542},{"style":194},[543],{"type":49,"value":544},"plugin-api",{"type":43,"tag":142,"props":546,"children":547},{"style":149},[548],{"type":49,"value":172},{"type":43,"tag":142,"props":550,"children":551},{"style":149},[552],{"type":49,"value":177},{"type":43,"tag":142,"props":554,"children":555},{"style":149},[556],{"type":49,"value":182},{"type":43,"tag":142,"props":558,"children":559},{"class":144,"line":315},[560,564,568,572,576,580,585,589],{"type":43,"tag":142,"props":561,"children":562},{"style":149},[563],{"type":49,"value":321},{"type":43,"tag":142,"props":565,"children":566},{"style":324},[567],{"type":49,"value":197},{"type":43,"tag":142,"props":569,"children":570},{"style":149},[571],{"type":49,"value":172},{"type":43,"tag":142,"props":573,"children":574},{"style":149},[575],{"type":49,"value":177},{"type":43,"tag":142,"props":577,"children":578},{"style":149},[579],{"type":49,"value":210},{"type":43,"tag":142,"props":581,"children":582},{"style":213},[583],{"type":49,"value":584},"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fapi-server",{"type":43,"tag":142,"props":586,"children":587},{"style":149},[588],{"type":49,"value":172},{"type":43,"tag":142,"props":590,"children":591},{"style":149},[592],{"type":49,"value":225},{"type":43,"tag":142,"props":594,"children":595},{"class":144,"line":352},[596,600,604,608,612,616,620,625,629,633,637,642,646],{"type":43,"tag":142,"props":597,"children":598},{"style":149},[599],{"type":49,"value":321},{"type":43,"tag":142,"props":601,"children":602},{"style":324},[603],{"type":49,"value":238},{"type":43,"tag":142,"props":605,"children":606},{"style":149},[607],{"type":49,"value":172},{"type":43,"tag":142,"props":609,"children":610},{"style":149},[611],{"type":49,"value":177},{"type":43,"tag":142,"props":613,"children":614},{"style":149},[615],{"type":49,"value":251},{"type":43,"tag":142,"props":617,"children":618},{"style":149},[619],{"type":49,"value":172},{"type":43,"tag":142,"props":621,"children":622},{"style":213},[623],{"type":49,"value":624},"--port",{"type":43,"tag":142,"props":626,"children":627},{"style":149},[628],{"type":49,"value":172},{"type":43,"tag":142,"props":630,"children":631},{"style":149},[632],{"type":49,"value":269},{"type":43,"tag":142,"props":634,"children":635},{"style":149},[636],{"type":49,"value":210},{"type":43,"tag":142,"props":638,"children":639},{"style":213},[640],{"type":49,"value":641},"8080",{"type":43,"tag":142,"props":643,"children":644},{"style":149},[645],{"type":49,"value":172},{"type":43,"tag":142,"props":647,"children":648},{"style":149},[649],{"type":49,"value":650},"]\n",{"type":43,"tag":142,"props":652,"children":653},{"class":144,"line":361},[654],{"type":43,"tag":142,"props":655,"children":656},{"style":149},[657],{"type":49,"value":358},{"type":43,"tag":142,"props":659,"children":660},{"class":144,"line":370},[661],{"type":43,"tag":142,"props":662,"children":663},{"style":149},[664],{"type":49,"value":367},{"type":43,"tag":142,"props":666,"children":668},{"class":144,"line":667},10,[669],{"type":43,"tag":142,"props":670,"children":671},{"style":149},[672],{"type":49,"value":376},{"type":43,"tag":59,"props":674,"children":675},{},[676],{"type":43,"tag":68,"props":677,"children":678},{},[679],{"type":49,"value":384},{"type":43,"tag":74,"props":681,"children":682},{},[683,688],{"type":43,"tag":78,"props":684,"children":685},{},[686],{"type":49,"value":687},"Single configuration file",{"type":43,"tag":78,"props":689,"children":690},{},[691],{"type":49,"value":692},"Good for simple single-server plugins",{"type":43,"tag":52,"props":694,"children":696},{"id":695},"mcp-server-types",[697],{"type":49,"value":698},"MCP Server Types",{"type":43,"tag":110,"props":700,"children":702},{"id":701},"stdio-local-process",[703],{"type":49,"value":704},"stdio (Local Process)",{"type":43,"tag":59,"props":706,"children":707},{},[708],{"type":49,"value":709},"Execute local MCP servers as child processes. Best for local tools and custom servers.",{"type":43,"tag":59,"props":711,"children":712},{},[713],{"type":43,"tag":68,"props":714,"children":715},{},[716],{"type":49,"value":717},"Configuration:",{"type":43,"tag":131,"props":719,"children":721},{"className":133,"code":720,"language":135,"meta":136,"style":136},"{\n  \"filesystem\": {\n    \"command\": \"npx\",\n    \"args\": [\"-y\", \"@modelcontextprotocol\u002Fserver-filesystem\", \"\u002Fallowed\u002Fpath\"],\n    \"env\": {\n      \"LOG_LEVEL\": \"debug\"\n    }\n  }\n}\n",[722],{"type":43,"tag":122,"props":723,"children":724},{"__ignoreMap":136},[725,732,756,792,866,889,922,929,936],{"type":43,"tag":142,"props":726,"children":727},{"class":144,"line":145},[728],{"type":43,"tag":142,"props":729,"children":730},{"style":149},[731],{"type":49,"value":152},{"type":43,"tag":142,"props":733,"children":734},{"class":144,"line":155},[735,739,744,748,752],{"type":43,"tag":142,"props":736,"children":737},{"style":149},[738],{"type":49,"value":161},{"type":43,"tag":142,"props":740,"children":741},{"style":164},[742],{"type":49,"value":743},"filesystem",{"type":43,"tag":142,"props":745,"children":746},{"style":149},[747],{"type":49,"value":172},{"type":43,"tag":142,"props":749,"children":750},{"style":149},[751],{"type":49,"value":177},{"type":43,"tag":142,"props":753,"children":754},{"style":149},[755],{"type":49,"value":182},{"type":43,"tag":142,"props":757,"children":758},{"class":144,"line":185},[759,763,767,771,775,779,784,788],{"type":43,"tag":142,"props":760,"children":761},{"style":149},[762],{"type":49,"value":191},{"type":43,"tag":142,"props":764,"children":765},{"style":194},[766],{"type":49,"value":197},{"type":43,"tag":142,"props":768,"children":769},{"style":149},[770],{"type":49,"value":172},{"type":43,"tag":142,"props":772,"children":773},{"style":149},[774],{"type":49,"value":177},{"type":43,"tag":142,"props":776,"children":777},{"style":149},[778],{"type":49,"value":210},{"type":43,"tag":142,"props":780,"children":781},{"style":213},[782],{"type":49,"value":783},"npx",{"type":43,"tag":142,"props":785,"children":786},{"style":149},[787],{"type":49,"value":172},{"type":43,"tag":142,"props":789,"children":790},{"style":149},[791],{"type":49,"value":225},{"type":43,"tag":142,"props":793,"children":794},{"class":144,"line":228},[795,799,803,807,811,815,819,824,828,832,836,841,845,849,853,858,862],{"type":43,"tag":142,"props":796,"children":797},{"style":149},[798],{"type":49,"value":191},{"type":43,"tag":142,"props":800,"children":801},{"style":194},[802],{"type":49,"value":238},{"type":43,"tag":142,"props":804,"children":805},{"style":149},[806],{"type":49,"value":172},{"type":43,"tag":142,"props":808,"children":809},{"style":149},[810],{"type":49,"value":177},{"type":43,"tag":142,"props":812,"children":813},{"style":149},[814],{"type":49,"value":251},{"type":43,"tag":142,"props":816,"children":817},{"style":149},[818],{"type":49,"value":172},{"type":43,"tag":142,"props":820,"children":821},{"style":213},[822],{"type":49,"value":823},"-y",{"type":43,"tag":142,"props":825,"children":826},{"style":149},[827],{"type":49,"value":172},{"type":43,"tag":142,"props":829,"children":830},{"style":149},[831],{"type":49,"value":269},{"type":43,"tag":142,"props":833,"children":834},{"style":149},[835],{"type":49,"value":210},{"type":43,"tag":142,"props":837,"children":838},{"style":213},[839],{"type":49,"value":840},"@modelcontextprotocol\u002Fserver-filesystem",{"type":43,"tag":142,"props":842,"children":843},{"style":149},[844],{"type":49,"value":172},{"type":43,"tag":142,"props":846,"children":847},{"style":149},[848],{"type":49,"value":269},{"type":43,"tag":142,"props":850,"children":851},{"style":149},[852],{"type":49,"value":210},{"type":43,"tag":142,"props":854,"children":855},{"style":213},[856],{"type":49,"value":857},"\u002Fallowed\u002Fpath",{"type":43,"tag":142,"props":859,"children":860},{"style":149},[861],{"type":49,"value":172},{"type":43,"tag":142,"props":863,"children":864},{"style":149},[865],{"type":49,"value":287},{"type":43,"tag":142,"props":867,"children":868},{"class":144,"line":290},[869,873,877,881,885],{"type":43,"tag":142,"props":870,"children":871},{"style":149},[872],{"type":49,"value":191},{"type":43,"tag":142,"props":874,"children":875},{"style":194},[876],{"type":49,"value":300},{"type":43,"tag":142,"props":878,"children":879},{"style":149},[880],{"type":49,"value":172},{"type":43,"tag":142,"props":882,"children":883},{"style":149},[884],{"type":49,"value":177},{"type":43,"tag":142,"props":886,"children":887},{"style":149},[888],{"type":49,"value":182},{"type":43,"tag":142,"props":890,"children":891},{"class":144,"line":315},[892,896,901,905,909,913,918],{"type":43,"tag":142,"props":893,"children":894},{"style":149},[895],{"type":49,"value":321},{"type":43,"tag":142,"props":897,"children":898},{"style":324},[899],{"type":49,"value":900},"LOG_LEVEL",{"type":43,"tag":142,"props":902,"children":903},{"style":149},[904],{"type":49,"value":172},{"type":43,"tag":142,"props":906,"children":907},{"style":149},[908],{"type":49,"value":177},{"type":43,"tag":142,"props":910,"children":911},{"style":149},[912],{"type":49,"value":210},{"type":43,"tag":142,"props":914,"children":915},{"style":213},[916],{"type":49,"value":917},"debug",{"type":43,"tag":142,"props":919,"children":920},{"style":149},[921],{"type":49,"value":349},{"type":43,"tag":142,"props":923,"children":924},{"class":144,"line":352},[925],{"type":43,"tag":142,"props":926,"children":927},{"style":149},[928],{"type":49,"value":358},{"type":43,"tag":142,"props":930,"children":931},{"class":144,"line":361},[932],{"type":43,"tag":142,"props":933,"children":934},{"style":149},[935],{"type":49,"value":367},{"type":43,"tag":142,"props":937,"children":938},{"class":144,"line":370},[939],{"type":43,"tag":142,"props":940,"children":941},{"style":149},[942],{"type":49,"value":376},{"type":43,"tag":59,"props":944,"children":945},{},[946],{"type":43,"tag":68,"props":947,"children":948},{},[949],{"type":49,"value":950},"Use cases:",{"type":43,"tag":74,"props":952,"children":953},{},[954,959,964,969],{"type":43,"tag":78,"props":955,"children":956},{},[957],{"type":49,"value":958},"File system access",{"type":43,"tag":78,"props":960,"children":961},{},[962],{"type":49,"value":963},"Local database connections",{"type":43,"tag":78,"props":965,"children":966},{},[967],{"type":49,"value":968},"Custom MCP servers",{"type":43,"tag":78,"props":970,"children":971},{},[972],{"type":49,"value":973},"NPM-packaged MCP servers",{"type":43,"tag":59,"props":975,"children":976},{},[977],{"type":43,"tag":68,"props":978,"children":979},{},[980],{"type":49,"value":981},"Process management:",{"type":43,"tag":74,"props":983,"children":984},{},[985,990,995],{"type":43,"tag":78,"props":986,"children":987},{},[988],{"type":49,"value":989},"Claude Code spawns and manages the process",{"type":43,"tag":78,"props":991,"children":992},{},[993],{"type":49,"value":994},"Communicates via stdin\u002Fstdout",{"type":43,"tag":78,"props":996,"children":997},{},[998],{"type":49,"value":999},"Terminates when Claude Code exits",{"type":43,"tag":110,"props":1001,"children":1003},{"id":1002},"sse-server-sent-events",[1004],{"type":49,"value":1005},"SSE (Server-Sent Events)",{"type":43,"tag":59,"props":1007,"children":1008},{},[1009],{"type":49,"value":1010},"Connect to hosted MCP servers with OAuth support. Best for cloud services.",{"type":43,"tag":59,"props":1012,"children":1013},{},[1014],{"type":43,"tag":68,"props":1015,"children":1016},{},[1017],{"type":49,"value":717},{"type":43,"tag":131,"props":1019,"children":1021},{"className":133,"code":1020,"language":135,"meta":136,"style":136},"{\n  \"asana\": {\n    \"type\": \"sse\",\n    \"url\": \"https:\u002F\u002Fmcp.asana.com\u002Fsse\"\n  }\n}\n",[1022],{"type":43,"tag":122,"props":1023,"children":1024},{"__ignoreMap":136},[1025,1032,1056,1093,1126,1133],{"type":43,"tag":142,"props":1026,"children":1027},{"class":144,"line":145},[1028],{"type":43,"tag":142,"props":1029,"children":1030},{"style":149},[1031],{"type":49,"value":152},{"type":43,"tag":142,"props":1033,"children":1034},{"class":144,"line":155},[1035,1039,1044,1048,1052],{"type":43,"tag":142,"props":1036,"children":1037},{"style":149},[1038],{"type":49,"value":161},{"type":43,"tag":142,"props":1040,"children":1041},{"style":164},[1042],{"type":49,"value":1043},"asana",{"type":43,"tag":142,"props":1045,"children":1046},{"style":149},[1047],{"type":49,"value":172},{"type":43,"tag":142,"props":1049,"children":1050},{"style":149},[1051],{"type":49,"value":177},{"type":43,"tag":142,"props":1053,"children":1054},{"style":149},[1055],{"type":49,"value":182},{"type":43,"tag":142,"props":1057,"children":1058},{"class":144,"line":185},[1059,1063,1068,1072,1076,1080,1085,1089],{"type":43,"tag":142,"props":1060,"children":1061},{"style":149},[1062],{"type":49,"value":191},{"type":43,"tag":142,"props":1064,"children":1065},{"style":194},[1066],{"type":49,"value":1067},"type",{"type":43,"tag":142,"props":1069,"children":1070},{"style":149},[1071],{"type":49,"value":172},{"type":43,"tag":142,"props":1073,"children":1074},{"style":149},[1075],{"type":49,"value":177},{"type":43,"tag":142,"props":1077,"children":1078},{"style":149},[1079],{"type":49,"value":210},{"type":43,"tag":142,"props":1081,"children":1082},{"style":213},[1083],{"type":49,"value":1084},"sse",{"type":43,"tag":142,"props":1086,"children":1087},{"style":149},[1088],{"type":49,"value":172},{"type":43,"tag":142,"props":1090,"children":1091},{"style":149},[1092],{"type":49,"value":225},{"type":43,"tag":142,"props":1094,"children":1095},{"class":144,"line":228},[1096,1100,1105,1109,1113,1117,1122],{"type":43,"tag":142,"props":1097,"children":1098},{"style":149},[1099],{"type":49,"value":191},{"type":43,"tag":142,"props":1101,"children":1102},{"style":194},[1103],{"type":49,"value":1104},"url",{"type":43,"tag":142,"props":1106,"children":1107},{"style":149},[1108],{"type":49,"value":172},{"type":43,"tag":142,"props":1110,"children":1111},{"style":149},[1112],{"type":49,"value":177},{"type":43,"tag":142,"props":1114,"children":1115},{"style":149},[1116],{"type":49,"value":210},{"type":43,"tag":142,"props":1118,"children":1119},{"style":213},[1120],{"type":49,"value":1121},"https:\u002F\u002Fmcp.asana.com\u002Fsse",{"type":43,"tag":142,"props":1123,"children":1124},{"style":149},[1125],{"type":49,"value":349},{"type":43,"tag":142,"props":1127,"children":1128},{"class":144,"line":290},[1129],{"type":43,"tag":142,"props":1130,"children":1131},{"style":149},[1132],{"type":49,"value":367},{"type":43,"tag":142,"props":1134,"children":1135},{"class":144,"line":315},[1136],{"type":43,"tag":142,"props":1137,"children":1138},{"style":149},[1139],{"type":49,"value":376},{"type":43,"tag":59,"props":1141,"children":1142},{},[1143],{"type":43,"tag":68,"props":1144,"children":1145},{},[1146],{"type":49,"value":950},{"type":43,"tag":74,"props":1148,"children":1149},{},[1150,1155,1160,1165],{"type":43,"tag":78,"props":1151,"children":1152},{},[1153],{"type":49,"value":1154},"Official hosted MCP servers (Asana, GitHub, etc.)",{"type":43,"tag":78,"props":1156,"children":1157},{},[1158],{"type":49,"value":1159},"Cloud services with MCP endpoints",{"type":43,"tag":78,"props":1161,"children":1162},{},[1163],{"type":49,"value":1164},"OAuth-based authentication",{"type":43,"tag":78,"props":1166,"children":1167},{},[1168],{"type":49,"value":1169},"No local installation needed",{"type":43,"tag":59,"props":1171,"children":1172},{},[1173],{"type":43,"tag":68,"props":1174,"children":1175},{},[1176],{"type":49,"value":1177},"Authentication:",{"type":43,"tag":74,"props":1179,"children":1180},{},[1181,1186,1191],{"type":43,"tag":78,"props":1182,"children":1183},{},[1184],{"type":49,"value":1185},"OAuth flows handled automatically",{"type":43,"tag":78,"props":1187,"children":1188},{},[1189],{"type":49,"value":1190},"User prompted on first use",{"type":43,"tag":78,"props":1192,"children":1193},{},[1194],{"type":49,"value":1195},"Tokens managed by Claude Code",{"type":43,"tag":110,"props":1197,"children":1199},{"id":1198},"http-rest-api",[1200],{"type":49,"value":1201},"HTTP (REST API)",{"type":43,"tag":59,"props":1203,"children":1204},{},[1205],{"type":49,"value":1206},"Connect to RESTful MCP servers with token authentication.",{"type":43,"tag":59,"props":1208,"children":1209},{},[1210],{"type":43,"tag":68,"props":1211,"children":1212},{},[1213],{"type":49,"value":717},{"type":43,"tag":131,"props":1215,"children":1217},{"className":133,"code":1216,"language":135,"meta":136,"style":136},"{\n  \"api-service\": {\n    \"type\": \"http\",\n    \"url\": \"https:\u002F\u002Fapi.example.com\u002Fmcp\",\n    \"headers\": {\n      \"Authorization\": \"Bearer ${API_TOKEN}\",\n      \"X-Custom-Header\": \"value\"\n    }\n  }\n}\n",[1218],{"type":43,"tag":122,"props":1219,"children":1220},{"__ignoreMap":136},[1221,1228,1252,1288,1324,1348,1385,1418,1425,1432],{"type":43,"tag":142,"props":1222,"children":1223},{"class":144,"line":145},[1224],{"type":43,"tag":142,"props":1225,"children":1226},{"style":149},[1227],{"type":49,"value":152},{"type":43,"tag":142,"props":1229,"children":1230},{"class":144,"line":155},[1231,1235,1240,1244,1248],{"type":43,"tag":142,"props":1232,"children":1233},{"style":149},[1234],{"type":49,"value":161},{"type":43,"tag":142,"props":1236,"children":1237},{"style":164},[1238],{"type":49,"value":1239},"api-service",{"type":43,"tag":142,"props":1241,"children":1242},{"style":149},[1243],{"type":49,"value":172},{"type":43,"tag":142,"props":1245,"children":1246},{"style":149},[1247],{"type":49,"value":177},{"type":43,"tag":142,"props":1249,"children":1250},{"style":149},[1251],{"type":49,"value":182},{"type":43,"tag":142,"props":1253,"children":1254},{"class":144,"line":185},[1255,1259,1263,1267,1271,1275,1280,1284],{"type":43,"tag":142,"props":1256,"children":1257},{"style":149},[1258],{"type":49,"value":191},{"type":43,"tag":142,"props":1260,"children":1261},{"style":194},[1262],{"type":49,"value":1067},{"type":43,"tag":142,"props":1264,"children":1265},{"style":149},[1266],{"type":49,"value":172},{"type":43,"tag":142,"props":1268,"children":1269},{"style":149},[1270],{"type":49,"value":177},{"type":43,"tag":142,"props":1272,"children":1273},{"style":149},[1274],{"type":49,"value":210},{"type":43,"tag":142,"props":1276,"children":1277},{"style":213},[1278],{"type":49,"value":1279},"http",{"type":43,"tag":142,"props":1281,"children":1282},{"style":149},[1283],{"type":49,"value":172},{"type":43,"tag":142,"props":1285,"children":1286},{"style":149},[1287],{"type":49,"value":225},{"type":43,"tag":142,"props":1289,"children":1290},{"class":144,"line":228},[1291,1295,1299,1303,1307,1311,1316,1320],{"type":43,"tag":142,"props":1292,"children":1293},{"style":149},[1294],{"type":49,"value":191},{"type":43,"tag":142,"props":1296,"children":1297},{"style":194},[1298],{"type":49,"value":1104},{"type":43,"tag":142,"props":1300,"children":1301},{"style":149},[1302],{"type":49,"value":172},{"type":43,"tag":142,"props":1304,"children":1305},{"style":149},[1306],{"type":49,"value":177},{"type":43,"tag":142,"props":1308,"children":1309},{"style":149},[1310],{"type":49,"value":210},{"type":43,"tag":142,"props":1312,"children":1313},{"style":213},[1314],{"type":49,"value":1315},"https:\u002F\u002Fapi.example.com\u002Fmcp",{"type":43,"tag":142,"props":1317,"children":1318},{"style":149},[1319],{"type":49,"value":172},{"type":43,"tag":142,"props":1321,"children":1322},{"style":149},[1323],{"type":49,"value":225},{"type":43,"tag":142,"props":1325,"children":1326},{"class":144,"line":290},[1327,1331,1336,1340,1344],{"type":43,"tag":142,"props":1328,"children":1329},{"style":149},[1330],{"type":49,"value":191},{"type":43,"tag":142,"props":1332,"children":1333},{"style":194},[1334],{"type":49,"value":1335},"headers",{"type":43,"tag":142,"props":1337,"children":1338},{"style":149},[1339],{"type":49,"value":172},{"type":43,"tag":142,"props":1341,"children":1342},{"style":149},[1343],{"type":49,"value":177},{"type":43,"tag":142,"props":1345,"children":1346},{"style":149},[1347],{"type":49,"value":182},{"type":43,"tag":142,"props":1349,"children":1350},{"class":144,"line":315},[1351,1355,1360,1364,1368,1372,1377,1381],{"type":43,"tag":142,"props":1352,"children":1353},{"style":149},[1354],{"type":49,"value":321},{"type":43,"tag":142,"props":1356,"children":1357},{"style":324},[1358],{"type":49,"value":1359},"Authorization",{"type":43,"tag":142,"props":1361,"children":1362},{"style":149},[1363],{"type":49,"value":172},{"type":43,"tag":142,"props":1365,"children":1366},{"style":149},[1367],{"type":49,"value":177},{"type":43,"tag":142,"props":1369,"children":1370},{"style":149},[1371],{"type":49,"value":210},{"type":43,"tag":142,"props":1373,"children":1374},{"style":213},[1375],{"type":49,"value":1376},"Bearer ${API_TOKEN}",{"type":43,"tag":142,"props":1378,"children":1379},{"style":149},[1380],{"type":49,"value":172},{"type":43,"tag":142,"props":1382,"children":1383},{"style":149},[1384],{"type":49,"value":225},{"type":43,"tag":142,"props":1386,"children":1387},{"class":144,"line":352},[1388,1392,1397,1401,1405,1409,1414],{"type":43,"tag":142,"props":1389,"children":1390},{"style":149},[1391],{"type":49,"value":321},{"type":43,"tag":142,"props":1393,"children":1394},{"style":324},[1395],{"type":49,"value":1396},"X-Custom-Header",{"type":43,"tag":142,"props":1398,"children":1399},{"style":149},[1400],{"type":49,"value":172},{"type":43,"tag":142,"props":1402,"children":1403},{"style":149},[1404],{"type":49,"value":177},{"type":43,"tag":142,"props":1406,"children":1407},{"style":149},[1408],{"type":49,"value":210},{"type":43,"tag":142,"props":1410,"children":1411},{"style":213},[1412],{"type":49,"value":1413},"value",{"type":43,"tag":142,"props":1415,"children":1416},{"style":149},[1417],{"type":49,"value":349},{"type":43,"tag":142,"props":1419,"children":1420},{"class":144,"line":361},[1421],{"type":43,"tag":142,"props":1422,"children":1423},{"style":149},[1424],{"type":49,"value":358},{"type":43,"tag":142,"props":1426,"children":1427},{"class":144,"line":370},[1428],{"type":43,"tag":142,"props":1429,"children":1430},{"style":149},[1431],{"type":49,"value":367},{"type":43,"tag":142,"props":1433,"children":1434},{"class":144,"line":667},[1435],{"type":43,"tag":142,"props":1436,"children":1437},{"style":149},[1438],{"type":49,"value":376},{"type":43,"tag":59,"props":1440,"children":1441},{},[1442],{"type":43,"tag":68,"props":1443,"children":1444},{},[1445],{"type":49,"value":950},{"type":43,"tag":74,"props":1447,"children":1448},{},[1449,1454,1459,1464],{"type":43,"tag":78,"props":1450,"children":1451},{},[1452],{"type":49,"value":1453},"REST API-based MCP servers",{"type":43,"tag":78,"props":1455,"children":1456},{},[1457],{"type":49,"value":1458},"Token-based authentication",{"type":43,"tag":78,"props":1460,"children":1461},{},[1462],{"type":49,"value":1463},"Custom API backends",{"type":43,"tag":78,"props":1465,"children":1466},{},[1467],{"type":49,"value":1468},"Stateless interactions",{"type":43,"tag":110,"props":1470,"children":1472},{"id":1471},"websocket-real-time",[1473],{"type":49,"value":1474},"WebSocket (Real-time)",{"type":43,"tag":59,"props":1476,"children":1477},{},[1478],{"type":49,"value":1479},"Connect to WebSocket MCP servers for real-time bidirectional communication.",{"type":43,"tag":59,"props":1481,"children":1482},{},[1483],{"type":43,"tag":68,"props":1484,"children":1485},{},[1486],{"type":49,"value":717},{"type":43,"tag":131,"props":1488,"children":1490},{"className":133,"code":1489,"language":135,"meta":136,"style":136},"{\n  \"realtime-service\": {\n    \"type\": \"ws\",\n    \"url\": \"wss:\u002F\u002Fmcp.example.com\u002Fws\",\n    \"headers\": {\n      \"Authorization\": \"Bearer ${TOKEN}\"\n    }\n  }\n}\n",[1491],{"type":43,"tag":122,"props":1492,"children":1493},{"__ignoreMap":136},[1494,1501,1525,1561,1597,1620,1652,1659,1666],{"type":43,"tag":142,"props":1495,"children":1496},{"class":144,"line":145},[1497],{"type":43,"tag":142,"props":1498,"children":1499},{"style":149},[1500],{"type":49,"value":152},{"type":43,"tag":142,"props":1502,"children":1503},{"class":144,"line":155},[1504,1508,1513,1517,1521],{"type":43,"tag":142,"props":1505,"children":1506},{"style":149},[1507],{"type":49,"value":161},{"type":43,"tag":142,"props":1509,"children":1510},{"style":164},[1511],{"type":49,"value":1512},"realtime-service",{"type":43,"tag":142,"props":1514,"children":1515},{"style":149},[1516],{"type":49,"value":172},{"type":43,"tag":142,"props":1518,"children":1519},{"style":149},[1520],{"type":49,"value":177},{"type":43,"tag":142,"props":1522,"children":1523},{"style":149},[1524],{"type":49,"value":182},{"type":43,"tag":142,"props":1526,"children":1527},{"class":144,"line":185},[1528,1532,1536,1540,1544,1548,1553,1557],{"type":43,"tag":142,"props":1529,"children":1530},{"style":149},[1531],{"type":49,"value":191},{"type":43,"tag":142,"props":1533,"children":1534},{"style":194},[1535],{"type":49,"value":1067},{"type":43,"tag":142,"props":1537,"children":1538},{"style":149},[1539],{"type":49,"value":172},{"type":43,"tag":142,"props":1541,"children":1542},{"style":149},[1543],{"type":49,"value":177},{"type":43,"tag":142,"props":1545,"children":1546},{"style":149},[1547],{"type":49,"value":210},{"type":43,"tag":142,"props":1549,"children":1550},{"style":213},[1551],{"type":49,"value":1552},"ws",{"type":43,"tag":142,"props":1554,"children":1555},{"style":149},[1556],{"type":49,"value":172},{"type":43,"tag":142,"props":1558,"children":1559},{"style":149},[1560],{"type":49,"value":225},{"type":43,"tag":142,"props":1562,"children":1563},{"class":144,"line":228},[1564,1568,1572,1576,1580,1584,1589,1593],{"type":43,"tag":142,"props":1565,"children":1566},{"style":149},[1567],{"type":49,"value":191},{"type":43,"tag":142,"props":1569,"children":1570},{"style":194},[1571],{"type":49,"value":1104},{"type":43,"tag":142,"props":1573,"children":1574},{"style":149},[1575],{"type":49,"value":172},{"type":43,"tag":142,"props":1577,"children":1578},{"style":149},[1579],{"type":49,"value":177},{"type":43,"tag":142,"props":1581,"children":1582},{"style":149},[1583],{"type":49,"value":210},{"type":43,"tag":142,"props":1585,"children":1586},{"style":213},[1587],{"type":49,"value":1588},"wss:\u002F\u002Fmcp.example.com\u002Fws",{"type":43,"tag":142,"props":1590,"children":1591},{"style":149},[1592],{"type":49,"value":172},{"type":43,"tag":142,"props":1594,"children":1595},{"style":149},[1596],{"type":49,"value":225},{"type":43,"tag":142,"props":1598,"children":1599},{"class":144,"line":290},[1600,1604,1608,1612,1616],{"type":43,"tag":142,"props":1601,"children":1602},{"style":149},[1603],{"type":49,"value":191},{"type":43,"tag":142,"props":1605,"children":1606},{"style":194},[1607],{"type":49,"value":1335},{"type":43,"tag":142,"props":1609,"children":1610},{"style":149},[1611],{"type":49,"value":172},{"type":43,"tag":142,"props":1613,"children":1614},{"style":149},[1615],{"type":49,"value":177},{"type":43,"tag":142,"props":1617,"children":1618},{"style":149},[1619],{"type":49,"value":182},{"type":43,"tag":142,"props":1621,"children":1622},{"class":144,"line":315},[1623,1627,1631,1635,1639,1643,1648],{"type":43,"tag":142,"props":1624,"children":1625},{"style":149},[1626],{"type":49,"value":321},{"type":43,"tag":142,"props":1628,"children":1629},{"style":324},[1630],{"type":49,"value":1359},{"type":43,"tag":142,"props":1632,"children":1633},{"style":149},[1634],{"type":49,"value":172},{"type":43,"tag":142,"props":1636,"children":1637},{"style":149},[1638],{"type":49,"value":177},{"type":43,"tag":142,"props":1640,"children":1641},{"style":149},[1642],{"type":49,"value":210},{"type":43,"tag":142,"props":1644,"children":1645},{"style":213},[1646],{"type":49,"value":1647},"Bearer ${TOKEN}",{"type":43,"tag":142,"props":1649,"children":1650},{"style":149},[1651],{"type":49,"value":349},{"type":43,"tag":142,"props":1653,"children":1654},{"class":144,"line":352},[1655],{"type":43,"tag":142,"props":1656,"children":1657},{"style":149},[1658],{"type":49,"value":358},{"type":43,"tag":142,"props":1660,"children":1661},{"class":144,"line":361},[1662],{"type":43,"tag":142,"props":1663,"children":1664},{"style":149},[1665],{"type":49,"value":367},{"type":43,"tag":142,"props":1667,"children":1668},{"class":144,"line":370},[1669],{"type":43,"tag":142,"props":1670,"children":1671},{"style":149},[1672],{"type":49,"value":376},{"type":43,"tag":59,"props":1674,"children":1675},{},[1676],{"type":43,"tag":68,"props":1677,"children":1678},{},[1679],{"type":49,"value":950},{"type":43,"tag":74,"props":1681,"children":1682},{},[1683,1688,1693,1698],{"type":43,"tag":78,"props":1684,"children":1685},{},[1686],{"type":49,"value":1687},"Real-time data streaming",{"type":43,"tag":78,"props":1689,"children":1690},{},[1691],{"type":49,"value":1692},"Persistent connections",{"type":43,"tag":78,"props":1694,"children":1695},{},[1696],{"type":49,"value":1697},"Push notifications from server",{"type":43,"tag":78,"props":1699,"children":1700},{},[1701],{"type":49,"value":1702},"Low-latency requirements",{"type":43,"tag":52,"props":1704,"children":1706},{"id":1705},"environment-variable-expansion",[1707],{"type":49,"value":1708},"Environment Variable Expansion",{"type":43,"tag":59,"props":1710,"children":1711},{},[1712],{"type":49,"value":1713},"All MCP configurations support environment variable substitution:",{"type":43,"tag":59,"props":1715,"children":1716},{},[1717,1722],{"type":43,"tag":68,"props":1718,"children":1719},{},[1720],{"type":49,"value":1721},"${CLAUDE_PLUGIN_ROOT}",{"type":49,"value":1723}," - Plugin directory (always use for portability):",{"type":43,"tag":131,"props":1725,"children":1727},{"className":133,"code":1726,"language":135,"meta":136,"style":136},"{\n  \"command\": \"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fmy-server\"\n}\n",[1728],{"type":43,"tag":122,"props":1729,"children":1730},{"__ignoreMap":136},[1731,1738,1770],{"type":43,"tag":142,"props":1732,"children":1733},{"class":144,"line":145},[1734],{"type":43,"tag":142,"props":1735,"children":1736},{"style":149},[1737],{"type":49,"value":152},{"type":43,"tag":142,"props":1739,"children":1740},{"class":144,"line":155},[1741,1745,1749,1753,1757,1761,1766],{"type":43,"tag":142,"props":1742,"children":1743},{"style":149},[1744],{"type":49,"value":161},{"type":43,"tag":142,"props":1746,"children":1747},{"style":164},[1748],{"type":49,"value":197},{"type":43,"tag":142,"props":1750,"children":1751},{"style":149},[1752],{"type":49,"value":172},{"type":43,"tag":142,"props":1754,"children":1755},{"style":149},[1756],{"type":49,"value":177},{"type":43,"tag":142,"props":1758,"children":1759},{"style":149},[1760],{"type":49,"value":210},{"type":43,"tag":142,"props":1762,"children":1763},{"style":213},[1764],{"type":49,"value":1765},"${CLAUDE_PLUGIN_ROOT}\u002Fservers\u002Fmy-server",{"type":43,"tag":142,"props":1767,"children":1768},{"style":149},[1769],{"type":49,"value":349},{"type":43,"tag":142,"props":1771,"children":1772},{"class":144,"line":185},[1773],{"type":43,"tag":142,"props":1774,"children":1775},{"style":149},[1776],{"type":49,"value":376},{"type":43,"tag":59,"props":1778,"children":1779},{},[1780,1785],{"type":43,"tag":68,"props":1781,"children":1782},{},[1783],{"type":49,"value":1784},"User environment variables",{"type":49,"value":1786}," - From user's shell:",{"type":43,"tag":131,"props":1788,"children":1790},{"className":133,"code":1789,"language":135,"meta":136,"style":136},"{\n  \"env\": {\n    \"API_KEY\": \"${MY_API_KEY}\",\n    \"DATABASE_URL\": \"${DB_URL}\"\n  }\n}\n",[1791],{"type":43,"tag":122,"props":1792,"children":1793},{"__ignoreMap":136},[1794,1801,1824,1861,1893,1900],{"type":43,"tag":142,"props":1795,"children":1796},{"class":144,"line":145},[1797],{"type":43,"tag":142,"props":1798,"children":1799},{"style":149},[1800],{"type":49,"value":152},{"type":43,"tag":142,"props":1802,"children":1803},{"class":144,"line":155},[1804,1808,1812,1816,1820],{"type":43,"tag":142,"props":1805,"children":1806},{"style":149},[1807],{"type":49,"value":161},{"type":43,"tag":142,"props":1809,"children":1810},{"style":164},[1811],{"type":49,"value":300},{"type":43,"tag":142,"props":1813,"children":1814},{"style":149},[1815],{"type":49,"value":172},{"type":43,"tag":142,"props":1817,"children":1818},{"style":149},[1819],{"type":49,"value":177},{"type":43,"tag":142,"props":1821,"children":1822},{"style":149},[1823],{"type":49,"value":182},{"type":43,"tag":142,"props":1825,"children":1826},{"class":144,"line":185},[1827,1831,1836,1840,1844,1848,1853,1857],{"type":43,"tag":142,"props":1828,"children":1829},{"style":149},[1830],{"type":49,"value":191},{"type":43,"tag":142,"props":1832,"children":1833},{"style":194},[1834],{"type":49,"value":1835},"API_KEY",{"type":43,"tag":142,"props":1837,"children":1838},{"style":149},[1839],{"type":49,"value":172},{"type":43,"tag":142,"props":1841,"children":1842},{"style":149},[1843],{"type":49,"value":177},{"type":43,"tag":142,"props":1845,"children":1846},{"style":149},[1847],{"type":49,"value":210},{"type":43,"tag":142,"props":1849,"children":1850},{"style":213},[1851],{"type":49,"value":1852},"${MY_API_KEY}",{"type":43,"tag":142,"props":1854,"children":1855},{"style":149},[1856],{"type":49,"value":172},{"type":43,"tag":142,"props":1858,"children":1859},{"style":149},[1860],{"type":49,"value":225},{"type":43,"tag":142,"props":1862,"children":1863},{"class":144,"line":228},[1864,1868,1873,1877,1881,1885,1889],{"type":43,"tag":142,"props":1865,"children":1866},{"style":149},[1867],{"type":49,"value":191},{"type":43,"tag":142,"props":1869,"children":1870},{"style":194},[1871],{"type":49,"value":1872},"DATABASE_URL",{"type":43,"tag":142,"props":1874,"children":1875},{"style":149},[1876],{"type":49,"value":172},{"type":43,"tag":142,"props":1878,"children":1879},{"style":149},[1880],{"type":49,"value":177},{"type":43,"tag":142,"props":1882,"children":1883},{"style":149},[1884],{"type":49,"value":210},{"type":43,"tag":142,"props":1886,"children":1887},{"style":213},[1888],{"type":49,"value":344},{"type":43,"tag":142,"props":1890,"children":1891},{"style":149},[1892],{"type":49,"value":349},{"type":43,"tag":142,"props":1894,"children":1895},{"class":144,"line":290},[1896],{"type":43,"tag":142,"props":1897,"children":1898},{"style":149},[1899],{"type":49,"value":367},{"type":43,"tag":142,"props":1901,"children":1902},{"class":144,"line":315},[1903],{"type":43,"tag":142,"props":1904,"children":1905},{"style":149},[1906],{"type":49,"value":376},{"type":43,"tag":59,"props":1908,"children":1909},{},[1910,1915],{"type":43,"tag":68,"props":1911,"children":1912},{},[1913],{"type":49,"value":1914},"Best practice:",{"type":49,"value":1916}," Document all required environment variables in plugin README.",{"type":43,"tag":52,"props":1918,"children":1920},{"id":1919},"mcp-tool-naming",[1921],{"type":49,"value":1922},"MCP Tool Naming",{"type":43,"tag":59,"props":1924,"children":1925},{},[1926],{"type":49,"value":1927},"When MCP servers provide tools, they're automatically prefixed:",{"type":43,"tag":59,"props":1929,"children":1930},{},[1931,1936,1938],{"type":43,"tag":68,"props":1932,"children":1933},{},[1934],{"type":49,"value":1935},"Format:",{"type":49,"value":1937}," ",{"type":43,"tag":122,"props":1939,"children":1941},{"className":1940},[],[1942],{"type":49,"value":1943},"mcp__plugin_\u003Cplugin-name>_\u003Cserver-name>__\u003Ctool-name>",{"type":43,"tag":59,"props":1945,"children":1946},{},[1947],{"type":43,"tag":68,"props":1948,"children":1949},{},[1950],{"type":49,"value":1951},"Example:",{"type":43,"tag":74,"props":1953,"children":1954},{},[1955,1965,1975,1986],{"type":43,"tag":78,"props":1956,"children":1957},{},[1958,1960],{"type":49,"value":1959},"Plugin: ",{"type":43,"tag":122,"props":1961,"children":1963},{"className":1962},[],[1964],{"type":49,"value":1043},{"type":43,"tag":78,"props":1966,"children":1967},{},[1968,1970],{"type":49,"value":1969},"Server: ",{"type":43,"tag":122,"props":1971,"children":1973},{"className":1972},[],[1974],{"type":49,"value":1043},{"type":43,"tag":78,"props":1976,"children":1977},{},[1978,1980],{"type":49,"value":1979},"Tool: ",{"type":43,"tag":122,"props":1981,"children":1983},{"className":1982},[],[1984],{"type":49,"value":1985},"create_task",{"type":43,"tag":78,"props":1987,"children":1988},{},[1989,1994,1995],{"type":43,"tag":68,"props":1990,"children":1991},{},[1992],{"type":49,"value":1993},"Full name:",{"type":49,"value":1937},{"type":43,"tag":122,"props":1996,"children":1998},{"className":1997},[],[1999],{"type":49,"value":2000},"mcp__plugin_asana_asana__asana_create_task",{"type":43,"tag":110,"props":2002,"children":2004},{"id":2003},"using-mcp-tools-in-commands",[2005],{"type":49,"value":2006},"Using MCP Tools in Commands",{"type":43,"tag":59,"props":2008,"children":2009},{},[2010],{"type":49,"value":2011},"Pre-allow specific MCP tools in command frontmatter:",{"type":43,"tag":131,"props":2013,"children":2017},{"className":2014,"code":2015,"language":2016,"meta":136,"style":136},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","---\nallowed-tools: [\n  \"mcp__plugin_asana_asana__asana_create_task\",\n  \"mcp__plugin_asana_asana__asana_search_tasks\"\n]\n---\n","markdown",[2018],{"type":43,"tag":122,"props":2019,"children":2020},{"__ignoreMap":136},[2021,2029,2047,2066,2082,2089],{"type":43,"tag":142,"props":2022,"children":2023},{"class":144,"line":145},[2024],{"type":43,"tag":142,"props":2025,"children":2026},{"style":149},[2027],{"type":49,"value":2028},"---\n",{"type":43,"tag":142,"props":2030,"children":2031},{"class":144,"line":155},[2032,2038,2042],{"type":43,"tag":142,"props":2033,"children":2035},{"style":2034},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[2036],{"type":49,"value":2037},"allowed-tools",{"type":43,"tag":142,"props":2039,"children":2040},{"style":149},[2041],{"type":49,"value":177},{"type":43,"tag":142,"props":2043,"children":2044},{"style":149},[2045],{"type":49,"value":2046}," [\n",{"type":43,"tag":142,"props":2048,"children":2049},{"class":144,"line":185},[2050,2054,2058,2062],{"type":43,"tag":142,"props":2051,"children":2052},{"style":149},[2053],{"type":49,"value":161},{"type":43,"tag":142,"props":2055,"children":2056},{"style":213},[2057],{"type":49,"value":2000},{"type":43,"tag":142,"props":2059,"children":2060},{"style":149},[2061],{"type":49,"value":172},{"type":43,"tag":142,"props":2063,"children":2064},{"style":149},[2065],{"type":49,"value":225},{"type":43,"tag":142,"props":2067,"children":2068},{"class":144,"line":228},[2069,2073,2078],{"type":43,"tag":142,"props":2070,"children":2071},{"style":149},[2072],{"type":49,"value":161},{"type":43,"tag":142,"props":2074,"children":2075},{"style":213},[2076],{"type":49,"value":2077},"mcp__plugin_asana_asana__asana_search_tasks",{"type":43,"tag":142,"props":2079,"children":2080},{"style":149},[2081],{"type":49,"value":349},{"type":43,"tag":142,"props":2083,"children":2084},{"class":144,"line":290},[2085],{"type":43,"tag":142,"props":2086,"children":2087},{"style":149},[2088],{"type":49,"value":650},{"type":43,"tag":142,"props":2090,"children":2091},{"class":144,"line":315},[2092],{"type":43,"tag":142,"props":2093,"children":2094},{"style":149},[2095],{"type":49,"value":2028},{"type":43,"tag":59,"props":2097,"children":2098},{},[2099],{"type":43,"tag":68,"props":2100,"children":2101},{},[2102],{"type":49,"value":2103},"Wildcard (use sparingly):",{"type":43,"tag":131,"props":2105,"children":2107},{"className":2014,"code":2106,"language":2016,"meta":136,"style":136},"---\nallowed-tools: [\"mcp__plugin_asana_asana__*\"]\n---\n",[2108],{"type":43,"tag":122,"props":2109,"children":2110},{"__ignoreMap":136},[2111,2118,2150],{"type":43,"tag":142,"props":2112,"children":2113},{"class":144,"line":145},[2114],{"type":43,"tag":142,"props":2115,"children":2116},{"style":149},[2117],{"type":49,"value":2028},{"type":43,"tag":142,"props":2119,"children":2120},{"class":144,"line":155},[2121,2125,2129,2133,2137,2142,2146],{"type":43,"tag":142,"props":2122,"children":2123},{"style":2034},[2124],{"type":49,"value":2037},{"type":43,"tag":142,"props":2126,"children":2127},{"style":149},[2128],{"type":49,"value":177},{"type":43,"tag":142,"props":2130,"children":2131},{"style":149},[2132],{"type":49,"value":251},{"type":43,"tag":142,"props":2134,"children":2135},{"style":149},[2136],{"type":49,"value":172},{"type":43,"tag":142,"props":2138,"children":2139},{"style":213},[2140],{"type":49,"value":2141},"mcp__plugin_asana_asana__*",{"type":43,"tag":142,"props":2143,"children":2144},{"style":149},[2145],{"type":49,"value":172},{"type":43,"tag":142,"props":2147,"children":2148},{"style":149},[2149],{"type":49,"value":650},{"type":43,"tag":142,"props":2151,"children":2152},{"class":144,"line":185},[2153],{"type":43,"tag":142,"props":2154,"children":2155},{"style":149},[2156],{"type":49,"value":2028},{"type":43,"tag":59,"props":2158,"children":2159},{},[2160,2164],{"type":43,"tag":68,"props":2161,"children":2162},{},[2163],{"type":49,"value":1914},{"type":49,"value":2165}," Pre-allow specific tools, not wildcards, for security.",{"type":43,"tag":52,"props":2167,"children":2169},{"id":2168},"lifecycle-management",[2170],{"type":49,"value":2171},"Lifecycle Management",{"type":43,"tag":59,"props":2173,"children":2174},{},[2175],{"type":43,"tag":68,"props":2176,"children":2177},{},[2178],{"type":49,"value":2179},"Automatic startup:",{"type":43,"tag":74,"props":2181,"children":2182},{},[2183,2188,2193],{"type":43,"tag":78,"props":2184,"children":2185},{},[2186],{"type":49,"value":2187},"MCP servers start when plugin enables",{"type":43,"tag":78,"props":2189,"children":2190},{},[2191],{"type":49,"value":2192},"Connection established before first tool use",{"type":43,"tag":78,"props":2194,"children":2195},{},[2196],{"type":49,"value":2197},"Restart required for configuration changes",{"type":43,"tag":59,"props":2199,"children":2200},{},[2201],{"type":43,"tag":68,"props":2202,"children":2203},{},[2204],{"type":49,"value":2205},"Lifecycle:",{"type":43,"tag":2207,"props":2208,"children":2209},"ol",{},[2210,2215,2220,2225,2230],{"type":43,"tag":78,"props":2211,"children":2212},{},[2213],{"type":49,"value":2214},"Plugin loads",{"type":43,"tag":78,"props":2216,"children":2217},{},[2218],{"type":49,"value":2219},"MCP configuration parsed",{"type":43,"tag":78,"props":2221,"children":2222},{},[2223],{"type":49,"value":2224},"Server process started (stdio) or connection established (SSE\u002FHTTP\u002FWS)",{"type":43,"tag":78,"props":2226,"children":2227},{},[2228],{"type":49,"value":2229},"Tools discovered and registered",{"type":43,"tag":78,"props":2231,"children":2232},{},[2233,2235],{"type":49,"value":2234},"Tools available as ",{"type":43,"tag":122,"props":2236,"children":2238},{"className":2237},[],[2239],{"type":49,"value":2240},"mcp__plugin_...__...",{"type":43,"tag":59,"props":2242,"children":2243},{},[2244,2249,2251,2257],{"type":43,"tag":68,"props":2245,"children":2246},{},[2247],{"type":49,"value":2248},"Viewing servers:",{"type":49,"value":2250},"\nUse ",{"type":43,"tag":122,"props":2252,"children":2254},{"className":2253},[],[2255],{"type":49,"value":2256},"\u002Fmcp",{"type":49,"value":2258}," command to see all servers including plugin-provided ones.",{"type":43,"tag":52,"props":2260,"children":2262},{"id":2261},"authentication-patterns",[2263],{"type":49,"value":2264},"Authentication Patterns",{"type":43,"tag":110,"props":2266,"children":2268},{"id":2267},"oauth-ssehttp",[2269],{"type":49,"value":2270},"OAuth (SSE\u002FHTTP)",{"type":43,"tag":59,"props":2272,"children":2273},{},[2274],{"type":49,"value":2275},"OAuth handled automatically by Claude Code:",{"type":43,"tag":131,"props":2277,"children":2279},{"className":133,"code":2278,"language":135,"meta":136,"style":136},"{\n  \"type\": \"sse\",\n  \"url\": \"https:\u002F\u002Fmcp.example.com\u002Fsse\"\n}\n",[2280],{"type":43,"tag":122,"props":2281,"children":2282},{"__ignoreMap":136},[2283,2290,2325,2357],{"type":43,"tag":142,"props":2284,"children":2285},{"class":144,"line":145},[2286],{"type":43,"tag":142,"props":2287,"children":2288},{"style":149},[2289],{"type":49,"value":152},{"type":43,"tag":142,"props":2291,"children":2292},{"class":144,"line":155},[2293,2297,2301,2305,2309,2313,2317,2321],{"type":43,"tag":142,"props":2294,"children":2295},{"style":149},[2296],{"type":49,"value":161},{"type":43,"tag":142,"props":2298,"children":2299},{"style":164},[2300],{"type":49,"value":1067},{"type":43,"tag":142,"props":2302,"children":2303},{"style":149},[2304],{"type":49,"value":172},{"type":43,"tag":142,"props":2306,"children":2307},{"style":149},[2308],{"type":49,"value":177},{"type":43,"tag":142,"props":2310,"children":2311},{"style":149},[2312],{"type":49,"value":210},{"type":43,"tag":142,"props":2314,"children":2315},{"style":213},[2316],{"type":49,"value":1084},{"type":43,"tag":142,"props":2318,"children":2319},{"style":149},[2320],{"type":49,"value":172},{"type":43,"tag":142,"props":2322,"children":2323},{"style":149},[2324],{"type":49,"value":225},{"type":43,"tag":142,"props":2326,"children":2327},{"class":144,"line":185},[2328,2332,2336,2340,2344,2348,2353],{"type":43,"tag":142,"props":2329,"children":2330},{"style":149},[2331],{"type":49,"value":161},{"type":43,"tag":142,"props":2333,"children":2334},{"style":164},[2335],{"type":49,"value":1104},{"type":43,"tag":142,"props":2337,"children":2338},{"style":149},[2339],{"type":49,"value":172},{"type":43,"tag":142,"props":2341,"children":2342},{"style":149},[2343],{"type":49,"value":177},{"type":43,"tag":142,"props":2345,"children":2346},{"style":149},[2347],{"type":49,"value":210},{"type":43,"tag":142,"props":2349,"children":2350},{"style":213},[2351],{"type":49,"value":2352},"https:\u002F\u002Fmcp.example.com\u002Fsse",{"type":43,"tag":142,"props":2354,"children":2355},{"style":149},[2356],{"type":49,"value":349},{"type":43,"tag":142,"props":2358,"children":2359},{"class":144,"line":228},[2360],{"type":43,"tag":142,"props":2361,"children":2362},{"style":149},[2363],{"type":49,"value":376},{"type":43,"tag":59,"props":2365,"children":2366},{},[2367],{"type":49,"value":2368},"User authenticates in browser on first use. No additional configuration needed.",{"type":43,"tag":110,"props":2370,"children":2372},{"id":2371},"token-based-headers",[2373],{"type":49,"value":2374},"Token-Based (Headers)",{"type":43,"tag":59,"props":2376,"children":2377},{},[2378],{"type":49,"value":2379},"Static or environment variable tokens:",{"type":43,"tag":131,"props":2381,"children":2383},{"className":133,"code":2382,"language":135,"meta":136,"style":136},"{\n  \"type\": \"http\",\n  \"url\": \"https:\u002F\u002Fapi.example.com\",\n  \"headers\": {\n    \"Authorization\": \"Bearer ${API_TOKEN}\"\n  }\n}\n",[2384],{"type":43,"tag":122,"props":2385,"children":2386},{"__ignoreMap":136},[2387,2394,2429,2465,2488,2519,2526],{"type":43,"tag":142,"props":2388,"children":2389},{"class":144,"line":145},[2390],{"type":43,"tag":142,"props":2391,"children":2392},{"style":149},[2393],{"type":49,"value":152},{"type":43,"tag":142,"props":2395,"children":2396},{"class":144,"line":155},[2397,2401,2405,2409,2413,2417,2421,2425],{"type":43,"tag":142,"props":2398,"children":2399},{"style":149},[2400],{"type":49,"value":161},{"type":43,"tag":142,"props":2402,"children":2403},{"style":164},[2404],{"type":49,"value":1067},{"type":43,"tag":142,"props":2406,"children":2407},{"style":149},[2408],{"type":49,"value":172},{"type":43,"tag":142,"props":2410,"children":2411},{"style":149},[2412],{"type":49,"value":177},{"type":43,"tag":142,"props":2414,"children":2415},{"style":149},[2416],{"type":49,"value":210},{"type":43,"tag":142,"props":2418,"children":2419},{"style":213},[2420],{"type":49,"value":1279},{"type":43,"tag":142,"props":2422,"children":2423},{"style":149},[2424],{"type":49,"value":172},{"type":43,"tag":142,"props":2426,"children":2427},{"style":149},[2428],{"type":49,"value":225},{"type":43,"tag":142,"props":2430,"children":2431},{"class":144,"line":185},[2432,2436,2440,2444,2448,2452,2457,2461],{"type":43,"tag":142,"props":2433,"children":2434},{"style":149},[2435],{"type":49,"value":161},{"type":43,"tag":142,"props":2437,"children":2438},{"style":164},[2439],{"type":49,"value":1104},{"type":43,"tag":142,"props":2441,"children":2442},{"style":149},[2443],{"type":49,"value":172},{"type":43,"tag":142,"props":2445,"children":2446},{"style":149},[2447],{"type":49,"value":177},{"type":43,"tag":142,"props":2449,"children":2450},{"style":149},[2451],{"type":49,"value":210},{"type":43,"tag":142,"props":2453,"children":2454},{"style":213},[2455],{"type":49,"value":2456},"https:\u002F\u002Fapi.example.com",{"type":43,"tag":142,"props":2458,"children":2459},{"style":149},[2460],{"type":49,"value":172},{"type":43,"tag":142,"props":2462,"children":2463},{"style":149},[2464],{"type":49,"value":225},{"type":43,"tag":142,"props":2466,"children":2467},{"class":144,"line":228},[2468,2472,2476,2480,2484],{"type":43,"tag":142,"props":2469,"children":2470},{"style":149},[2471],{"type":49,"value":161},{"type":43,"tag":142,"props":2473,"children":2474},{"style":164},[2475],{"type":49,"value":1335},{"type":43,"tag":142,"props":2477,"children":2478},{"style":149},[2479],{"type":49,"value":172},{"type":43,"tag":142,"props":2481,"children":2482},{"style":149},[2483],{"type":49,"value":177},{"type":43,"tag":142,"props":2485,"children":2486},{"style":149},[2487],{"type":49,"value":182},{"type":43,"tag":142,"props":2489,"children":2490},{"class":144,"line":290},[2491,2495,2499,2503,2507,2511,2515],{"type":43,"tag":142,"props":2492,"children":2493},{"style":149},[2494],{"type":49,"value":191},{"type":43,"tag":142,"props":2496,"children":2497},{"style":194},[2498],{"type":49,"value":1359},{"type":43,"tag":142,"props":2500,"children":2501},{"style":149},[2502],{"type":49,"value":172},{"type":43,"tag":142,"props":2504,"children":2505},{"style":149},[2506],{"type":49,"value":177},{"type":43,"tag":142,"props":2508,"children":2509},{"style":149},[2510],{"type":49,"value":210},{"type":43,"tag":142,"props":2512,"children":2513},{"style":213},[2514],{"type":49,"value":1376},{"type":43,"tag":142,"props":2516,"children":2517},{"style":149},[2518],{"type":49,"value":349},{"type":43,"tag":142,"props":2520,"children":2521},{"class":144,"line":315},[2522],{"type":43,"tag":142,"props":2523,"children":2524},{"style":149},[2525],{"type":49,"value":367},{"type":43,"tag":142,"props":2527,"children":2528},{"class":144,"line":352},[2529],{"type":43,"tag":142,"props":2530,"children":2531},{"style":149},[2532],{"type":49,"value":376},{"type":43,"tag":59,"props":2534,"children":2535},{},[2536],{"type":49,"value":2537},"Document required environment variables in README.",{"type":43,"tag":110,"props":2539,"children":2541},{"id":2540},"environment-variables-stdio",[2542],{"type":49,"value":2543},"Environment Variables (stdio)",{"type":43,"tag":59,"props":2545,"children":2546},{},[2547],{"type":49,"value":2548},"Pass configuration to MCP server:",{"type":43,"tag":131,"props":2550,"children":2552},{"className":133,"code":2551,"language":135,"meta":136,"style":136},"{\n  \"command\": \"python\",\n  \"args\": [\"-m\", \"my_mcp_server\"],\n  \"env\": {\n    \"DATABASE_URL\": \"${DB_URL}\",\n    \"API_KEY\": \"${API_KEY}\",\n    \"LOG_LEVEL\": \"info\"\n  }\n}\n",[2553],{"type":43,"tag":122,"props":2554,"children":2555},{"__ignoreMap":136},[2556,2563,2599,2656,2679,2714,2750,2782,2789],{"type":43,"tag":142,"props":2557,"children":2558},{"class":144,"line":145},[2559],{"type":43,"tag":142,"props":2560,"children":2561},{"style":149},[2562],{"type":49,"value":152},{"type":43,"tag":142,"props":2564,"children":2565},{"class":144,"line":155},[2566,2570,2574,2578,2582,2586,2591,2595],{"type":43,"tag":142,"props":2567,"children":2568},{"style":149},[2569],{"type":49,"value":161},{"type":43,"tag":142,"props":2571,"children":2572},{"style":164},[2573],{"type":49,"value":197},{"type":43,"tag":142,"props":2575,"children":2576},{"style":149},[2577],{"type":49,"value":172},{"type":43,"tag":142,"props":2579,"children":2580},{"style":149},[2581],{"type":49,"value":177},{"type":43,"tag":142,"props":2583,"children":2584},{"style":149},[2585],{"type":49,"value":210},{"type":43,"tag":142,"props":2587,"children":2588},{"style":213},[2589],{"type":49,"value":2590},"python",{"type":43,"tag":142,"props":2592,"children":2593},{"style":149},[2594],{"type":49,"value":172},{"type":43,"tag":142,"props":2596,"children":2597},{"style":149},[2598],{"type":49,"value":225},{"type":43,"tag":142,"props":2600,"children":2601},{"class":144,"line":185},[2602,2606,2610,2614,2618,2622,2626,2631,2635,2639,2643,2648,2652],{"type":43,"tag":142,"props":2603,"children":2604},{"style":149},[2605],{"type":49,"value":161},{"type":43,"tag":142,"props":2607,"children":2608},{"style":164},[2609],{"type":49,"value":238},{"type":43,"tag":142,"props":2611,"children":2612},{"style":149},[2613],{"type":49,"value":172},{"type":43,"tag":142,"props":2615,"children":2616},{"style":149},[2617],{"type":49,"value":177},{"type":43,"tag":142,"props":2619,"children":2620},{"style":149},[2621],{"type":49,"value":251},{"type":43,"tag":142,"props":2623,"children":2624},{"style":149},[2625],{"type":49,"value":172},{"type":43,"tag":142,"props":2627,"children":2628},{"style":213},[2629],{"type":49,"value":2630},"-m",{"type":43,"tag":142,"props":2632,"children":2633},{"style":149},[2634],{"type":49,"value":172},{"type":43,"tag":142,"props":2636,"children":2637},{"style":149},[2638],{"type":49,"value":269},{"type":43,"tag":142,"props":2640,"children":2641},{"style":149},[2642],{"type":49,"value":210},{"type":43,"tag":142,"props":2644,"children":2645},{"style":213},[2646],{"type":49,"value":2647},"my_mcp_server",{"type":43,"tag":142,"props":2649,"children":2650},{"style":149},[2651],{"type":49,"value":172},{"type":43,"tag":142,"props":2653,"children":2654},{"style":149},[2655],{"type":49,"value":287},{"type":43,"tag":142,"props":2657,"children":2658},{"class":144,"line":228},[2659,2663,2667,2671,2675],{"type":43,"tag":142,"props":2660,"children":2661},{"style":149},[2662],{"type":49,"value":161},{"type":43,"tag":142,"props":2664,"children":2665},{"style":164},[2666],{"type":49,"value":300},{"type":43,"tag":142,"props":2668,"children":2669},{"style":149},[2670],{"type":49,"value":172},{"type":43,"tag":142,"props":2672,"children":2673},{"style":149},[2674],{"type":49,"value":177},{"type":43,"tag":142,"props":2676,"children":2677},{"style":149},[2678],{"type":49,"value":182},{"type":43,"tag":142,"props":2680,"children":2681},{"class":144,"line":290},[2682,2686,2690,2694,2698,2702,2706,2710],{"type":43,"tag":142,"props":2683,"children":2684},{"style":149},[2685],{"type":49,"value":191},{"type":43,"tag":142,"props":2687,"children":2688},{"style":194},[2689],{"type":49,"value":1872},{"type":43,"tag":142,"props":2691,"children":2692},{"style":149},[2693],{"type":49,"value":172},{"type":43,"tag":142,"props":2695,"children":2696},{"style":149},[2697],{"type":49,"value":177},{"type":43,"tag":142,"props":2699,"children":2700},{"style":149},[2701],{"type":49,"value":210},{"type":43,"tag":142,"props":2703,"children":2704},{"style":213},[2705],{"type":49,"value":344},{"type":43,"tag":142,"props":2707,"children":2708},{"style":149},[2709],{"type":49,"value":172},{"type":43,"tag":142,"props":2711,"children":2712},{"style":149},[2713],{"type":49,"value":225},{"type":43,"tag":142,"props":2715,"children":2716},{"class":144,"line":315},[2717,2721,2725,2729,2733,2737,2742,2746],{"type":43,"tag":142,"props":2718,"children":2719},{"style":149},[2720],{"type":49,"value":191},{"type":43,"tag":142,"props":2722,"children":2723},{"style":194},[2724],{"type":49,"value":1835},{"type":43,"tag":142,"props":2726,"children":2727},{"style":149},[2728],{"type":49,"value":172},{"type":43,"tag":142,"props":2730,"children":2731},{"style":149},[2732],{"type":49,"value":177},{"type":43,"tag":142,"props":2734,"children":2735},{"style":149},[2736],{"type":49,"value":210},{"type":43,"tag":142,"props":2738,"children":2739},{"style":213},[2740],{"type":49,"value":2741},"${API_KEY}",{"type":43,"tag":142,"props":2743,"children":2744},{"style":149},[2745],{"type":49,"value":172},{"type":43,"tag":142,"props":2747,"children":2748},{"style":149},[2749],{"type":49,"value":225},{"type":43,"tag":142,"props":2751,"children":2752},{"class":144,"line":352},[2753,2757,2761,2765,2769,2773,2778],{"type":43,"tag":142,"props":2754,"children":2755},{"style":149},[2756],{"type":49,"value":191},{"type":43,"tag":142,"props":2758,"children":2759},{"style":194},[2760],{"type":49,"value":900},{"type":43,"tag":142,"props":2762,"children":2763},{"style":149},[2764],{"type":49,"value":172},{"type":43,"tag":142,"props":2766,"children":2767},{"style":149},[2768],{"type":49,"value":177},{"type":43,"tag":142,"props":2770,"children":2771},{"style":149},[2772],{"type":49,"value":210},{"type":43,"tag":142,"props":2774,"children":2775},{"style":213},[2776],{"type":49,"value":2777},"info",{"type":43,"tag":142,"props":2779,"children":2780},{"style":149},[2781],{"type":49,"value":349},{"type":43,"tag":142,"props":2783,"children":2784},{"class":144,"line":361},[2785],{"type":43,"tag":142,"props":2786,"children":2787},{"style":149},[2788],{"type":49,"value":367},{"type":43,"tag":142,"props":2790,"children":2791},{"class":144,"line":370},[2792],{"type":43,"tag":142,"props":2793,"children":2794},{"style":149},[2795],{"type":49,"value":376},{"type":43,"tag":52,"props":2797,"children":2799},{"id":2798},"integration-patterns",[2800],{"type":49,"value":2801},"Integration Patterns",{"type":43,"tag":110,"props":2803,"children":2805},{"id":2804},"pattern-1-simple-tool-wrapper",[2806],{"type":49,"value":2807},"Pattern 1: Simple Tool Wrapper",{"type":43,"tag":59,"props":2809,"children":2810},{},[2811],{"type":49,"value":2812},"Commands use MCP tools with user interaction:",{"type":43,"tag":131,"props":2814,"children":2816},{"className":2014,"code":2815,"language":2016,"meta":136,"style":136},"# Command: create-item.md\n---\nallowed-tools: [\"mcp__plugin_name_server__create_item\"]\n---\n\nSteps:\n1. Gather item details from user\n2. Use mcp__plugin_name_server__create_item\n3. Confirm creation\n",[2817],{"type":43,"tag":122,"props":2818,"children":2819},{"__ignoreMap":136},[2820,2833,2841,2863,2870,2879,2887,2900,2913],{"type":43,"tag":142,"props":2821,"children":2822},{"class":144,"line":145},[2823,2828],{"type":43,"tag":142,"props":2824,"children":2825},{"style":149},[2826],{"type":49,"value":2827},"# ",{"type":43,"tag":142,"props":2829,"children":2830},{"style":194},[2831],{"type":49,"value":2832},"Command: create-item.md\n",{"type":43,"tag":142,"props":2834,"children":2835},{"class":144,"line":155},[2836],{"type":43,"tag":142,"props":2837,"children":2839},{"style":2838},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[2840],{"type":49,"value":2028},{"type":43,"tag":142,"props":2842,"children":2843},{"class":144,"line":185},[2844,2849,2854,2859],{"type":43,"tag":142,"props":2845,"children":2846},{"style":2838},[2847],{"type":49,"value":2848},"allowed-tools: ",{"type":43,"tag":142,"props":2850,"children":2851},{"style":149},[2852],{"type":49,"value":2853},"[",{"type":43,"tag":142,"props":2855,"children":2856},{"style":213},[2857],{"type":49,"value":2858},"\"mcp__plugin_name_server__create_item\"",{"type":43,"tag":142,"props":2860,"children":2861},{"style":149},[2862],{"type":49,"value":650},{"type":43,"tag":142,"props":2864,"children":2865},{"class":144,"line":228},[2866],{"type":43,"tag":142,"props":2867,"children":2868},{"style":149},[2869],{"type":49,"value":2028},{"type":43,"tag":142,"props":2871,"children":2872},{"class":144,"line":290},[2873],{"type":43,"tag":142,"props":2874,"children":2876},{"emptyLinePlaceholder":2875},true,[2877],{"type":49,"value":2878},"\n",{"type":43,"tag":142,"props":2880,"children":2881},{"class":144,"line":315},[2882],{"type":43,"tag":142,"props":2883,"children":2884},{"style":2838},[2885],{"type":49,"value":2886},"Steps:\n",{"type":43,"tag":142,"props":2888,"children":2889},{"class":144,"line":352},[2890,2895],{"type":43,"tag":142,"props":2891,"children":2892},{"style":149},[2893],{"type":49,"value":2894},"1.",{"type":43,"tag":142,"props":2896,"children":2897},{"style":2838},[2898],{"type":49,"value":2899}," Gather item details from user\n",{"type":43,"tag":142,"props":2901,"children":2902},{"class":144,"line":361},[2903,2908],{"type":43,"tag":142,"props":2904,"children":2905},{"style":149},[2906],{"type":49,"value":2907},"2.",{"type":43,"tag":142,"props":2909,"children":2910},{"style":2838},[2911],{"type":49,"value":2912}," Use mcp__plugin_name_server__create_item\n",{"type":43,"tag":142,"props":2914,"children":2915},{"class":144,"line":370},[2916,2921],{"type":43,"tag":142,"props":2917,"children":2918},{"style":149},[2919],{"type":49,"value":2920},"3.",{"type":43,"tag":142,"props":2922,"children":2923},{"style":2838},[2924],{"type":49,"value":2925}," Confirm creation\n",{"type":43,"tag":59,"props":2927,"children":2928},{},[2929,2934],{"type":43,"tag":68,"props":2930,"children":2931},{},[2932],{"type":49,"value":2933},"Use for:",{"type":49,"value":2935}," Adding validation or preprocessing before MCP calls.",{"type":43,"tag":110,"props":2937,"children":2939},{"id":2938},"pattern-2-autonomous-agent",[2940],{"type":49,"value":2941},"Pattern 2: Autonomous Agent",{"type":43,"tag":59,"props":2943,"children":2944},{},[2945],{"type":49,"value":2946},"Agents use MCP tools autonomously:",{"type":43,"tag":131,"props":2948,"children":2950},{"className":2014,"code":2949,"language":2016,"meta":136,"style":136},"# Agent: data-analyzer.md\n\nAnalysis Process:\n1. Query data via mcp__plugin_db_server__query\n2. Process and analyze results\n3. Generate insights report\n",[2951],{"type":43,"tag":122,"props":2952,"children":2953},{"__ignoreMap":136},[2954,2966,2973,2981,2993,3005],{"type":43,"tag":142,"props":2955,"children":2956},{"class":144,"line":145},[2957,2961],{"type":43,"tag":142,"props":2958,"children":2959},{"style":149},[2960],{"type":49,"value":2827},{"type":43,"tag":142,"props":2962,"children":2963},{"style":194},[2964],{"type":49,"value":2965},"Agent: data-analyzer.md\n",{"type":43,"tag":142,"props":2967,"children":2968},{"class":144,"line":155},[2969],{"type":43,"tag":142,"props":2970,"children":2971},{"emptyLinePlaceholder":2875},[2972],{"type":49,"value":2878},{"type":43,"tag":142,"props":2974,"children":2975},{"class":144,"line":185},[2976],{"type":43,"tag":142,"props":2977,"children":2978},{"style":2838},[2979],{"type":49,"value":2980},"Analysis Process:\n",{"type":43,"tag":142,"props":2982,"children":2983},{"class":144,"line":228},[2984,2988],{"type":43,"tag":142,"props":2985,"children":2986},{"style":149},[2987],{"type":49,"value":2894},{"type":43,"tag":142,"props":2989,"children":2990},{"style":2838},[2991],{"type":49,"value":2992}," Query data via mcp__plugin_db_server__query\n",{"type":43,"tag":142,"props":2994,"children":2995},{"class":144,"line":290},[2996,3000],{"type":43,"tag":142,"props":2997,"children":2998},{"style":149},[2999],{"type":49,"value":2907},{"type":43,"tag":142,"props":3001,"children":3002},{"style":2838},[3003],{"type":49,"value":3004}," Process and analyze results\n",{"type":43,"tag":142,"props":3006,"children":3007},{"class":144,"line":315},[3008,3012],{"type":43,"tag":142,"props":3009,"children":3010},{"style":149},[3011],{"type":49,"value":2920},{"type":43,"tag":142,"props":3013,"children":3014},{"style":2838},[3015],{"type":49,"value":3016}," Generate insights report\n",{"type":43,"tag":59,"props":3018,"children":3019},{},[3020,3024],{"type":43,"tag":68,"props":3021,"children":3022},{},[3023],{"type":49,"value":2933},{"type":49,"value":3025}," Multi-step MCP workflows without user interaction.",{"type":43,"tag":110,"props":3027,"children":3029},{"id":3028},"pattern-3-multi-server-plugin",[3030],{"type":49,"value":3031},"Pattern 3: Multi-Server Plugin",{"type":43,"tag":59,"props":3033,"children":3034},{},[3035],{"type":49,"value":3036},"Integrate multiple MCP servers:",{"type":43,"tag":131,"props":3038,"children":3040},{"className":133,"code":3039,"language":135,"meta":136,"style":136},"{\n  \"github\": {\n    \"type\": \"sse\",\n    \"url\": \"https:\u002F\u002Fmcp.github.com\u002Fsse\"\n  },\n  \"jira\": {\n    \"type\": \"sse\",\n    \"url\": \"https:\u002F\u002Fmcp.jira.com\u002Fsse\"\n  }\n}\n",[3041],{"type":43,"tag":122,"props":3042,"children":3043},{"__ignoreMap":136},[3044,3051,3075,3110,3142,3150,3174,3209,3241,3248],{"type":43,"tag":142,"props":3045,"children":3046},{"class":144,"line":145},[3047],{"type":43,"tag":142,"props":3048,"children":3049},{"style":149},[3050],{"type":49,"value":152},{"type":43,"tag":142,"props":3052,"children":3053},{"class":144,"line":155},[3054,3058,3063,3067,3071],{"type":43,"tag":142,"props":3055,"children":3056},{"style":149},[3057],{"type":49,"value":161},{"type":43,"tag":142,"props":3059,"children":3060},{"style":164},[3061],{"type":49,"value":3062},"github",{"type":43,"tag":142,"props":3064,"children":3065},{"style":149},[3066],{"type":49,"value":172},{"type":43,"tag":142,"props":3068,"children":3069},{"style":149},[3070],{"type":49,"value":177},{"type":43,"tag":142,"props":3072,"children":3073},{"style":149},[3074],{"type":49,"value":182},{"type":43,"tag":142,"props":3076,"children":3077},{"class":144,"line":185},[3078,3082,3086,3090,3094,3098,3102,3106],{"type":43,"tag":142,"props":3079,"children":3080},{"style":149},[3081],{"type":49,"value":191},{"type":43,"tag":142,"props":3083,"children":3084},{"style":194},[3085],{"type":49,"value":1067},{"type":43,"tag":142,"props":3087,"children":3088},{"style":149},[3089],{"type":49,"value":172},{"type":43,"tag":142,"props":3091,"children":3092},{"style":149},[3093],{"type":49,"value":177},{"type":43,"tag":142,"props":3095,"children":3096},{"style":149},[3097],{"type":49,"value":210},{"type":43,"tag":142,"props":3099,"children":3100},{"style":213},[3101],{"type":49,"value":1084},{"type":43,"tag":142,"props":3103,"children":3104},{"style":149},[3105],{"type":49,"value":172},{"type":43,"tag":142,"props":3107,"children":3108},{"style":149},[3109],{"type":49,"value":225},{"type":43,"tag":142,"props":3111,"children":3112},{"class":144,"line":228},[3113,3117,3121,3125,3129,3133,3138],{"type":43,"tag":142,"props":3114,"children":3115},{"style":149},[3116],{"type":49,"value":191},{"type":43,"tag":142,"props":3118,"children":3119},{"style":194},[3120],{"type":49,"value":1104},{"type":43,"tag":142,"props":3122,"children":3123},{"style":149},[3124],{"type":49,"value":172},{"type":43,"tag":142,"props":3126,"children":3127},{"style":149},[3128],{"type":49,"value":177},{"type":43,"tag":142,"props":3130,"children":3131},{"style":149},[3132],{"type":49,"value":210},{"type":43,"tag":142,"props":3134,"children":3135},{"style":213},[3136],{"type":49,"value":3137},"https:\u002F\u002Fmcp.github.com\u002Fsse",{"type":43,"tag":142,"props":3139,"children":3140},{"style":149},[3141],{"type":49,"value":349},{"type":43,"tag":142,"props":3143,"children":3144},{"class":144,"line":290},[3145],{"type":43,"tag":142,"props":3146,"children":3147},{"style":149},[3148],{"type":49,"value":3149},"  },\n",{"type":43,"tag":142,"props":3151,"children":3152},{"class":144,"line":315},[3153,3157,3162,3166,3170],{"type":43,"tag":142,"props":3154,"children":3155},{"style":149},[3156],{"type":49,"value":161},{"type":43,"tag":142,"props":3158,"children":3159},{"style":164},[3160],{"type":49,"value":3161},"jira",{"type":43,"tag":142,"props":3163,"children":3164},{"style":149},[3165],{"type":49,"value":172},{"type":43,"tag":142,"props":3167,"children":3168},{"style":149},[3169],{"type":49,"value":177},{"type":43,"tag":142,"props":3171,"children":3172},{"style":149},[3173],{"type":49,"value":182},{"type":43,"tag":142,"props":3175,"children":3176},{"class":144,"line":352},[3177,3181,3185,3189,3193,3197,3201,3205],{"type":43,"tag":142,"props":3178,"children":3179},{"style":149},[3180],{"type":49,"value":191},{"type":43,"tag":142,"props":3182,"children":3183},{"style":194},[3184],{"type":49,"value":1067},{"type":43,"tag":142,"props":3186,"children":3187},{"style":149},[3188],{"type":49,"value":172},{"type":43,"tag":142,"props":3190,"children":3191},{"style":149},[3192],{"type":49,"value":177},{"type":43,"tag":142,"props":3194,"children":3195},{"style":149},[3196],{"type":49,"value":210},{"type":43,"tag":142,"props":3198,"children":3199},{"style":213},[3200],{"type":49,"value":1084},{"type":43,"tag":142,"props":3202,"children":3203},{"style":149},[3204],{"type":49,"value":172},{"type":43,"tag":142,"props":3206,"children":3207},{"style":149},[3208],{"type":49,"value":225},{"type":43,"tag":142,"props":3210,"children":3211},{"class":144,"line":361},[3212,3216,3220,3224,3228,3232,3237],{"type":43,"tag":142,"props":3213,"children":3214},{"style":149},[3215],{"type":49,"value":191},{"type":43,"tag":142,"props":3217,"children":3218},{"style":194},[3219],{"type":49,"value":1104},{"type":43,"tag":142,"props":3221,"children":3222},{"style":149},[3223],{"type":49,"value":172},{"type":43,"tag":142,"props":3225,"children":3226},{"style":149},[3227],{"type":49,"value":177},{"type":43,"tag":142,"props":3229,"children":3230},{"style":149},[3231],{"type":49,"value":210},{"type":43,"tag":142,"props":3233,"children":3234},{"style":213},[3235],{"type":49,"value":3236},"https:\u002F\u002Fmcp.jira.com\u002Fsse",{"type":43,"tag":142,"props":3238,"children":3239},{"style":149},[3240],{"type":49,"value":349},{"type":43,"tag":142,"props":3242,"children":3243},{"class":144,"line":370},[3244],{"type":43,"tag":142,"props":3245,"children":3246},{"style":149},[3247],{"type":49,"value":367},{"type":43,"tag":142,"props":3249,"children":3250},{"class":144,"line":667},[3251],{"type":43,"tag":142,"props":3252,"children":3253},{"style":149},[3254],{"type":49,"value":376},{"type":43,"tag":59,"props":3256,"children":3257},{},[3258,3262],{"type":43,"tag":68,"props":3259,"children":3260},{},[3261],{"type":49,"value":2933},{"type":49,"value":3263}," Workflows spanning multiple services.",{"type":43,"tag":52,"props":3265,"children":3267},{"id":3266},"security-best-practices",[3268],{"type":49,"value":3269},"Security Best Practices",{"type":43,"tag":110,"props":3271,"children":3273},{"id":3272},"use-httpswss",[3274],{"type":49,"value":3275},"Use HTTPS\u002FWSS",{"type":43,"tag":59,"props":3277,"children":3278},{},[3279],{"type":49,"value":3280},"Always use secure connections:",{"type":43,"tag":131,"props":3282,"children":3284},{"className":133,"code":3283,"language":135,"meta":136,"style":136},"✅ \"url\": \"https:\u002F\u002Fmcp.example.com\u002Fsse\"\n❌ \"url\": \"http:\u002F\u002Fmcp.example.com\u002Fsse\"\n",[3285],{"type":43,"tag":122,"props":3286,"children":3287},{"__ignoreMap":136},[3288,3325],{"type":43,"tag":142,"props":3289,"children":3290},{"class":144,"line":145},[3291,3296,3300,3304,3308,3313,3317,3321],{"type":43,"tag":142,"props":3292,"children":3293},{"style":2838},[3294],{"type":49,"value":3295},"✅ ",{"type":43,"tag":142,"props":3297,"children":3298},{"style":149},[3299],{"type":49,"value":172},{"type":43,"tag":142,"props":3301,"children":3302},{"style":213},[3303],{"type":49,"value":1104},{"type":43,"tag":142,"props":3305,"children":3306},{"style":149},[3307],{"type":49,"value":172},{"type":43,"tag":142,"props":3309,"children":3310},{"style":2838},[3311],{"type":49,"value":3312},": ",{"type":43,"tag":142,"props":3314,"children":3315},{"style":149},[3316],{"type":49,"value":172},{"type":43,"tag":142,"props":3318,"children":3319},{"style":213},[3320],{"type":49,"value":2352},{"type":43,"tag":142,"props":3322,"children":3323},{"style":149},[3324],{"type":49,"value":349},{"type":43,"tag":142,"props":3326,"children":3327},{"class":144,"line":155},[3328,3333,3337,3341,3345,3349,3353,3358],{"type":43,"tag":142,"props":3329,"children":3330},{"style":2838},[3331],{"type":49,"value":3332},"❌ ",{"type":43,"tag":142,"props":3334,"children":3335},{"style":149},[3336],{"type":49,"value":172},{"type":43,"tag":142,"props":3338,"children":3339},{"style":213},[3340],{"type":49,"value":1104},{"type":43,"tag":142,"props":3342,"children":3343},{"style":149},[3344],{"type":49,"value":172},{"type":43,"tag":142,"props":3346,"children":3347},{"style":2838},[3348],{"type":49,"value":3312},{"type":43,"tag":142,"props":3350,"children":3351},{"style":149},[3352],{"type":49,"value":172},{"type":43,"tag":142,"props":3354,"children":3355},{"style":213},[3356],{"type":49,"value":3357},"http:\u002F\u002Fmcp.example.com\u002Fsse",{"type":43,"tag":142,"props":3359,"children":3360},{"style":149},[3361],{"type":49,"value":349},{"type":43,"tag":110,"props":3363,"children":3365},{"id":3364},"token-management",[3366],{"type":49,"value":3367},"Token Management",{"type":43,"tag":59,"props":3369,"children":3370},{},[3371],{"type":43,"tag":68,"props":3372,"children":3373},{},[3374],{"type":49,"value":3375},"DO:",{"type":43,"tag":74,"props":3377,"children":3378},{},[3379,3384,3389],{"type":43,"tag":78,"props":3380,"children":3381},{},[3382],{"type":49,"value":3383},"✅ Use environment variables for tokens",{"type":43,"tag":78,"props":3385,"children":3386},{},[3387],{"type":49,"value":3388},"✅ Document required env vars in README",{"type":43,"tag":78,"props":3390,"children":3391},{},[3392],{"type":49,"value":3393},"✅ Let OAuth flow handle authentication",{"type":43,"tag":59,"props":3395,"children":3396},{},[3397],{"type":43,"tag":68,"props":3398,"children":3399},{},[3400],{"type":49,"value":3401},"DON'T:",{"type":43,"tag":74,"props":3403,"children":3404},{},[3405,3410,3415],{"type":43,"tag":78,"props":3406,"children":3407},{},[3408],{"type":49,"value":3409},"❌ Hardcode tokens in configuration",{"type":43,"tag":78,"props":3411,"children":3412},{},[3413],{"type":49,"value":3414},"❌ Commit tokens to git",{"type":43,"tag":78,"props":3416,"children":3417},{},[3418],{"type":49,"value":3419},"❌ Share tokens in documentation",{"type":43,"tag":110,"props":3421,"children":3423},{"id":3422},"permission-scoping",[3424],{"type":49,"value":3425},"Permission Scoping",{"type":43,"tag":59,"props":3427,"children":3428},{},[3429],{"type":49,"value":3430},"Pre-allow only necessary MCP tools:",{"type":43,"tag":131,"props":3432,"children":3434},{"className":2014,"code":3433,"language":2016,"meta":136,"style":136},"✅ allowed-tools: [\n  \"mcp__plugin_api_server__read_data\",\n  \"mcp__plugin_api_server__create_item\"\n]\n\n❌ allowed-tools: [\"mcp__plugin_api_server__*\"]\n",[3435],{"type":43,"tag":122,"props":3436,"children":3437},{"__ignoreMap":136},[3438,3446,3454,3462,3469,3476],{"type":43,"tag":142,"props":3439,"children":3440},{"class":144,"line":145},[3441],{"type":43,"tag":142,"props":3442,"children":3443},{"style":2838},[3444],{"type":49,"value":3445},"✅ allowed-tools: [\n",{"type":43,"tag":142,"props":3447,"children":3448},{"class":144,"line":155},[3449],{"type":43,"tag":142,"props":3450,"children":3451},{"style":2838},[3452],{"type":49,"value":3453},"  \"mcp__plugin_api_server__read_data\",\n",{"type":43,"tag":142,"props":3455,"children":3456},{"class":144,"line":185},[3457],{"type":43,"tag":142,"props":3458,"children":3459},{"style":2838},[3460],{"type":49,"value":3461},"  \"mcp__plugin_api_server__create_item\"\n",{"type":43,"tag":142,"props":3463,"children":3464},{"class":144,"line":228},[3465],{"type":43,"tag":142,"props":3466,"children":3467},{"style":2838},[3468],{"type":49,"value":650},{"type":43,"tag":142,"props":3470,"children":3471},{"class":144,"line":290},[3472],{"type":43,"tag":142,"props":3473,"children":3474},{"emptyLinePlaceholder":2875},[3475],{"type":49,"value":2878},{"type":43,"tag":142,"props":3477,"children":3478},{"class":144,"line":315},[3479,3484,3488,3493],{"type":43,"tag":142,"props":3480,"children":3481},{"style":2838},[3482],{"type":49,"value":3483},"❌ allowed-tools: ",{"type":43,"tag":142,"props":3485,"children":3486},{"style":149},[3487],{"type":49,"value":2853},{"type":43,"tag":142,"props":3489,"children":3490},{"style":213},[3491],{"type":49,"value":3492},"\"mcp__plugin_api_server__*\"",{"type":43,"tag":142,"props":3494,"children":3495},{"style":149},[3496],{"type":49,"value":650},{"type":43,"tag":52,"props":3498,"children":3500},{"id":3499},"error-handling",[3501],{"type":49,"value":3502},"Error Handling",{"type":43,"tag":110,"props":3504,"children":3506},{"id":3505},"connection-failures",[3507],{"type":49,"value":3508},"Connection Failures",{"type":43,"tag":59,"props":3510,"children":3511},{},[3512],{"type":49,"value":3513},"Handle MCP server unavailability:",{"type":43,"tag":74,"props":3515,"children":3516},{},[3517,3522,3527],{"type":43,"tag":78,"props":3518,"children":3519},{},[3520],{"type":49,"value":3521},"Provide fallback behavior in commands",{"type":43,"tag":78,"props":3523,"children":3524},{},[3525],{"type":49,"value":3526},"Inform user of connection issues",{"type":43,"tag":78,"props":3528,"children":3529},{},[3530],{"type":49,"value":3531},"Check server URL and configuration",{"type":43,"tag":110,"props":3533,"children":3535},{"id":3534},"tool-call-errors",[3536],{"type":49,"value":3537},"Tool Call Errors",{"type":43,"tag":59,"props":3539,"children":3540},{},[3541],{"type":49,"value":3542},"Handle failed MCP operations:",{"type":43,"tag":74,"props":3544,"children":3545},{},[3546,3551,3556],{"type":43,"tag":78,"props":3547,"children":3548},{},[3549],{"type":49,"value":3550},"Validate inputs before calling MCP tools",{"type":43,"tag":78,"props":3552,"children":3553},{},[3554],{"type":49,"value":3555},"Provide clear error messages",{"type":43,"tag":78,"props":3557,"children":3558},{},[3559],{"type":49,"value":3560},"Check rate limiting and quotas",{"type":43,"tag":110,"props":3562,"children":3564},{"id":3563},"configuration-errors",[3565],{"type":49,"value":3566},"Configuration Errors",{"type":43,"tag":59,"props":3568,"children":3569},{},[3570],{"type":49,"value":3571},"Validate MCP configuration:",{"type":43,"tag":74,"props":3573,"children":3574},{},[3575,3580,3585],{"type":43,"tag":78,"props":3576,"children":3577},{},[3578],{"type":49,"value":3579},"Test server connectivity during development",{"type":43,"tag":78,"props":3581,"children":3582},{},[3583],{"type":49,"value":3584},"Validate JSON syntax",{"type":43,"tag":78,"props":3586,"children":3587},{},[3588],{"type":49,"value":3589},"Check required environment variables",{"type":43,"tag":52,"props":3591,"children":3593},{"id":3592},"performance-considerations",[3594],{"type":49,"value":3595},"Performance Considerations",{"type":43,"tag":110,"props":3597,"children":3599},{"id":3598},"lazy-loading",[3600],{"type":49,"value":3601},"Lazy Loading",{"type":43,"tag":59,"props":3603,"children":3604},{},[3605],{"type":49,"value":3606},"MCP servers connect on-demand:",{"type":43,"tag":74,"props":3608,"children":3609},{},[3610,3615,3620],{"type":43,"tag":78,"props":3611,"children":3612},{},[3613],{"type":49,"value":3614},"Not all servers connect at startup",{"type":43,"tag":78,"props":3616,"children":3617},{},[3618],{"type":49,"value":3619},"First tool use triggers connection",{"type":43,"tag":78,"props":3621,"children":3622},{},[3623],{"type":49,"value":3624},"Connection pooling managed automatically",{"type":43,"tag":110,"props":3626,"children":3628},{"id":3627},"batching",[3629],{"type":49,"value":3630},"Batching",{"type":43,"tag":59,"props":3632,"children":3633},{},[3634],{"type":49,"value":3635},"Batch similar requests when possible:",{"type":43,"tag":131,"props":3637,"children":3641},{"className":3638,"code":3640,"language":49},[3639],"language-text","# Good: Single query with filters\ntasks = search_tasks(project=\"X\", assignee=\"me\", limit=50)\n\n# Avoid: Many individual queries\nfor id in task_ids:\n    task = get_task(id)\n",[3642],{"type":43,"tag":122,"props":3643,"children":3644},{"__ignoreMap":136},[3645],{"type":49,"value":3640},{"type":43,"tag":52,"props":3647,"children":3649},{"id":3648},"testing-mcp-integration",[3650],{"type":49,"value":3651},"Testing MCP Integration",{"type":43,"tag":110,"props":3653,"children":3655},{"id":3654},"local-testing",[3656],{"type":49,"value":3657},"Local Testing",{"type":43,"tag":2207,"props":3659,"children":3660},{},[3661,3671,3684,3696,3701],{"type":43,"tag":78,"props":3662,"children":3663},{},[3664,3666],{"type":49,"value":3665},"Configure MCP server in ",{"type":43,"tag":122,"props":3667,"children":3669},{"className":3668},[],[3670],{"type":49,"value":127},{"type":43,"tag":78,"props":3672,"children":3673},{},[3674,3676,3682],{"type":49,"value":3675},"Install plugin locally (",{"type":43,"tag":122,"props":3677,"children":3679},{"className":3678},[],[3680],{"type":49,"value":3681},".claude-plugin\u002F",{"type":49,"value":3683},")",{"type":43,"tag":78,"props":3685,"children":3686},{},[3687,3689,3694],{"type":49,"value":3688},"Run ",{"type":43,"tag":122,"props":3690,"children":3692},{"className":3691},[],[3693],{"type":49,"value":2256},{"type":49,"value":3695}," to verify server appears",{"type":43,"tag":78,"props":3697,"children":3698},{},[3699],{"type":49,"value":3700},"Test tool calls in commands",{"type":43,"tag":78,"props":3702,"children":3703},{},[3704,3706,3712],{"type":49,"value":3705},"Check ",{"type":43,"tag":122,"props":3707,"children":3709},{"className":3708},[],[3710],{"type":49,"value":3711},"claude --debug",{"type":49,"value":3713}," logs for connection issues",{"type":43,"tag":110,"props":3715,"children":3717},{"id":3716},"validation-checklist",[3718],{"type":49,"value":3719},"Validation Checklist",{"type":43,"tag":74,"props":3721,"children":3724},{"className":3722},[3723],"contains-task-list",[3725,3737,3746,3755,3771,3780,3789],{"type":43,"tag":78,"props":3726,"children":3729},{"className":3727},[3728],"task-list-item",[3730,3735],{"type":43,"tag":3731,"props":3732,"children":3734},"input",{"disabled":2875,"type":3733},"checkbox",[],{"type":49,"value":3736}," MCP configuration is valid JSON",{"type":43,"tag":78,"props":3738,"children":3740},{"className":3739},[3728],[3741,3744],{"type":43,"tag":3731,"props":3742,"children":3743},{"disabled":2875,"type":3733},[],{"type":49,"value":3745}," Server URL is correct and accessible",{"type":43,"tag":78,"props":3747,"children":3749},{"className":3748},[3728],[3750,3753],{"type":43,"tag":3731,"props":3751,"children":3752},{"disabled":2875,"type":3733},[],{"type":49,"value":3754}," Required environment variables documented",{"type":43,"tag":78,"props":3756,"children":3758},{"className":3757},[3728],[3759,3762,3764,3769],{"type":43,"tag":3731,"props":3760,"children":3761},{"disabled":2875,"type":3733},[],{"type":49,"value":3763}," Tools appear in ",{"type":43,"tag":122,"props":3765,"children":3767},{"className":3766},[],[3768],{"type":49,"value":2256},{"type":49,"value":3770}," output",{"type":43,"tag":78,"props":3772,"children":3774},{"className":3773},[3728],[3775,3778],{"type":43,"tag":3731,"props":3776,"children":3777},{"disabled":2875,"type":3733},[],{"type":49,"value":3779}," Authentication works (OAuth or tokens)",{"type":43,"tag":78,"props":3781,"children":3783},{"className":3782},[3728],[3784,3787],{"type":43,"tag":3731,"props":3785,"children":3786},{"disabled":2875,"type":3733},[],{"type":49,"value":3788}," Tool calls succeed from commands",{"type":43,"tag":78,"props":3790,"children":3792},{"className":3791},[3728],[3793,3796],{"type":43,"tag":3731,"props":3794,"children":3795},{"disabled":2875,"type":3733},[],{"type":49,"value":3797}," Error cases handled gracefully",{"type":43,"tag":52,"props":3799,"children":3801},{"id":3800},"debugging",[3802],{"type":49,"value":3803},"Debugging",{"type":43,"tag":110,"props":3805,"children":3807},{"id":3806},"enable-debug-logging",[3808],{"type":49,"value":3809},"Enable Debug Logging",{"type":43,"tag":131,"props":3811,"children":3815},{"className":3812,"code":3813,"language":3814,"meta":136,"style":136},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","claude --debug\n","bash",[3816],{"type":43,"tag":122,"props":3817,"children":3818},{"__ignoreMap":136},[3819],{"type":43,"tag":142,"props":3820,"children":3821},{"class":144,"line":145},[3822,3827],{"type":43,"tag":142,"props":3823,"children":3824},{"style":194},[3825],{"type":49,"value":3826},"claude",{"type":43,"tag":142,"props":3828,"children":3829},{"style":213},[3830],{"type":49,"value":3831}," --debug\n",{"type":43,"tag":59,"props":3833,"children":3834},{},[3835],{"type":49,"value":3836},"Look for:",{"type":43,"tag":74,"props":3838,"children":3839},{},[3840,3845,3850,3855],{"type":43,"tag":78,"props":3841,"children":3842},{},[3843],{"type":49,"value":3844},"MCP server connection attempts",{"type":43,"tag":78,"props":3846,"children":3847},{},[3848],{"type":49,"value":3849},"Tool discovery logs",{"type":43,"tag":78,"props":3851,"children":3852},{},[3853],{"type":49,"value":3854},"Authentication flows",{"type":43,"tag":78,"props":3856,"children":3857},{},[3858],{"type":49,"value":3859},"Tool call errors",{"type":43,"tag":110,"props":3861,"children":3863},{"id":3862},"common-issues",[3864],{"type":49,"value":3865},"Common Issues",{"type":43,"tag":59,"props":3867,"children":3868},{},[3869],{"type":43,"tag":68,"props":3870,"children":3871},{},[3872],{"type":49,"value":3873},"Server not connecting:",{"type":43,"tag":74,"props":3875,"children":3876},{},[3877,3882,3887,3892],{"type":43,"tag":78,"props":3878,"children":3879},{},[3880],{"type":49,"value":3881},"Check URL is correct",{"type":43,"tag":78,"props":3883,"children":3884},{},[3885],{"type":49,"value":3886},"Verify server is running (stdio)",{"type":43,"tag":78,"props":3888,"children":3889},{},[3890],{"type":49,"value":3891},"Check network connectivity",{"type":43,"tag":78,"props":3893,"children":3894},{},[3895],{"type":49,"value":3896},"Review authentication configuration",{"type":43,"tag":59,"props":3898,"children":3899},{},[3900],{"type":43,"tag":68,"props":3901,"children":3902},{},[3903],{"type":49,"value":3904},"Tools not available:",{"type":43,"tag":74,"props":3906,"children":3907},{},[3908,3913,3918,3929],{"type":43,"tag":78,"props":3909,"children":3910},{},[3911],{"type":49,"value":3912},"Verify server connected successfully",{"type":43,"tag":78,"props":3914,"children":3915},{},[3916],{"type":49,"value":3917},"Check tool names match exactly",{"type":43,"tag":78,"props":3919,"children":3920},{},[3921,3922,3927],{"type":49,"value":3688},{"type":43,"tag":122,"props":3923,"children":3925},{"className":3924},[],[3926],{"type":49,"value":2256},{"type":49,"value":3928}," to see available tools",{"type":43,"tag":78,"props":3930,"children":3931},{},[3932],{"type":49,"value":3933},"Restart Claude Code after config changes",{"type":43,"tag":59,"props":3935,"children":3936},{},[3937],{"type":43,"tag":68,"props":3938,"children":3939},{},[3940],{"type":49,"value":3941},"Authentication failing:",{"type":43,"tag":74,"props":3943,"children":3944},{},[3945,3950,3955,3960],{"type":43,"tag":78,"props":3946,"children":3947},{},[3948],{"type":49,"value":3949},"Clear cached auth tokens",{"type":43,"tag":78,"props":3951,"children":3952},{},[3953],{"type":49,"value":3954},"Re-authenticate",{"type":43,"tag":78,"props":3956,"children":3957},{},[3958],{"type":49,"value":3959},"Check token scopes and permissions",{"type":43,"tag":78,"props":3961,"children":3962},{},[3963],{"type":49,"value":3964},"Verify environment variables set",{"type":43,"tag":52,"props":3966,"children":3968},{"id":3967},"quick-reference",[3969],{"type":49,"value":3970},"Quick Reference",{"type":43,"tag":110,"props":3972,"children":3974},{"id":3973},"mcp-server-types-1",[3975],{"type":49,"value":698},{"type":43,"tag":3977,"props":3978,"children":3979},"table",{},[3980,4009],{"type":43,"tag":3981,"props":3982,"children":3983},"thead",{},[3984],{"type":43,"tag":3985,"props":3986,"children":3987},"tr",{},[3988,3994,3999,4004],{"type":43,"tag":3989,"props":3990,"children":3991},"th",{},[3992],{"type":49,"value":3993},"Type",{"type":43,"tag":3989,"props":3995,"children":3996},{},[3997],{"type":49,"value":3998},"Transport",{"type":43,"tag":3989,"props":4000,"children":4001},{},[4002],{"type":49,"value":4003},"Best For",{"type":43,"tag":3989,"props":4005,"children":4006},{},[4007],{"type":49,"value":4008},"Auth",{"type":43,"tag":4010,"props":4011,"children":4012},"tbody",{},[4013,4037,4060,4082],{"type":43,"tag":3985,"props":4014,"children":4015},{},[4016,4022,4027,4032],{"type":43,"tag":4017,"props":4018,"children":4019},"td",{},[4020],{"type":49,"value":4021},"stdio",{"type":43,"tag":4017,"props":4023,"children":4024},{},[4025],{"type":49,"value":4026},"Process",{"type":43,"tag":4017,"props":4028,"children":4029},{},[4030],{"type":49,"value":4031},"Local tools, custom servers",{"type":43,"tag":4017,"props":4033,"children":4034},{},[4035],{"type":49,"value":4036},"Env vars",{"type":43,"tag":3985,"props":4038,"children":4039},{},[4040,4045,4050,4055],{"type":43,"tag":4017,"props":4041,"children":4042},{},[4043],{"type":49,"value":4044},"SSE",{"type":43,"tag":4017,"props":4046,"children":4047},{},[4048],{"type":49,"value":4049},"HTTP",{"type":43,"tag":4017,"props":4051,"children":4052},{},[4053],{"type":49,"value":4054},"Hosted services, cloud APIs",{"type":43,"tag":4017,"props":4056,"children":4057},{},[4058],{"type":49,"value":4059},"OAuth",{"type":43,"tag":3985,"props":4061,"children":4062},{},[4063,4067,4072,4077],{"type":43,"tag":4017,"props":4064,"children":4065},{},[4066],{"type":49,"value":4049},{"type":43,"tag":4017,"props":4068,"children":4069},{},[4070],{"type":49,"value":4071},"REST",{"type":43,"tag":4017,"props":4073,"children":4074},{},[4075],{"type":49,"value":4076},"API backends, token auth",{"type":43,"tag":4017,"props":4078,"children":4079},{},[4080],{"type":49,"value":4081},"Tokens",{"type":43,"tag":3985,"props":4083,"children":4084},{},[4085,4089,4094,4099],{"type":43,"tag":4017,"props":4086,"children":4087},{},[4088],{"type":49,"value":1552},{"type":43,"tag":4017,"props":4090,"children":4091},{},[4092],{"type":49,"value":4093},"WebSocket",{"type":43,"tag":4017,"props":4095,"children":4096},{},[4097],{"type":49,"value":4098},"Real-time, streaming",{"type":43,"tag":4017,"props":4100,"children":4101},{},[4102],{"type":49,"value":4081},{"type":43,"tag":110,"props":4104,"children":4106},{"id":4105},"configuration-checklist",[4107],{"type":49,"value":4108},"Configuration Checklist",{"type":43,"tag":74,"props":4110,"children":4112},{"className":4111},[3723],[4113,4122,4131,4140,4149,4158],{"type":43,"tag":78,"props":4114,"children":4116},{"className":4115},[3728],[4117,4120],{"type":43,"tag":3731,"props":4118,"children":4119},{"disabled":2875,"type":3733},[],{"type":49,"value":4121}," Server type specified (stdio\u002FSSE\u002FHTTP\u002Fws)",{"type":43,"tag":78,"props":4123,"children":4125},{"className":4124},[3728],[4126,4129],{"type":43,"tag":3731,"props":4127,"children":4128},{"disabled":2875,"type":3733},[],{"type":49,"value":4130}," Type-specific fields complete (command or url)",{"type":43,"tag":78,"props":4132,"children":4134},{"className":4133},[3728],[4135,4138],{"type":43,"tag":3731,"props":4136,"children":4137},{"disabled":2875,"type":3733},[],{"type":49,"value":4139}," Authentication configured",{"type":43,"tag":78,"props":4141,"children":4143},{"className":4142},[3728],[4144,4147],{"type":43,"tag":3731,"props":4145,"children":4146},{"disabled":2875,"type":3733},[],{"type":49,"value":4148}," Environment variables documented",{"type":43,"tag":78,"props":4150,"children":4152},{"className":4151},[3728],[4153,4156],{"type":43,"tag":3731,"props":4154,"children":4155},{"disabled":2875,"type":3733},[],{"type":49,"value":4157}," HTTPS\u002FWSS used (not HTTP\u002FWS)",{"type":43,"tag":78,"props":4159,"children":4161},{"className":4160},[3728],[4162,4165],{"type":43,"tag":3731,"props":4163,"children":4164},{"disabled":2875,"type":3733},[],{"type":49,"value":4166}," ${CLAUDE_PLUGIN_ROOT} used for paths",{"type":43,"tag":110,"props":4168,"children":4170},{"id":4169},"best-practices",[4171],{"type":49,"value":4172},"Best Practices",{"type":43,"tag":59,"props":4174,"children":4175},{},[4176],{"type":43,"tag":68,"props":4177,"children":4178},{},[4179],{"type":49,"value":3375},{"type":43,"tag":74,"props":4181,"children":4182},{},[4183,4188,4193,4198,4203,4208],{"type":43,"tag":78,"props":4184,"children":4185},{},[4186],{"type":49,"value":4187},"✅ Use ${CLAUDE_PLUGIN_ROOT} for portable paths",{"type":43,"tag":78,"props":4189,"children":4190},{},[4191],{"type":49,"value":4192},"✅ Document required environment variables",{"type":43,"tag":78,"props":4194,"children":4195},{},[4196],{"type":49,"value":4197},"✅ Use secure connections (HTTPS\u002FWSS)",{"type":43,"tag":78,"props":4199,"children":4200},{},[4201],{"type":49,"value":4202},"✅ Pre-allow specific MCP tools in commands",{"type":43,"tag":78,"props":4204,"children":4205},{},[4206],{"type":49,"value":4207},"✅ Test MCP integration before publishing",{"type":43,"tag":78,"props":4209,"children":4210},{},[4211],{"type":49,"value":4212},"✅ Handle connection and tool errors gracefully",{"type":43,"tag":59,"props":4214,"children":4215},{},[4216],{"type":43,"tag":68,"props":4217,"children":4218},{},[4219],{"type":49,"value":3401},{"type":43,"tag":74,"props":4221,"children":4222},{},[4223,4228,4233,4238,4243,4248],{"type":43,"tag":78,"props":4224,"children":4225},{},[4226],{"type":49,"value":4227},"❌ Hardcode absolute paths",{"type":43,"tag":78,"props":4229,"children":4230},{},[4231],{"type":49,"value":4232},"❌ Commit credentials to git",{"type":43,"tag":78,"props":4234,"children":4235},{},[4236],{"type":49,"value":4237},"❌ Use HTTP instead of HTTPS",{"type":43,"tag":78,"props":4239,"children":4240},{},[4241],{"type":49,"value":4242},"❌ Pre-allow all tools with wildcards",{"type":43,"tag":78,"props":4244,"children":4245},{},[4246],{"type":49,"value":4247},"❌ Skip error handling",{"type":43,"tag":78,"props":4249,"children":4250},{},[4251],{"type":49,"value":4252},"❌ Forget to document setup",{"type":43,"tag":52,"props":4254,"children":4256},{"id":4255},"additional-resources",[4257],{"type":49,"value":4258},"Additional Resources",{"type":43,"tag":110,"props":4260,"children":4262},{"id":4261},"reference-files",[4263],{"type":49,"value":4264},"Reference Files",{"type":43,"tag":59,"props":4266,"children":4267},{},[4268],{"type":49,"value":4269},"For detailed information, consult:",{"type":43,"tag":74,"props":4271,"children":4272},{},[4273,4287,4301],{"type":43,"tag":78,"props":4274,"children":4275},{},[4276,4285],{"type":43,"tag":68,"props":4277,"children":4278},{},[4279],{"type":43,"tag":122,"props":4280,"children":4282},{"className":4281},[],[4283],{"type":49,"value":4284},"references\u002Fserver-types.md",{"type":49,"value":4286}," - Deep dive on each server type",{"type":43,"tag":78,"props":4288,"children":4289},{},[4290,4299],{"type":43,"tag":68,"props":4291,"children":4292},{},[4293],{"type":43,"tag":122,"props":4294,"children":4296},{"className":4295},[],[4297],{"type":49,"value":4298},"references\u002Fauthentication.md",{"type":49,"value":4300}," - Authentication patterns and OAuth",{"type":43,"tag":78,"props":4302,"children":4303},{},[4304,4313],{"type":43,"tag":68,"props":4305,"children":4306},{},[4307],{"type":43,"tag":122,"props":4308,"children":4310},{"className":4309},[],[4311],{"type":49,"value":4312},"references\u002Ftool-usage.md",{"type":49,"value":4314}," - Using MCP tools in commands and agents",{"type":43,"tag":110,"props":4316,"children":4318},{"id":4317},"example-configurations",[4319],{"type":49,"value":4320},"Example Configurations",{"type":43,"tag":59,"props":4322,"children":4323},{},[4324,4326,4332],{"type":49,"value":4325},"Working examples in ",{"type":43,"tag":122,"props":4327,"children":4329},{"className":4328},[],[4330],{"type":49,"value":4331},"examples\u002F",{"type":49,"value":177},{"type":43,"tag":74,"props":4334,"children":4335},{},[4336,4350,4364],{"type":43,"tag":78,"props":4337,"children":4338},{},[4339,4348],{"type":43,"tag":68,"props":4340,"children":4341},{},[4342],{"type":43,"tag":122,"props":4343,"children":4345},{"className":4344},[],[4346],{"type":49,"value":4347},"stdio-server.json",{"type":49,"value":4349}," - Local stdio MCP server",{"type":43,"tag":78,"props":4351,"children":4352},{},[4353,4362],{"type":43,"tag":68,"props":4354,"children":4355},{},[4356],{"type":43,"tag":122,"props":4357,"children":4359},{"className":4358},[],[4360],{"type":49,"value":4361},"sse-server.json",{"type":49,"value":4363}," - Hosted SSE server with OAuth",{"type":43,"tag":78,"props":4365,"children":4366},{},[4367,4376],{"type":43,"tag":68,"props":4368,"children":4369},{},[4370],{"type":43,"tag":122,"props":4371,"children":4373},{"className":4372},[],[4374],{"type":49,"value":4375},"http-server.json",{"type":49,"value":4377}," - REST API with token auth",{"type":43,"tag":110,"props":4379,"children":4381},{"id":4380},"external-resources",[4382],{"type":49,"value":4383},"External Resources",{"type":43,"tag":74,"props":4385,"children":4386},{},[4387,4404,4419,4429],{"type":43,"tag":78,"props":4388,"children":4389},{},[4390,4395,4396],{"type":43,"tag":68,"props":4391,"children":4392},{},[4393],{"type":49,"value":4394},"Official MCP Docs",{"type":49,"value":3312},{"type":43,"tag":4397,"props":4398,"children":4402},"a",{"href":4399,"rel":4400},"https:\u002F\u002Fmodelcontextprotocol.io\u002F",[4401],"nofollow",[4403],{"type":49,"value":4399},{"type":43,"tag":78,"props":4405,"children":4406},{},[4407,4412,4413],{"type":43,"tag":68,"props":4408,"children":4409},{},[4410],{"type":49,"value":4411},"Claude Code MCP Docs",{"type":49,"value":3312},{"type":43,"tag":4397,"props":4414,"children":4417},{"href":4415,"rel":4416},"https:\u002F\u002Fdocs.claude.com\u002Fen\u002Fdocs\u002Fclaude-code\u002Fmcp",[4401],[4418],{"type":49,"value":4415},{"type":43,"tag":78,"props":4420,"children":4421},{},[4422,4427],{"type":43,"tag":68,"props":4423,"children":4424},{},[4425],{"type":49,"value":4426},"MCP SDK",{"type":49,"value":4428},": @modelcontextprotocol\u002Fsdk",{"type":43,"tag":78,"props":4430,"children":4431},{},[4432,4437,4439,4444,4446,4451],{"type":43,"tag":68,"props":4433,"children":4434},{},[4435],{"type":49,"value":4436},"Testing",{"type":49,"value":4438},": Use ",{"type":43,"tag":122,"props":4440,"children":4442},{"className":4441},[],[4443],{"type":49,"value":3711},{"type":49,"value":4445}," and ",{"type":43,"tag":122,"props":4447,"children":4449},{"className":4448},[],[4450],{"type":49,"value":2256},{"type":49,"value":4452}," command",{"type":43,"tag":52,"props":4454,"children":4456},{"id":4455},"implementation-workflow",[4457],{"type":49,"value":4458},"Implementation Workflow",{"type":43,"tag":59,"props":4460,"children":4461},{},[4462],{"type":49,"value":4463},"To add MCP integration to a plugin:",{"type":43,"tag":2207,"props":4465,"children":4466},{},[4467,4472,4483,4488,4493,4504,4509,4514,4519],{"type":43,"tag":78,"props":4468,"children":4469},{},[4470],{"type":49,"value":4471},"Choose MCP server type (stdio, SSE, HTTP, ws)",{"type":43,"tag":78,"props":4473,"children":4474},{},[4475,4476,4481],{"type":49,"value":120},{"type":43,"tag":122,"props":4477,"children":4479},{"className":4478},[],[4480],{"type":49,"value":127},{"type":49,"value":4482}," at plugin root with configuration",{"type":43,"tag":78,"props":4484,"children":4485},{},[4486],{"type":49,"value":4487},"Use ${CLAUDE_PLUGIN_ROOT} for all file references",{"type":43,"tag":78,"props":4489,"children":4490},{},[4491],{"type":49,"value":4492},"Document required environment variables in README",{"type":43,"tag":78,"props":4494,"children":4495},{},[4496,4498,4503],{"type":49,"value":4497},"Test locally with ",{"type":43,"tag":122,"props":4499,"children":4501},{"className":4500},[],[4502],{"type":49,"value":2256},{"type":49,"value":4452},{"type":43,"tag":78,"props":4505,"children":4506},{},[4507],{"type":49,"value":4508},"Pre-allow MCP tools in relevant commands",{"type":43,"tag":78,"props":4510,"children":4511},{},[4512],{"type":49,"value":4513},"Handle authentication (OAuth or tokens)",{"type":43,"tag":78,"props":4515,"children":4516},{},[4517],{"type":49,"value":4518},"Test error cases (connection failures, auth errors)",{"type":43,"tag":78,"props":4520,"children":4521},{},[4522],{"type":49,"value":4523},"Document MCP integration in plugin README",{"type":43,"tag":59,"props":4525,"children":4526},{},[4527],{"type":49,"value":4528},"Focus on stdio for custom\u002Flocal servers, SSE for hosted services with OAuth.",{"type":43,"tag":4530,"props":4531,"children":4532},"style",{},[4533],{"type":49,"value":4534},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4536,"total":4636},[4537,4553,4568,4582,4593,4606,4624],{"slug":4538,"name":4538,"fn":4539,"description":4540,"org":4541,"tags":4542,"stars":23,"repoUrl":24,"updatedAt":4552},"access","manage iMessage channel access and permissions","Manage iMessage channel access — approve pairings, edit allowlists, set DM\u002Fgroup policy. Use when the user asks to pair, approve someone, check who's allowed, or change policy for the iMessage channel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4543,4546,4549],{"name":4544,"slug":4545,"type":16},"Access Control","access-control",{"name":4547,"slug":4548,"type":16},"iMessage","imessage",{"name":4550,"slug":4551,"type":16},"Messaging","messaging","2026-04-12T04:54:55.917969",{"slug":4554,"name":4554,"fn":4555,"description":4556,"org":4557,"tags":4558,"stars":23,"repoUrl":24,"updatedAt":4567},"agent-development","develop and configure AI agents","This skill should be used when the user asks to \"create an agent\", \"add an agent\", \"write a subagent\", \"agent frontmatter\", \"when to use description\", \"agent examples\", \"agent tools\", \"agent colors\", \"autonomous agent\", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4559,4562,4563,4566],{"name":4560,"slug":4561,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":4564,"slug":4565,"type":16},"Documentation","documentation",{"name":18,"slug":19,"type":16},"2026-04-10T04:55:41.251084",{"slug":4569,"name":4569,"fn":4570,"description":4571,"org":4572,"tags":4573,"stars":23,"repoUrl":24,"updatedAt":4581},"build-mcp-app","build MCP apps with interactive UI","This skill should be used when the user wants to build an \"MCP app\", add \"interactive UI\" or \"widgets\" to an MCP server, \"render components in chat\", build \"MCP UI resources\", make a tool that shows a \"form\", \"picker\", \"dashboard\" or \"confirmation dialog\" inline in the conversation, or mentions \"apps SDK\" in the context of MCP. Use AFTER the build-mcp-server skill has settled the deployment model, or when the user already knows they want UI widgets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4574,4575,4577,4578],{"name":4560,"slug":4561,"type":16},{"name":4576,"slug":29,"type":16},"Claude Code",{"name":14,"slug":15,"type":16},{"name":4579,"slug":4580,"type":16},"UI Components","ui-components","2026-04-06T17:59:32.421865",{"slug":4583,"name":4583,"fn":4584,"description":4585,"org":4586,"tags":4587,"stars":23,"repoUrl":24,"updatedAt":4592},"build-mcp-server","build MCP servers","This skill should be used when the user asks to \"build an MCP server\", \"create an MCP\", \"make an MCP integration\", \"wrap an API for Claude\", \"expose tools to Claude\", \"make an MCP app\", or discusses building something with the Model Context Protocol. It is the entry point for MCP server development — it interrogates the user about their use case, determines the right deployment model (remote HTTP, MCPB, local stdio), picks a tool-design pattern, and hands off to specialized skills.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4588,4589,4590,4591],{"name":4560,"slug":4561,"type":16},{"name":21,"slug":22,"type":16},{"name":4576,"slug":29,"type":16},{"name":14,"slug":15,"type":16},"2026-04-06T17:59:33.744601",{"slug":4594,"name":4594,"fn":4595,"description":4596,"org":4597,"tags":4598,"stars":23,"repoUrl":24,"updatedAt":4605},"build-mcpb","package and distribute MCP servers","This skill should be used when the user wants to \"package an MCP server\", \"bundle an MCP\", \"make an MCPB\", \"ship a local MCP server\", \"distribute a local MCP\", discusses \".mcpb files\", mentions bundling a Node or Python runtime with their MCP server, or needs an MCP server that interacts with the local filesystem, desktop apps, or OS and must be installable without the user having Node\u002FPython set up.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4599,4600,4601,4602],{"name":4560,"slug":4561,"type":16},{"name":4576,"slug":29,"type":16},{"name":14,"slug":15,"type":16},{"name":4603,"slug":4604,"type":16},"Packaging","packaging","2026-04-06T17:59:31.159961",{"slug":4607,"name":4607,"fn":4608,"description":4609,"org":4610,"tags":4611,"stars":23,"repoUrl":24,"updatedAt":4623},"cardputer-buddy","develop MicroPython apps for Cardputer","Iterate on the Cardputer-Adv MicroPython app bundle (Claude Buddy, Snake, Hello) after the device is already provisioned via m5-onboard. Use when the user wants to add a new app, push a single changed .py without re-flashing, watch device serial logs, or run a one-shot REPL command. Trigger on \"add an app\", \"push to the cardputer\", \"tail the device\", \"run on the device\", or follow-up work after \u002Fmaker-setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4612,4615,4618,4621],{"name":4613,"slug":4614,"type":16},"Hardware","hardware",{"name":4616,"slug":4617,"type":16},"M5Stack","m5stack",{"name":4619,"slug":4620,"type":16},"MicroPython","micropython",{"name":4622,"slug":2590,"type":16},"Python","2026-05-06T05:39:00.134385",{"slug":4625,"name":4625,"fn":4626,"description":4627,"org":4628,"tags":4629,"stars":23,"repoUrl":24,"updatedAt":4635},"claude-automation-recommender","recommend Claude Code automations","Analyze a codebase and recommend Claude Code automations (hooks, subagents, skills, plugins, MCP servers). Use when user asks for automation recommendations, wants to optimize their Claude Code setup, mentions improving Claude Code workflows, asks how to first set up Claude Code for a project, or wants to know what Claude Code features they should use.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4630,4633,4634],{"name":4631,"slug":4632,"type":16},"Agent Context","agent-context",{"name":4576,"slug":29,"type":16},{"name":14,"slug":15,"type":16},"2026-04-06T18:00:34.049624",25,{"items":4638,"total":4814},[4639,4660,4674,4686,4703,4714,4735,4753,4767,4777,4785,4798],{"slug":4640,"name":4640,"fn":4641,"description":4642,"org":4643,"tags":4644,"stars":4657,"repoUrl":4658,"updatedAt":4659},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4645,4648,4651,4654],{"name":4646,"slug":4647,"type":16},"Creative","creative",{"name":4649,"slug":4650,"type":16},"Design","design",{"name":4652,"slug":4653,"type":16},"Generative Art","generative-art",{"name":4655,"slug":4656,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":4661,"name":4661,"fn":4662,"description":4663,"org":4664,"tags":4665,"stars":4657,"repoUrl":4658,"updatedAt":4673},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4666,4669,4670],{"name":4667,"slug":4668,"type":16},"Branding","branding",{"name":4649,"slug":4650,"type":16},{"name":4671,"slug":4672,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":4675,"name":4675,"fn":4676,"description":4677,"org":4678,"tags":4679,"stars":4657,"repoUrl":4658,"updatedAt":4685},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4680,4681,4682],{"name":4646,"slug":4647,"type":16},{"name":4649,"slug":4650,"type":16},{"name":4683,"slug":4684,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":4687,"name":4687,"fn":4688,"description":4689,"org":4690,"tags":4691,"stars":4657,"repoUrl":4658,"updatedAt":4702},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4692,4693,4694,4697,4699],{"name":4560,"slug":4561,"type":16},{"name":9,"slug":8,"type":16},{"name":4695,"slug":4696,"type":16},"Anthropic SDK","anthropic-sdk",{"name":4698,"slug":4687,"type":16},"Claude API",{"name":4700,"slug":4701,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":4704,"name":4704,"fn":4705,"description":4706,"org":4707,"tags":4708,"stars":4657,"repoUrl":4658,"updatedAt":4713},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4709,4710],{"name":4564,"slug":4565,"type":16},{"name":4711,"slug":4712,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":4715,"name":4715,"fn":4716,"description":4717,"org":4718,"tags":4719,"stars":4657,"repoUrl":4658,"updatedAt":4734},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4720,4723,4725,4728,4731],{"name":4721,"slug":4722,"type":16},"Documents","documents",{"name":4724,"slug":4715,"type":16},"DOCX",{"name":4726,"slug":4727,"type":16},"Office","office",{"name":4729,"slug":4730,"type":16},"Templates","templates",{"name":4732,"slug":4733,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":4736,"name":4736,"fn":4737,"description":4738,"org":4739,"tags":4740,"stars":4657,"repoUrl":4658,"updatedAt":4752},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4741,4742,4745,4748,4751],{"name":4649,"slug":4650,"type":16},{"name":4743,"slug":4744,"type":16},"Frontend","frontend",{"name":4746,"slug":4747,"type":16},"React","react",{"name":4749,"slug":4750,"type":16},"Tailwind CSS","tailwind-css",{"name":4579,"slug":4580,"type":16},"2026-04-06T17:56:16.723469",{"slug":4754,"name":4754,"fn":4755,"description":4756,"org":4757,"tags":4758,"stars":4657,"repoUrl":4658,"updatedAt":4766},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4759,4762,4763],{"name":4760,"slug":4761,"type":16},"Communications","communications",{"name":4729,"slug":4730,"type":16},{"name":4764,"slug":4765,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":4768,"name":4768,"fn":4584,"description":4769,"org":4770,"tags":4771,"stars":4657,"repoUrl":4658,"updatedAt":4776},"mcp-builder","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4772,4773,4774,4775],{"name":4560,"slug":4561,"type":16},{"name":21,"slug":22,"type":16},{"name":4700,"slug":4701,"type":16},{"name":14,"slug":15,"type":16},"2026-04-06T17:56:10.357665",{"slug":4684,"name":4684,"fn":4778,"description":4779,"org":4780,"tags":4781,"stars":4657,"repoUrl":4658,"updatedAt":4784},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4782,4783],{"name":4721,"slug":4722,"type":16},{"name":4683,"slug":4684,"type":16},"2026-04-06T17:56:02.483316",{"slug":4786,"name":4786,"fn":4787,"description":4788,"org":4789,"tags":4790,"stars":4657,"repoUrl":4658,"updatedAt":4797},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4791,4794],{"name":4792,"slug":4793,"type":16},"PowerPoint","powerpoint",{"name":4795,"slug":4796,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":4799,"name":4799,"fn":4800,"description":4801,"org":4802,"tags":4803,"stars":4657,"repoUrl":4658,"updatedAt":4813},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4804,4805,4806,4809,4812],{"name":4560,"slug":4561,"type":16},{"name":4564,"slug":4565,"type":16},{"name":4807,"slug":4808,"type":16},"Evals","evals",{"name":4810,"slug":4811,"type":16},"Performance","performance",{"name":4711,"slug":4712,"type":16},"2026-04-19T06:45:40.804",490]