[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-mcp-builder":3,"mdc--paqbl2-key":36,"related-repo-minimax-mcp-builder":1857,"related-org-minimax-mcp-builder":1970},{"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-builder","build MCP servers for external integrations","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},"minimax","MiniMax","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fminimax.jpg","MiniMax-AI",[13,17,20],{"name":14,"slug":15,"type":16},"MCP","mcp","tag",{"name":18,"slug":19,"type":16},"Agents","agents",{"name":21,"slug":22,"type":16},"API Development","api-development",2872,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMini-Agent","2026-07-13T06:17:18.339572","Complete terms in LICENSE.txt",421,[29,30,8],"agent","llm",{"repoUrl":24,"stars":23,"forks":27,"topics":32,"description":33},[29,30,8],"A minimal yet professional single agent demo project that showcases the core execution pipeline and production-grade features of agents.","https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMini-Agent\u002Ftree\u002FHEAD\u002Fmini_agent\u002Fskills\u002Fmcp-builder","---\nname: mcp-builder\ndescription: 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).\nlicense: Complete terms in LICENSE.txt\n---\n\n# MCP Server Development Guide\n\n## Overview\n\nTo create high-quality MCP (Model Context Protocol) servers that enable LLMs to effectively interact with external services, use this skill. An MCP server provides tools that allow LLMs to access external services and APIs. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks using the tools provided.\n\n---\n\n# Process\n\n## 🚀 High-Level Workflow\n\nCreating a high-quality MCP server involves four main phases:\n\n### Phase 1: Deep Research and Planning\n\n#### 1.1 Understand Agent-Centric Design Principles\n\nBefore diving into implementation, understand how to design tools for AI agents by reviewing these principles:\n\n**Build for Workflows, Not Just API Endpoints:**\n- Don't simply wrap existing API endpoints - build thoughtful, high-impact workflow tools\n- Consolidate related operations (e.g., `schedule_event` that both checks availability and creates event)\n- Focus on tools that enable complete tasks, not just individual API calls\n- Consider what workflows agents actually need to accomplish\n\n**Optimize for Limited Context:**\n- Agents have constrained context windows - make every token count\n- Return high-signal information, not exhaustive data dumps\n- Provide \"concise\" vs \"detailed\" response format options\n- Default to human-readable identifiers over technical codes (names over IDs)\n- Consider the agent's context budget as a scarce resource\n\n**Design Actionable Error Messages:**\n- Error messages should guide agents toward correct usage patterns\n- Suggest specific next steps: \"Try using filter='active_only' to reduce results\"\n- Make errors educational, not just diagnostic\n- Help agents learn proper tool usage through clear feedback\n\n**Follow Natural Task Subdivisions:**\n- Tool names should reflect how humans think about tasks\n- Group related tools with consistent prefixes for discoverability\n- Design tools around natural workflows, not just API structure\n\n**Use Evaluation-Driven Development:**\n- Create realistic evaluation scenarios early\n- Let agent feedback drive tool improvements\n- Prototype quickly and iterate based on actual agent performance\n\n#### 1.3 Study MCP Protocol Documentation\n\n**Fetch the latest MCP protocol documentation:**\n\nUse WebFetch to load: `https:\u002F\u002Fmodelcontextprotocol.io\u002Fllms-full.txt`\n\nThis comprehensive document contains the complete MCP specification and guidelines.\n\n#### 1.4 Study Framework Documentation\n\n**Load and read the following reference files:**\n\n- **MCP Best Practices**: [📋 View Best Practices](.\u002Freference\u002Fmcp_best_practices.md) - Core guidelines for all MCP servers\n\n**For Python implementations, also load:**\n- **Python SDK Documentation**: Use WebFetch to load `https:\u002F\u002Fraw.githubusercontent.com\u002Fmodelcontextprotocol\u002Fpython-sdk\u002Fmain\u002FREADME.md`\n- [🐍 Python Implementation Guide](.\u002Freference\u002Fpython_mcp_server.md) - Python-specific best practices and examples\n\n**For Node\u002FTypeScript implementations, also load:**\n- **TypeScript SDK Documentation**: Use WebFetch to load `https:\u002F\u002Fraw.githubusercontent.com\u002Fmodelcontextprotocol\u002Ftypescript-sdk\u002Fmain\u002FREADME.md`\n- [⚡ TypeScript Implementation Guide](.\u002Freference\u002Fnode_mcp_server.md) - Node\u002FTypeScript-specific best practices and examples\n\n#### 1.5 Exhaustively Study API Documentation\n\nTo integrate a service, read through **ALL** available API documentation:\n- Official API reference documentation\n- Authentication and authorization requirements\n- Rate limiting and pagination patterns\n- Error responses and status codes\n- Available endpoints and their parameters\n- Data models and schemas\n\n**To gather comprehensive information, use web search and the WebFetch tool as needed.**\n\n#### 1.6 Create a Comprehensive Implementation Plan\n\nBased on your research, create a detailed plan that includes:\n\n**Tool Selection:**\n- List the most valuable endpoints\u002Foperations to implement\n- Prioritize tools that enable the most common and important use cases\n- Consider which tools work together to enable complex workflows\n\n**Shared Utilities and Helpers:**\n- Identify common API request patterns\n- Plan pagination helpers\n- Design filtering and formatting utilities\n- Plan error handling strategies\n\n**Input\u002FOutput Design:**\n- Define input validation models (Pydantic for Python, Zod for TypeScript)\n- Design consistent response formats (e.g., JSON or Markdown), and configurable levels of detail (e.g., Detailed or Concise)\n- Plan for large-scale usage (thousands of users\u002Fresources)\n- Implement character limits and truncation strategies (e.g., 25,000 tokens)\n\n**Error Handling Strategy:**\n- Plan graceful failure modes\n- Design clear, actionable, LLM-friendly, natural language error messages which prompt further action\n- Consider rate limiting and timeout scenarios\n- Handle authentication and authorization errors\n\n---\n\n### Phase 2: Implementation\n\nNow that you have a comprehensive plan, begin implementation following language-specific best practices.\n\n#### 2.1 Set Up Project Structure\n\n**For Python:**\n- Create a single `.py` file or organize into modules if complex (see [🐍 Python Guide](.\u002Freference\u002Fpython_mcp_server.md))\n- Use the MCP Python SDK for tool registration\n- Define Pydantic models for input validation\n\n**For Node\u002FTypeScript:**\n- Create proper project structure (see [⚡ TypeScript Guide](.\u002Freference\u002Fnode_mcp_server.md))\n- Set up `package.json` and `tsconfig.json`\n- Use MCP TypeScript SDK\n- Define Zod schemas for input validation\n\n#### 2.2 Implement Core Infrastructure First\n\n**To begin implementation, create shared utilities before implementing tools:**\n- API request helper functions\n- Error handling utilities\n- Response formatting functions (JSON and Markdown)\n- Pagination helpers\n- Authentication\u002Ftoken management\n\n#### 2.3 Implement Tools Systematically\n\nFor each tool in the plan:\n\n**Define Input Schema:**\n- Use Pydantic (Python) or Zod (TypeScript) for validation\n- Include proper constraints (min\u002Fmax length, regex patterns, min\u002Fmax values, ranges)\n- Provide clear, descriptive field descriptions\n- Include diverse examples in field descriptions\n\n**Write Comprehensive Docstrings\u002FDescriptions:**\n- One-line summary of what the tool does\n- Detailed explanation of purpose and functionality\n- Explicit parameter types with examples\n- Complete return type schema\n- Usage examples (when to use, when not to use)\n- Error handling documentation, which outlines how to proceed given specific errors\n\n**Implement Tool Logic:**\n- Use shared utilities to avoid code duplication\n- Follow async\u002Fawait patterns for all I\u002FO\n- Implement proper error handling\n- Support multiple response formats (JSON and Markdown)\n- Respect pagination parameters\n- Check character limits and truncate appropriately\n\n**Add Tool Annotations:**\n- `readOnlyHint`: true (for read-only operations)\n- `destructiveHint`: false (for non-destructive operations)\n- `idempotentHint`: true (if repeated calls have same effect)\n- `openWorldHint`: true (if interacting with external systems)\n\n#### 2.4 Follow Language-Specific Best Practices\n\n**At this point, load the appropriate language guide:**\n\n**For Python: Load [🐍 Python Implementation Guide](.\u002Freference\u002Fpython_mcp_server.md) and ensure the following:**\n- Using MCP Python SDK with proper tool registration\n- Pydantic v2 models with `model_config`\n- Type hints throughout\n- Async\u002Fawait for all I\u002FO operations\n- Proper imports organization\n- Module-level constants (CHARACTER_LIMIT, API_BASE_URL)\n\n**For Node\u002FTypeScript: Load [⚡ TypeScript Implementation Guide](.\u002Freference\u002Fnode_mcp_server.md) and ensure the following:**\n- Using `server.registerTool` properly\n- Zod schemas with `.strict()`\n- TypeScript strict mode enabled\n- No `any` types - use proper types\n- Explicit Promise\u003CT> return types\n- Build process configured (`npm run build`)\n\n---\n\n### Phase 3: Review and Refine\n\nAfter initial implementation:\n\n#### 3.1 Code Quality Review\n\nTo ensure quality, review the code for:\n- **DRY Principle**: No duplicated code between tools\n- **Composability**: Shared logic extracted into functions\n- **Consistency**: Similar operations return similar formats\n- **Error Handling**: All external calls have error handling\n- **Type Safety**: Full type coverage (Python type hints, TypeScript types)\n- **Documentation**: Every tool has comprehensive docstrings\u002Fdescriptions\n\n#### 3.2 Test and Build\n\n**Important:** MCP servers are long-running processes that wait for requests over stdio\u002Fstdin or sse\u002Fhttp. Running them directly in your main process (e.g., `python server.py` or `node dist\u002Findex.js`) will cause your process to hang indefinitely.\n\n**Safe ways to test the server:**\n- Use the evaluation harness (see Phase 4) - recommended approach\n- Run the server in tmux to keep it outside your main process\n- Use a timeout when testing: `timeout 5s python server.py`\n\n**For Python:**\n- Verify Python syntax: `python -m py_compile your_server.py`\n- Check imports work correctly by reviewing the file\n- To manually test: Run server in tmux, then test with evaluation harness in main process\n- Or use the evaluation harness directly (it manages the server for stdio transport)\n\n**For Node\u002FTypeScript:**\n- Run `npm run build` and ensure it completes without errors\n- Verify dist\u002Findex.js is created\n- To manually test: Run server in tmux, then test with evaluation harness in main process\n- Or use the evaluation harness directly (it manages the server for stdio transport)\n\n#### 3.3 Use Quality Checklist\n\nTo verify implementation quality, load the appropriate checklist from the language-specific guide:\n- Python: see \"Quality Checklist\" in [🐍 Python Guide](.\u002Freference\u002Fpython_mcp_server.md)\n- Node\u002FTypeScript: see \"Quality Checklist\" in [⚡ TypeScript Guide](.\u002Freference\u002Fnode_mcp_server.md)\n\n---\n\n### Phase 4: Create Evaluations\n\nAfter implementing your MCP server, create comprehensive evaluations to test its effectiveness.\n\n**Load [✅ Evaluation Guide](.\u002Freference\u002Fevaluation.md) for complete evaluation guidelines.**\n\n#### 4.1 Understand Evaluation Purpose\n\nEvaluations test whether LLMs can effectively use your MCP server to answer realistic, complex questions.\n\n#### 4.2 Create 10 Evaluation Questions\n\nTo create effective evaluations, follow the process outlined in the evaluation guide:\n\n1. **Tool Inspection**: List available tools and understand their capabilities\n2. **Content Exploration**: Use READ-ONLY operations to explore available data\n3. **Question Generation**: Create 10 complex, realistic questions\n4. **Answer Verification**: Solve each question yourself to verify answers\n\n#### 4.3 Evaluation Requirements\n\nEach question must be:\n- **Independent**: Not dependent on other questions\n- **Read-only**: Only non-destructive operations required\n- **Complex**: Requiring multiple tool calls and deep exploration\n- **Realistic**: Based on real use cases humans would care about\n- **Verifiable**: Single, clear answer that can be verified by string comparison\n- **Stable**: Answer won't change over time\n\n#### 4.4 Output Format\n\nCreate an XML file with this structure:\n\n```xml\n\u003Cevaluation>\n  \u003Cqa_pair>\n    \u003Cquestion>Find discussions about AI model launches with animal codenames. One model needed a specific safety designation that uses the format ASL-X. What number X was being determined for the model named after a spotted wild cat?\u003C\u002Fquestion>\n    \u003Canswer>3\u003C\u002Fanswer>\n  \u003C\u002Fqa_pair>\n\u003C!-- More qa_pairs... -->\n\u003C\u002Fevaluation>\n```\n\n---\n\n# Reference Files\n\n## 📚 Documentation Library\n\nLoad these resources as needed during development:\n\n### Core MCP Documentation (Load First)\n- **MCP Protocol**: Fetch from `https:\u002F\u002Fmodelcontextprotocol.io\u002Fllms-full.txt` - Complete MCP specification\n- [📋 MCP Best Practices](.\u002Freference\u002Fmcp_best_practices.md) - Universal MCP guidelines including:\n  - Server and tool naming conventions\n  - Response format guidelines (JSON vs Markdown)\n  - Pagination best practices\n  - Character limits and truncation strategies\n  - Tool development guidelines\n  - Security and error handling standards\n\n### SDK Documentation (Load During Phase 1\u002F2)\n- **Python SDK**: Fetch from `https:\u002F\u002Fraw.githubusercontent.com\u002Fmodelcontextprotocol\u002Fpython-sdk\u002Fmain\u002FREADME.md`\n- **TypeScript SDK**: Fetch from `https:\u002F\u002Fraw.githubusercontent.com\u002Fmodelcontextprotocol\u002Ftypescript-sdk\u002Fmain\u002FREADME.md`\n\n### Language-Specific Implementation Guides (Load During Phase 2)\n- [🐍 Python Implementation Guide](.\u002Freference\u002Fpython_mcp_server.md) - Complete Python\u002FFastMCP guide with:\n  - Server initialization patterns\n  - Pydantic model examples\n  - Tool registration with `@mcp.tool`\n  - Complete working examples\n  - Quality checklist\n\n- [⚡ TypeScript Implementation Guide](.\u002Freference\u002Fnode_mcp_server.md) - Complete TypeScript guide with:\n  - Project structure\n  - Zod schema patterns\n  - Tool registration with `server.registerTool`\n  - Complete working examples\n  - Quality checklist\n\n### Evaluation Guide (Load During Phase 4)\n- [✅ Evaluation Guide](.\u002Freference\u002Fevaluation.md) - Complete evaluation creation guide with:\n  - Question creation guidelines\n  - Answer verification strategies\n  - XML format specifications\n  - Example questions and answers\n  - Running an evaluation with the provided scripts\n",{"data":37,"body":38},{"name":4,"description":6,"license":26},{"type":39,"children":40},"root",[41,50,57,63,67,73,79,84,91,98,103,112,146,154,182,190,213,221,239,247,265,271,279,290,295,301,309,331,339,369,377,406,412,424,457,465,471,476,484,502,510,533,541,564,572,595,598,604,609,615,623,656,664,707,713,721,749,755,760,768,791,799,832,840,873,881,928,934,942,956,995,1008,1076,1079,1085,1090,1096,1101,1164,1170,1196,1204,1228,1235,1264,1271,1299,1305,1310,1331,1334,1340,1345,1361,1367,1372,1378,1383,1427,1433,1438,1501,1507,1512,1588,1591,1597,1603,1608,1614,1677,1683,1714,1720,1805,1811,1851],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"mcp-server-development-guide",[47],{"type":48,"value":49},"text","MCP Server Development Guide",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"overview",[55],{"type":48,"value":56},"Overview",{"type":42,"tag":58,"props":59,"children":60},"p",{},[61],{"type":48,"value":62},"To create high-quality MCP (Model Context Protocol) servers that enable LLMs to effectively interact with external services, use this skill. An MCP server provides tools that allow LLMs to access external services and APIs. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks using the tools provided.",{"type":42,"tag":64,"props":65,"children":66},"hr",{},[],{"type":42,"tag":43,"props":68,"children":70},{"id":69},"process",[71],{"type":48,"value":72},"Process",{"type":42,"tag":51,"props":74,"children":76},{"id":75},"high-level-workflow",[77],{"type":48,"value":78},"🚀 High-Level Workflow",{"type":42,"tag":58,"props":80,"children":81},{},[82],{"type":48,"value":83},"Creating a high-quality MCP server involves four main phases:",{"type":42,"tag":85,"props":86,"children":88},"h3",{"id":87},"phase-1-deep-research-and-planning",[89],{"type":48,"value":90},"Phase 1: Deep Research and Planning",{"type":42,"tag":92,"props":93,"children":95},"h4",{"id":94},"_11-understand-agent-centric-design-principles",[96],{"type":48,"value":97},"1.1 Understand Agent-Centric Design Principles",{"type":42,"tag":58,"props":99,"children":100},{},[101],{"type":48,"value":102},"Before diving into implementation, understand how to design tools for AI agents by reviewing these principles:",{"type":42,"tag":58,"props":104,"children":105},{},[106],{"type":42,"tag":107,"props":108,"children":109},"strong",{},[110],{"type":48,"value":111},"Build for Workflows, Not Just API Endpoints:",{"type":42,"tag":113,"props":114,"children":115},"ul",{},[116,122,136,141],{"type":42,"tag":117,"props":118,"children":119},"li",{},[120],{"type":48,"value":121},"Don't simply wrap existing API endpoints - build thoughtful, high-impact workflow tools",{"type":42,"tag":117,"props":123,"children":124},{},[125,127,134],{"type":48,"value":126},"Consolidate related operations (e.g., ",{"type":42,"tag":128,"props":129,"children":131},"code",{"className":130},[],[132],{"type":48,"value":133},"schedule_event",{"type":48,"value":135}," that both checks availability and creates event)",{"type":42,"tag":117,"props":137,"children":138},{},[139],{"type":48,"value":140},"Focus on tools that enable complete tasks, not just individual API calls",{"type":42,"tag":117,"props":142,"children":143},{},[144],{"type":48,"value":145},"Consider what workflows agents actually need to accomplish",{"type":42,"tag":58,"props":147,"children":148},{},[149],{"type":42,"tag":107,"props":150,"children":151},{},[152],{"type":48,"value":153},"Optimize for Limited Context:",{"type":42,"tag":113,"props":155,"children":156},{},[157,162,167,172,177],{"type":42,"tag":117,"props":158,"children":159},{},[160],{"type":48,"value":161},"Agents have constrained context windows - make every token count",{"type":42,"tag":117,"props":163,"children":164},{},[165],{"type":48,"value":166},"Return high-signal information, not exhaustive data dumps",{"type":42,"tag":117,"props":168,"children":169},{},[170],{"type":48,"value":171},"Provide \"concise\" vs \"detailed\" response format options",{"type":42,"tag":117,"props":173,"children":174},{},[175],{"type":48,"value":176},"Default to human-readable identifiers over technical codes (names over IDs)",{"type":42,"tag":117,"props":178,"children":179},{},[180],{"type":48,"value":181},"Consider the agent's context budget as a scarce resource",{"type":42,"tag":58,"props":183,"children":184},{},[185],{"type":42,"tag":107,"props":186,"children":187},{},[188],{"type":48,"value":189},"Design Actionable Error Messages:",{"type":42,"tag":113,"props":191,"children":192},{},[193,198,203,208],{"type":42,"tag":117,"props":194,"children":195},{},[196],{"type":48,"value":197},"Error messages should guide agents toward correct usage patterns",{"type":42,"tag":117,"props":199,"children":200},{},[201],{"type":48,"value":202},"Suggest specific next steps: \"Try using filter='active_only' to reduce results\"",{"type":42,"tag":117,"props":204,"children":205},{},[206],{"type":48,"value":207},"Make errors educational, not just diagnostic",{"type":42,"tag":117,"props":209,"children":210},{},[211],{"type":48,"value":212},"Help agents learn proper tool usage through clear feedback",{"type":42,"tag":58,"props":214,"children":215},{},[216],{"type":42,"tag":107,"props":217,"children":218},{},[219],{"type":48,"value":220},"Follow Natural Task Subdivisions:",{"type":42,"tag":113,"props":222,"children":223},{},[224,229,234],{"type":42,"tag":117,"props":225,"children":226},{},[227],{"type":48,"value":228},"Tool names should reflect how humans think about tasks",{"type":42,"tag":117,"props":230,"children":231},{},[232],{"type":48,"value":233},"Group related tools with consistent prefixes for discoverability",{"type":42,"tag":117,"props":235,"children":236},{},[237],{"type":48,"value":238},"Design tools around natural workflows, not just API structure",{"type":42,"tag":58,"props":240,"children":241},{},[242],{"type":42,"tag":107,"props":243,"children":244},{},[245],{"type":48,"value":246},"Use Evaluation-Driven Development:",{"type":42,"tag":113,"props":248,"children":249},{},[250,255,260],{"type":42,"tag":117,"props":251,"children":252},{},[253],{"type":48,"value":254},"Create realistic evaluation scenarios early",{"type":42,"tag":117,"props":256,"children":257},{},[258],{"type":48,"value":259},"Let agent feedback drive tool improvements",{"type":42,"tag":117,"props":261,"children":262},{},[263],{"type":48,"value":264},"Prototype quickly and iterate based on actual agent performance",{"type":42,"tag":92,"props":266,"children":268},{"id":267},"_13-study-mcp-protocol-documentation",[269],{"type":48,"value":270},"1.3 Study MCP Protocol Documentation",{"type":42,"tag":58,"props":272,"children":273},{},[274],{"type":42,"tag":107,"props":275,"children":276},{},[277],{"type":48,"value":278},"Fetch the latest MCP protocol documentation:",{"type":42,"tag":58,"props":280,"children":281},{},[282,284],{"type":48,"value":283},"Use WebFetch to load: ",{"type":42,"tag":128,"props":285,"children":287},{"className":286},[],[288],{"type":48,"value":289},"https:\u002F\u002Fmodelcontextprotocol.io\u002Fllms-full.txt",{"type":42,"tag":58,"props":291,"children":292},{},[293],{"type":48,"value":294},"This comprehensive document contains the complete MCP specification and guidelines.",{"type":42,"tag":92,"props":296,"children":298},{"id":297},"_14-study-framework-documentation",[299],{"type":48,"value":300},"1.4 Study Framework Documentation",{"type":42,"tag":58,"props":302,"children":303},{},[304],{"type":42,"tag":107,"props":305,"children":306},{},[307],{"type":48,"value":308},"Load and read the following reference files:",{"type":42,"tag":113,"props":310,"children":311},{},[312],{"type":42,"tag":117,"props":313,"children":314},{},[315,320,322,329],{"type":42,"tag":107,"props":316,"children":317},{},[318],{"type":48,"value":319},"MCP Best Practices",{"type":48,"value":321},": ",{"type":42,"tag":323,"props":324,"children":326},"a",{"href":325},".\u002Freference\u002Fmcp_best_practices.md",[327],{"type":48,"value":328},"📋 View Best Practices",{"type":48,"value":330}," - Core guidelines for all MCP servers",{"type":42,"tag":58,"props":332,"children":333},{},[334],{"type":42,"tag":107,"props":335,"children":336},{},[337],{"type":48,"value":338},"For Python implementations, also load:",{"type":42,"tag":113,"props":340,"children":341},{},[342,358],{"type":42,"tag":117,"props":343,"children":344},{},[345,350,352],{"type":42,"tag":107,"props":346,"children":347},{},[348],{"type":48,"value":349},"Python SDK Documentation",{"type":48,"value":351},": Use WebFetch to load ",{"type":42,"tag":128,"props":353,"children":355},{"className":354},[],[356],{"type":48,"value":357},"https:\u002F\u002Fraw.githubusercontent.com\u002Fmodelcontextprotocol\u002Fpython-sdk\u002Fmain\u002FREADME.md",{"type":42,"tag":117,"props":359,"children":360},{},[361,367],{"type":42,"tag":323,"props":362,"children":364},{"href":363},".\u002Freference\u002Fpython_mcp_server.md",[365],{"type":48,"value":366},"🐍 Python Implementation Guide",{"type":48,"value":368}," - Python-specific best practices and examples",{"type":42,"tag":58,"props":370,"children":371},{},[372],{"type":42,"tag":107,"props":373,"children":374},{},[375],{"type":48,"value":376},"For Node\u002FTypeScript implementations, also load:",{"type":42,"tag":113,"props":378,"children":379},{},[380,395],{"type":42,"tag":117,"props":381,"children":382},{},[383,388,389],{"type":42,"tag":107,"props":384,"children":385},{},[386],{"type":48,"value":387},"TypeScript SDK Documentation",{"type":48,"value":351},{"type":42,"tag":128,"props":390,"children":392},{"className":391},[],[393],{"type":48,"value":394},"https:\u002F\u002Fraw.githubusercontent.com\u002Fmodelcontextprotocol\u002Ftypescript-sdk\u002Fmain\u002FREADME.md",{"type":42,"tag":117,"props":396,"children":397},{},[398,404],{"type":42,"tag":323,"props":399,"children":401},{"href":400},".\u002Freference\u002Fnode_mcp_server.md",[402],{"type":48,"value":403},"⚡ TypeScript Implementation Guide",{"type":48,"value":405}," - Node\u002FTypeScript-specific best practices and examples",{"type":42,"tag":92,"props":407,"children":409},{"id":408},"_15-exhaustively-study-api-documentation",[410],{"type":48,"value":411},"1.5 Exhaustively Study API Documentation",{"type":42,"tag":58,"props":413,"children":414},{},[415,417,422],{"type":48,"value":416},"To integrate a service, read through ",{"type":42,"tag":107,"props":418,"children":419},{},[420],{"type":48,"value":421},"ALL",{"type":48,"value":423}," available API documentation:",{"type":42,"tag":113,"props":425,"children":426},{},[427,432,437,442,447,452],{"type":42,"tag":117,"props":428,"children":429},{},[430],{"type":48,"value":431},"Official API reference documentation",{"type":42,"tag":117,"props":433,"children":434},{},[435],{"type":48,"value":436},"Authentication and authorization requirements",{"type":42,"tag":117,"props":438,"children":439},{},[440],{"type":48,"value":441},"Rate limiting and pagination patterns",{"type":42,"tag":117,"props":443,"children":444},{},[445],{"type":48,"value":446},"Error responses and status codes",{"type":42,"tag":117,"props":448,"children":449},{},[450],{"type":48,"value":451},"Available endpoints and their parameters",{"type":42,"tag":117,"props":453,"children":454},{},[455],{"type":48,"value":456},"Data models and schemas",{"type":42,"tag":58,"props":458,"children":459},{},[460],{"type":42,"tag":107,"props":461,"children":462},{},[463],{"type":48,"value":464},"To gather comprehensive information, use web search and the WebFetch tool as needed.",{"type":42,"tag":92,"props":466,"children":468},{"id":467},"_16-create-a-comprehensive-implementation-plan",[469],{"type":48,"value":470},"1.6 Create a Comprehensive Implementation Plan",{"type":42,"tag":58,"props":472,"children":473},{},[474],{"type":48,"value":475},"Based on your research, create a detailed plan that includes:",{"type":42,"tag":58,"props":477,"children":478},{},[479],{"type":42,"tag":107,"props":480,"children":481},{},[482],{"type":48,"value":483},"Tool Selection:",{"type":42,"tag":113,"props":485,"children":486},{},[487,492,497],{"type":42,"tag":117,"props":488,"children":489},{},[490],{"type":48,"value":491},"List the most valuable endpoints\u002Foperations to implement",{"type":42,"tag":117,"props":493,"children":494},{},[495],{"type":48,"value":496},"Prioritize tools that enable the most common and important use cases",{"type":42,"tag":117,"props":498,"children":499},{},[500],{"type":48,"value":501},"Consider which tools work together to enable complex workflows",{"type":42,"tag":58,"props":503,"children":504},{},[505],{"type":42,"tag":107,"props":506,"children":507},{},[508],{"type":48,"value":509},"Shared Utilities and Helpers:",{"type":42,"tag":113,"props":511,"children":512},{},[513,518,523,528],{"type":42,"tag":117,"props":514,"children":515},{},[516],{"type":48,"value":517},"Identify common API request patterns",{"type":42,"tag":117,"props":519,"children":520},{},[521],{"type":48,"value":522},"Plan pagination helpers",{"type":42,"tag":117,"props":524,"children":525},{},[526],{"type":48,"value":527},"Design filtering and formatting utilities",{"type":42,"tag":117,"props":529,"children":530},{},[531],{"type":48,"value":532},"Plan error handling strategies",{"type":42,"tag":58,"props":534,"children":535},{},[536],{"type":42,"tag":107,"props":537,"children":538},{},[539],{"type":48,"value":540},"Input\u002FOutput Design:",{"type":42,"tag":113,"props":542,"children":543},{},[544,549,554,559],{"type":42,"tag":117,"props":545,"children":546},{},[547],{"type":48,"value":548},"Define input validation models (Pydantic for Python, Zod for TypeScript)",{"type":42,"tag":117,"props":550,"children":551},{},[552],{"type":48,"value":553},"Design consistent response formats (e.g., JSON or Markdown), and configurable levels of detail (e.g., Detailed or Concise)",{"type":42,"tag":117,"props":555,"children":556},{},[557],{"type":48,"value":558},"Plan for large-scale usage (thousands of users\u002Fresources)",{"type":42,"tag":117,"props":560,"children":561},{},[562],{"type":48,"value":563},"Implement character limits and truncation strategies (e.g., 25,000 tokens)",{"type":42,"tag":58,"props":565,"children":566},{},[567],{"type":42,"tag":107,"props":568,"children":569},{},[570],{"type":48,"value":571},"Error Handling Strategy:",{"type":42,"tag":113,"props":573,"children":574},{},[575,580,585,590],{"type":42,"tag":117,"props":576,"children":577},{},[578],{"type":48,"value":579},"Plan graceful failure modes",{"type":42,"tag":117,"props":581,"children":582},{},[583],{"type":48,"value":584},"Design clear, actionable, LLM-friendly, natural language error messages which prompt further action",{"type":42,"tag":117,"props":586,"children":587},{},[588],{"type":48,"value":589},"Consider rate limiting and timeout scenarios",{"type":42,"tag":117,"props":591,"children":592},{},[593],{"type":48,"value":594},"Handle authentication and authorization errors",{"type":42,"tag":64,"props":596,"children":597},{},[],{"type":42,"tag":85,"props":599,"children":601},{"id":600},"phase-2-implementation",[602],{"type":48,"value":603},"Phase 2: Implementation",{"type":42,"tag":58,"props":605,"children":606},{},[607],{"type":48,"value":608},"Now that you have a comprehensive plan, begin implementation following language-specific best practices.",{"type":42,"tag":92,"props":610,"children":612},{"id":611},"_21-set-up-project-structure",[613],{"type":48,"value":614},"2.1 Set Up Project Structure",{"type":42,"tag":58,"props":616,"children":617},{},[618],{"type":42,"tag":107,"props":619,"children":620},{},[621],{"type":48,"value":622},"For Python:",{"type":42,"tag":113,"props":624,"children":625},{},[626,646,651],{"type":42,"tag":117,"props":627,"children":628},{},[629,631,637,639,644],{"type":48,"value":630},"Create a single ",{"type":42,"tag":128,"props":632,"children":634},{"className":633},[],[635],{"type":48,"value":636},".py",{"type":48,"value":638}," file or organize into modules if complex (see ",{"type":42,"tag":323,"props":640,"children":641},{"href":363},[642],{"type":48,"value":643},"🐍 Python Guide",{"type":48,"value":645},")",{"type":42,"tag":117,"props":647,"children":648},{},[649],{"type":48,"value":650},"Use the MCP Python SDK for tool registration",{"type":42,"tag":117,"props":652,"children":653},{},[654],{"type":48,"value":655},"Define Pydantic models for input validation",{"type":42,"tag":58,"props":657,"children":658},{},[659],{"type":42,"tag":107,"props":660,"children":661},{},[662],{"type":48,"value":663},"For Node\u002FTypeScript:",{"type":42,"tag":113,"props":665,"children":666},{},[667,678,697,702],{"type":42,"tag":117,"props":668,"children":669},{},[670,672,677],{"type":48,"value":671},"Create proper project structure (see ",{"type":42,"tag":323,"props":673,"children":674},{"href":400},[675],{"type":48,"value":676},"⚡ TypeScript Guide",{"type":48,"value":645},{"type":42,"tag":117,"props":679,"children":680},{},[681,683,689,691],{"type":48,"value":682},"Set up ",{"type":42,"tag":128,"props":684,"children":686},{"className":685},[],[687],{"type":48,"value":688},"package.json",{"type":48,"value":690}," and ",{"type":42,"tag":128,"props":692,"children":694},{"className":693},[],[695],{"type":48,"value":696},"tsconfig.json",{"type":42,"tag":117,"props":698,"children":699},{},[700],{"type":48,"value":701},"Use MCP TypeScript SDK",{"type":42,"tag":117,"props":703,"children":704},{},[705],{"type":48,"value":706},"Define Zod schemas for input validation",{"type":42,"tag":92,"props":708,"children":710},{"id":709},"_22-implement-core-infrastructure-first",[711],{"type":48,"value":712},"2.2 Implement Core Infrastructure First",{"type":42,"tag":58,"props":714,"children":715},{},[716],{"type":42,"tag":107,"props":717,"children":718},{},[719],{"type":48,"value":720},"To begin implementation, create shared utilities before implementing tools:",{"type":42,"tag":113,"props":722,"children":723},{},[724,729,734,739,744],{"type":42,"tag":117,"props":725,"children":726},{},[727],{"type":48,"value":728},"API request helper functions",{"type":42,"tag":117,"props":730,"children":731},{},[732],{"type":48,"value":733},"Error handling utilities",{"type":42,"tag":117,"props":735,"children":736},{},[737],{"type":48,"value":738},"Response formatting functions (JSON and Markdown)",{"type":42,"tag":117,"props":740,"children":741},{},[742],{"type":48,"value":743},"Pagination helpers",{"type":42,"tag":117,"props":745,"children":746},{},[747],{"type":48,"value":748},"Authentication\u002Ftoken management",{"type":42,"tag":92,"props":750,"children":752},{"id":751},"_23-implement-tools-systematically",[753],{"type":48,"value":754},"2.3 Implement Tools Systematically",{"type":42,"tag":58,"props":756,"children":757},{},[758],{"type":48,"value":759},"For each tool in the plan:",{"type":42,"tag":58,"props":761,"children":762},{},[763],{"type":42,"tag":107,"props":764,"children":765},{},[766],{"type":48,"value":767},"Define Input Schema:",{"type":42,"tag":113,"props":769,"children":770},{},[771,776,781,786],{"type":42,"tag":117,"props":772,"children":773},{},[774],{"type":48,"value":775},"Use Pydantic (Python) or Zod (TypeScript) for validation",{"type":42,"tag":117,"props":777,"children":778},{},[779],{"type":48,"value":780},"Include proper constraints (min\u002Fmax length, regex patterns, min\u002Fmax values, ranges)",{"type":42,"tag":117,"props":782,"children":783},{},[784],{"type":48,"value":785},"Provide clear, descriptive field descriptions",{"type":42,"tag":117,"props":787,"children":788},{},[789],{"type":48,"value":790},"Include diverse examples in field descriptions",{"type":42,"tag":58,"props":792,"children":793},{},[794],{"type":42,"tag":107,"props":795,"children":796},{},[797],{"type":48,"value":798},"Write Comprehensive Docstrings\u002FDescriptions:",{"type":42,"tag":113,"props":800,"children":801},{},[802,807,812,817,822,827],{"type":42,"tag":117,"props":803,"children":804},{},[805],{"type":48,"value":806},"One-line summary of what the tool does",{"type":42,"tag":117,"props":808,"children":809},{},[810],{"type":48,"value":811},"Detailed explanation of purpose and functionality",{"type":42,"tag":117,"props":813,"children":814},{},[815],{"type":48,"value":816},"Explicit parameter types with examples",{"type":42,"tag":117,"props":818,"children":819},{},[820],{"type":48,"value":821},"Complete return type schema",{"type":42,"tag":117,"props":823,"children":824},{},[825],{"type":48,"value":826},"Usage examples (when to use, when not to use)",{"type":42,"tag":117,"props":828,"children":829},{},[830],{"type":48,"value":831},"Error handling documentation, which outlines how to proceed given specific errors",{"type":42,"tag":58,"props":833,"children":834},{},[835],{"type":42,"tag":107,"props":836,"children":837},{},[838],{"type":48,"value":839},"Implement Tool Logic:",{"type":42,"tag":113,"props":841,"children":842},{},[843,848,853,858,863,868],{"type":42,"tag":117,"props":844,"children":845},{},[846],{"type":48,"value":847},"Use shared utilities to avoid code duplication",{"type":42,"tag":117,"props":849,"children":850},{},[851],{"type":48,"value":852},"Follow async\u002Fawait patterns for all I\u002FO",{"type":42,"tag":117,"props":854,"children":855},{},[856],{"type":48,"value":857},"Implement proper error handling",{"type":42,"tag":117,"props":859,"children":860},{},[861],{"type":48,"value":862},"Support multiple response formats (JSON and Markdown)",{"type":42,"tag":117,"props":864,"children":865},{},[866],{"type":48,"value":867},"Respect pagination parameters",{"type":42,"tag":117,"props":869,"children":870},{},[871],{"type":48,"value":872},"Check character limits and truncate appropriately",{"type":42,"tag":58,"props":874,"children":875},{},[876],{"type":42,"tag":107,"props":877,"children":878},{},[879],{"type":48,"value":880},"Add Tool Annotations:",{"type":42,"tag":113,"props":882,"children":883},{},[884,895,906,917],{"type":42,"tag":117,"props":885,"children":886},{},[887,893],{"type":42,"tag":128,"props":888,"children":890},{"className":889},[],[891],{"type":48,"value":892},"readOnlyHint",{"type":48,"value":894},": true (for read-only operations)",{"type":42,"tag":117,"props":896,"children":897},{},[898,904],{"type":42,"tag":128,"props":899,"children":901},{"className":900},[],[902],{"type":48,"value":903},"destructiveHint",{"type":48,"value":905},": false (for non-destructive operations)",{"type":42,"tag":117,"props":907,"children":908},{},[909,915],{"type":42,"tag":128,"props":910,"children":912},{"className":911},[],[913],{"type":48,"value":914},"idempotentHint",{"type":48,"value":916},": true (if repeated calls have same effect)",{"type":42,"tag":117,"props":918,"children":919},{},[920,926],{"type":42,"tag":128,"props":921,"children":923},{"className":922},[],[924],{"type":48,"value":925},"openWorldHint",{"type":48,"value":927},": true (if interacting with external systems)",{"type":42,"tag":92,"props":929,"children":931},{"id":930},"_24-follow-language-specific-best-practices",[932],{"type":48,"value":933},"2.4 Follow Language-Specific Best Practices",{"type":42,"tag":58,"props":935,"children":936},{},[937],{"type":42,"tag":107,"props":938,"children":939},{},[940],{"type":48,"value":941},"At this point, load the appropriate language guide:",{"type":42,"tag":58,"props":943,"children":944},{},[945],{"type":42,"tag":107,"props":946,"children":947},{},[948,950,954],{"type":48,"value":949},"For Python: Load ",{"type":42,"tag":323,"props":951,"children":952},{"href":363},[953],{"type":48,"value":366},{"type":48,"value":955}," and ensure the following:",{"type":42,"tag":113,"props":957,"children":958},{},[959,964,975,980,985,990],{"type":42,"tag":117,"props":960,"children":961},{},[962],{"type":48,"value":963},"Using MCP Python SDK with proper tool registration",{"type":42,"tag":117,"props":965,"children":966},{},[967,969],{"type":48,"value":968},"Pydantic v2 models with ",{"type":42,"tag":128,"props":970,"children":972},{"className":971},[],[973],{"type":48,"value":974},"model_config",{"type":42,"tag":117,"props":976,"children":977},{},[978],{"type":48,"value":979},"Type hints throughout",{"type":42,"tag":117,"props":981,"children":982},{},[983],{"type":48,"value":984},"Async\u002Fawait for all I\u002FO operations",{"type":42,"tag":117,"props":986,"children":987},{},[988],{"type":48,"value":989},"Proper imports organization",{"type":42,"tag":117,"props":991,"children":992},{},[993],{"type":48,"value":994},"Module-level constants (CHARACTER_LIMIT, API_BASE_URL)",{"type":42,"tag":58,"props":996,"children":997},{},[998],{"type":42,"tag":107,"props":999,"children":1000},{},[1001,1003,1007],{"type":48,"value":1002},"For Node\u002FTypeScript: Load ",{"type":42,"tag":323,"props":1004,"children":1005},{"href":400},[1006],{"type":48,"value":403},{"type":48,"value":955},{"type":42,"tag":113,"props":1009,"children":1010},{},[1011,1024,1035,1040,1053,1064],{"type":42,"tag":117,"props":1012,"children":1013},{},[1014,1016,1022],{"type":48,"value":1015},"Using ",{"type":42,"tag":128,"props":1017,"children":1019},{"className":1018},[],[1020],{"type":48,"value":1021},"server.registerTool",{"type":48,"value":1023}," properly",{"type":42,"tag":117,"props":1025,"children":1026},{},[1027,1029],{"type":48,"value":1028},"Zod schemas with ",{"type":42,"tag":128,"props":1030,"children":1032},{"className":1031},[],[1033],{"type":48,"value":1034},".strict()",{"type":42,"tag":117,"props":1036,"children":1037},{},[1038],{"type":48,"value":1039},"TypeScript strict mode enabled",{"type":42,"tag":117,"props":1041,"children":1042},{},[1043,1045,1051],{"type":48,"value":1044},"No ",{"type":42,"tag":128,"props":1046,"children":1048},{"className":1047},[],[1049],{"type":48,"value":1050},"any",{"type":48,"value":1052}," types - use proper types",{"type":42,"tag":117,"props":1054,"children":1055},{},[1056,1058],{"type":48,"value":1057},"Explicit Promise",{"type":42,"tag":1059,"props":1060,"children":1061},"t",{},[1062],{"type":48,"value":1063}," return types",{"type":42,"tag":117,"props":1065,"children":1066},{},[1067,1069,1075],{"type":48,"value":1068},"Build process configured (",{"type":42,"tag":128,"props":1070,"children":1072},{"className":1071},[],[1073],{"type":48,"value":1074},"npm run build",{"type":48,"value":645},{"type":42,"tag":64,"props":1077,"children":1078},{},[],{"type":42,"tag":85,"props":1080,"children":1082},{"id":1081},"phase-3-review-and-refine",[1083],{"type":48,"value":1084},"Phase 3: Review and Refine",{"type":42,"tag":58,"props":1086,"children":1087},{},[1088],{"type":48,"value":1089},"After initial implementation:",{"type":42,"tag":92,"props":1091,"children":1093},{"id":1092},"_31-code-quality-review",[1094],{"type":48,"value":1095},"3.1 Code Quality Review",{"type":42,"tag":58,"props":1097,"children":1098},{},[1099],{"type":48,"value":1100},"To ensure quality, review the code for:",{"type":42,"tag":113,"props":1102,"children":1103},{},[1104,1114,1124,1134,1144,1154],{"type":42,"tag":117,"props":1105,"children":1106},{},[1107,1112],{"type":42,"tag":107,"props":1108,"children":1109},{},[1110],{"type":48,"value":1111},"DRY Principle",{"type":48,"value":1113},": No duplicated code between tools",{"type":42,"tag":117,"props":1115,"children":1116},{},[1117,1122],{"type":42,"tag":107,"props":1118,"children":1119},{},[1120],{"type":48,"value":1121},"Composability",{"type":48,"value":1123},": Shared logic extracted into functions",{"type":42,"tag":117,"props":1125,"children":1126},{},[1127,1132],{"type":42,"tag":107,"props":1128,"children":1129},{},[1130],{"type":48,"value":1131},"Consistency",{"type":48,"value":1133},": Similar operations return similar formats",{"type":42,"tag":117,"props":1135,"children":1136},{},[1137,1142],{"type":42,"tag":107,"props":1138,"children":1139},{},[1140],{"type":48,"value":1141},"Error Handling",{"type":48,"value":1143},": All external calls have error handling",{"type":42,"tag":117,"props":1145,"children":1146},{},[1147,1152],{"type":42,"tag":107,"props":1148,"children":1149},{},[1150],{"type":48,"value":1151},"Type Safety",{"type":48,"value":1153},": Full type coverage (Python type hints, TypeScript types)",{"type":42,"tag":117,"props":1155,"children":1156},{},[1157,1162],{"type":42,"tag":107,"props":1158,"children":1159},{},[1160],{"type":48,"value":1161},"Documentation",{"type":48,"value":1163},": Every tool has comprehensive docstrings\u002Fdescriptions",{"type":42,"tag":92,"props":1165,"children":1167},{"id":1166},"_32-test-and-build",[1168],{"type":48,"value":1169},"3.2 Test and Build",{"type":42,"tag":58,"props":1171,"children":1172},{},[1173,1178,1180,1186,1188,1194],{"type":42,"tag":107,"props":1174,"children":1175},{},[1176],{"type":48,"value":1177},"Important:",{"type":48,"value":1179}," MCP servers are long-running processes that wait for requests over stdio\u002Fstdin or sse\u002Fhttp. Running them directly in your main process (e.g., ",{"type":42,"tag":128,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":48,"value":1185},"python server.py",{"type":48,"value":1187}," or ",{"type":42,"tag":128,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":48,"value":1193},"node dist\u002Findex.js",{"type":48,"value":1195},") will cause your process to hang indefinitely.",{"type":42,"tag":58,"props":1197,"children":1198},{},[1199],{"type":42,"tag":107,"props":1200,"children":1201},{},[1202],{"type":48,"value":1203},"Safe ways to test the server:",{"type":42,"tag":113,"props":1205,"children":1206},{},[1207,1212,1217],{"type":42,"tag":117,"props":1208,"children":1209},{},[1210],{"type":48,"value":1211},"Use the evaluation harness (see Phase 4) - recommended approach",{"type":42,"tag":117,"props":1213,"children":1214},{},[1215],{"type":48,"value":1216},"Run the server in tmux to keep it outside your main process",{"type":42,"tag":117,"props":1218,"children":1219},{},[1220,1222],{"type":48,"value":1221},"Use a timeout when testing: ",{"type":42,"tag":128,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":48,"value":1227},"timeout 5s python server.py",{"type":42,"tag":58,"props":1229,"children":1230},{},[1231],{"type":42,"tag":107,"props":1232,"children":1233},{},[1234],{"type":48,"value":622},{"type":42,"tag":113,"props":1236,"children":1237},{},[1238,1249,1254,1259],{"type":42,"tag":117,"props":1239,"children":1240},{},[1241,1243],{"type":48,"value":1242},"Verify Python syntax: ",{"type":42,"tag":128,"props":1244,"children":1246},{"className":1245},[],[1247],{"type":48,"value":1248},"python -m py_compile your_server.py",{"type":42,"tag":117,"props":1250,"children":1251},{},[1252],{"type":48,"value":1253},"Check imports work correctly by reviewing the file",{"type":42,"tag":117,"props":1255,"children":1256},{},[1257],{"type":48,"value":1258},"To manually test: Run server in tmux, then test with evaluation harness in main process",{"type":42,"tag":117,"props":1260,"children":1261},{},[1262],{"type":48,"value":1263},"Or use the evaluation harness directly (it manages the server for stdio transport)",{"type":42,"tag":58,"props":1265,"children":1266},{},[1267],{"type":42,"tag":107,"props":1268,"children":1269},{},[1270],{"type":48,"value":663},{"type":42,"tag":113,"props":1272,"children":1273},{},[1274,1286,1291,1295],{"type":42,"tag":117,"props":1275,"children":1276},{},[1277,1279,1284],{"type":48,"value":1278},"Run ",{"type":42,"tag":128,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":48,"value":1074},{"type":48,"value":1285}," and ensure it completes without errors",{"type":42,"tag":117,"props":1287,"children":1288},{},[1289],{"type":48,"value":1290},"Verify dist\u002Findex.js is created",{"type":42,"tag":117,"props":1292,"children":1293},{},[1294],{"type":48,"value":1258},{"type":42,"tag":117,"props":1296,"children":1297},{},[1298],{"type":48,"value":1263},{"type":42,"tag":92,"props":1300,"children":1302},{"id":1301},"_33-use-quality-checklist",[1303],{"type":48,"value":1304},"3.3 Use Quality Checklist",{"type":42,"tag":58,"props":1306,"children":1307},{},[1308],{"type":48,"value":1309},"To verify implementation quality, load the appropriate checklist from the language-specific guide:",{"type":42,"tag":113,"props":1311,"children":1312},{},[1313,1322],{"type":42,"tag":117,"props":1314,"children":1315},{},[1316,1318],{"type":48,"value":1317},"Python: see \"Quality Checklist\" in ",{"type":42,"tag":323,"props":1319,"children":1320},{"href":363},[1321],{"type":48,"value":643},{"type":42,"tag":117,"props":1323,"children":1324},{},[1325,1327],{"type":48,"value":1326},"Node\u002FTypeScript: see \"Quality Checklist\" in ",{"type":42,"tag":323,"props":1328,"children":1329},{"href":400},[1330],{"type":48,"value":676},{"type":42,"tag":64,"props":1332,"children":1333},{},[],{"type":42,"tag":85,"props":1335,"children":1337},{"id":1336},"phase-4-create-evaluations",[1338],{"type":48,"value":1339},"Phase 4: Create Evaluations",{"type":42,"tag":58,"props":1341,"children":1342},{},[1343],{"type":48,"value":1344},"After implementing your MCP server, create comprehensive evaluations to test its effectiveness.",{"type":42,"tag":58,"props":1346,"children":1347},{},[1348],{"type":42,"tag":107,"props":1349,"children":1350},{},[1351,1353,1359],{"type":48,"value":1352},"Load ",{"type":42,"tag":323,"props":1354,"children":1356},{"href":1355},".\u002Freference\u002Fevaluation.md",[1357],{"type":48,"value":1358},"✅ Evaluation Guide",{"type":48,"value":1360}," for complete evaluation guidelines.",{"type":42,"tag":92,"props":1362,"children":1364},{"id":1363},"_41-understand-evaluation-purpose",[1365],{"type":48,"value":1366},"4.1 Understand Evaluation Purpose",{"type":42,"tag":58,"props":1368,"children":1369},{},[1370],{"type":48,"value":1371},"Evaluations test whether LLMs can effectively use your MCP server to answer realistic, complex questions.",{"type":42,"tag":92,"props":1373,"children":1375},{"id":1374},"_42-create-10-evaluation-questions",[1376],{"type":48,"value":1377},"4.2 Create 10 Evaluation Questions",{"type":42,"tag":58,"props":1379,"children":1380},{},[1381],{"type":48,"value":1382},"To create effective evaluations, follow the process outlined in the evaluation guide:",{"type":42,"tag":1384,"props":1385,"children":1386},"ol",{},[1387,1397,1407,1417],{"type":42,"tag":117,"props":1388,"children":1389},{},[1390,1395],{"type":42,"tag":107,"props":1391,"children":1392},{},[1393],{"type":48,"value":1394},"Tool Inspection",{"type":48,"value":1396},": List available tools and understand their capabilities",{"type":42,"tag":117,"props":1398,"children":1399},{},[1400,1405],{"type":42,"tag":107,"props":1401,"children":1402},{},[1403],{"type":48,"value":1404},"Content Exploration",{"type":48,"value":1406},": Use READ-ONLY operations to explore available data",{"type":42,"tag":117,"props":1408,"children":1409},{},[1410,1415],{"type":42,"tag":107,"props":1411,"children":1412},{},[1413],{"type":48,"value":1414},"Question Generation",{"type":48,"value":1416},": Create 10 complex, realistic questions",{"type":42,"tag":117,"props":1418,"children":1419},{},[1420,1425],{"type":42,"tag":107,"props":1421,"children":1422},{},[1423],{"type":48,"value":1424},"Answer Verification",{"type":48,"value":1426},": Solve each question yourself to verify answers",{"type":42,"tag":92,"props":1428,"children":1430},{"id":1429},"_43-evaluation-requirements",[1431],{"type":48,"value":1432},"4.3 Evaluation Requirements",{"type":42,"tag":58,"props":1434,"children":1435},{},[1436],{"type":48,"value":1437},"Each question must be:",{"type":42,"tag":113,"props":1439,"children":1440},{},[1441,1451,1461,1471,1481,1491],{"type":42,"tag":117,"props":1442,"children":1443},{},[1444,1449],{"type":42,"tag":107,"props":1445,"children":1446},{},[1447],{"type":48,"value":1448},"Independent",{"type":48,"value":1450},": Not dependent on other questions",{"type":42,"tag":117,"props":1452,"children":1453},{},[1454,1459],{"type":42,"tag":107,"props":1455,"children":1456},{},[1457],{"type":48,"value":1458},"Read-only",{"type":48,"value":1460},": Only non-destructive operations required",{"type":42,"tag":117,"props":1462,"children":1463},{},[1464,1469],{"type":42,"tag":107,"props":1465,"children":1466},{},[1467],{"type":48,"value":1468},"Complex",{"type":48,"value":1470},": Requiring multiple tool calls and deep exploration",{"type":42,"tag":117,"props":1472,"children":1473},{},[1474,1479],{"type":42,"tag":107,"props":1475,"children":1476},{},[1477],{"type":48,"value":1478},"Realistic",{"type":48,"value":1480},": Based on real use cases humans would care about",{"type":42,"tag":117,"props":1482,"children":1483},{},[1484,1489],{"type":42,"tag":107,"props":1485,"children":1486},{},[1487],{"type":48,"value":1488},"Verifiable",{"type":48,"value":1490},": Single, clear answer that can be verified by string comparison",{"type":42,"tag":117,"props":1492,"children":1493},{},[1494,1499],{"type":42,"tag":107,"props":1495,"children":1496},{},[1497],{"type":48,"value":1498},"Stable",{"type":48,"value":1500},": Answer won't change over time",{"type":42,"tag":92,"props":1502,"children":1504},{"id":1503},"_44-output-format",[1505],{"type":48,"value":1506},"4.4 Output Format",{"type":42,"tag":58,"props":1508,"children":1509},{},[1510],{"type":48,"value":1511},"Create an XML file with this structure:",{"type":42,"tag":1513,"props":1514,"children":1519},"pre",{"className":1515,"code":1516,"language":1517,"meta":1518,"style":1518},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cevaluation>\n  \u003Cqa_pair>\n    \u003Cquestion>Find discussions about AI model launches with animal codenames. One model needed a specific safety designation that uses the format ASL-X. What number X was being determined for the model named after a spotted wild cat?\u003C\u002Fquestion>\n    \u003Canswer>3\u003C\u002Fanswer>\n  \u003C\u002Fqa_pair>\n\u003C!-- More qa_pairs... -->\n\u003C\u002Fevaluation>\n","xml","",[1520],{"type":42,"tag":128,"props":1521,"children":1522},{"__ignoreMap":1518},[1523,1534,1543,1552,1561,1570,1579],{"type":42,"tag":1524,"props":1525,"children":1528},"span",{"class":1526,"line":1527},"line",1,[1529],{"type":42,"tag":1524,"props":1530,"children":1531},{},[1532],{"type":48,"value":1533},"\u003Cevaluation>\n",{"type":42,"tag":1524,"props":1535,"children":1537},{"class":1526,"line":1536},2,[1538],{"type":42,"tag":1524,"props":1539,"children":1540},{},[1541],{"type":48,"value":1542},"  \u003Cqa_pair>\n",{"type":42,"tag":1524,"props":1544,"children":1546},{"class":1526,"line":1545},3,[1547],{"type":42,"tag":1524,"props":1548,"children":1549},{},[1550],{"type":48,"value":1551},"    \u003Cquestion>Find discussions about AI model launches with animal codenames. One model needed a specific safety designation that uses the format ASL-X. What number X was being determined for the model named after a spotted wild cat?\u003C\u002Fquestion>\n",{"type":42,"tag":1524,"props":1553,"children":1555},{"class":1526,"line":1554},4,[1556],{"type":42,"tag":1524,"props":1557,"children":1558},{},[1559],{"type":48,"value":1560},"    \u003Canswer>3\u003C\u002Fanswer>\n",{"type":42,"tag":1524,"props":1562,"children":1564},{"class":1526,"line":1563},5,[1565],{"type":42,"tag":1524,"props":1566,"children":1567},{},[1568],{"type":48,"value":1569},"  \u003C\u002Fqa_pair>\n",{"type":42,"tag":1524,"props":1571,"children":1573},{"class":1526,"line":1572},6,[1574],{"type":42,"tag":1524,"props":1575,"children":1576},{},[1577],{"type":48,"value":1578},"\u003C!-- More qa_pairs... -->\n",{"type":42,"tag":1524,"props":1580,"children":1582},{"class":1526,"line":1581},7,[1583],{"type":42,"tag":1524,"props":1584,"children":1585},{},[1586],{"type":48,"value":1587},"\u003C\u002Fevaluation>\n",{"type":42,"tag":64,"props":1589,"children":1590},{},[],{"type":42,"tag":43,"props":1592,"children":1594},{"id":1593},"reference-files",[1595],{"type":48,"value":1596},"Reference Files",{"type":42,"tag":51,"props":1598,"children":1600},{"id":1599},"documentation-library",[1601],{"type":48,"value":1602},"📚 Documentation Library",{"type":42,"tag":58,"props":1604,"children":1605},{},[1606],{"type":48,"value":1607},"Load these resources as needed during development:",{"type":42,"tag":85,"props":1609,"children":1611},{"id":1610},"core-mcp-documentation-load-first",[1612],{"type":48,"value":1613},"Core MCP Documentation (Load First)",{"type":42,"tag":113,"props":1615,"children":1616},{},[1617,1634],{"type":42,"tag":117,"props":1618,"children":1619},{},[1620,1625,1627,1632],{"type":42,"tag":107,"props":1621,"children":1622},{},[1623],{"type":48,"value":1624},"MCP Protocol",{"type":48,"value":1626},": Fetch from ",{"type":42,"tag":128,"props":1628,"children":1630},{"className":1629},[],[1631],{"type":48,"value":289},{"type":48,"value":1633}," - Complete MCP specification",{"type":42,"tag":117,"props":1635,"children":1636},{},[1637,1642,1644],{"type":42,"tag":323,"props":1638,"children":1639},{"href":325},[1640],{"type":48,"value":1641},"📋 MCP Best Practices",{"type":48,"value":1643}," - Universal MCP guidelines including:\n",{"type":42,"tag":113,"props":1645,"children":1646},{},[1647,1652,1657,1662,1667,1672],{"type":42,"tag":117,"props":1648,"children":1649},{},[1650],{"type":48,"value":1651},"Server and tool naming conventions",{"type":42,"tag":117,"props":1653,"children":1654},{},[1655],{"type":48,"value":1656},"Response format guidelines (JSON vs Markdown)",{"type":42,"tag":117,"props":1658,"children":1659},{},[1660],{"type":48,"value":1661},"Pagination best practices",{"type":42,"tag":117,"props":1663,"children":1664},{},[1665],{"type":48,"value":1666},"Character limits and truncation strategies",{"type":42,"tag":117,"props":1668,"children":1669},{},[1670],{"type":48,"value":1671},"Tool development guidelines",{"type":42,"tag":117,"props":1673,"children":1674},{},[1675],{"type":48,"value":1676},"Security and error handling standards",{"type":42,"tag":85,"props":1678,"children":1680},{"id":1679},"sdk-documentation-load-during-phase-12",[1681],{"type":48,"value":1682},"SDK Documentation (Load During Phase 1\u002F2)",{"type":42,"tag":113,"props":1684,"children":1685},{},[1686,1700],{"type":42,"tag":117,"props":1687,"children":1688},{},[1689,1694,1695],{"type":42,"tag":107,"props":1690,"children":1691},{},[1692],{"type":48,"value":1693},"Python SDK",{"type":48,"value":1626},{"type":42,"tag":128,"props":1696,"children":1698},{"className":1697},[],[1699],{"type":48,"value":357},{"type":42,"tag":117,"props":1701,"children":1702},{},[1703,1708,1709],{"type":42,"tag":107,"props":1704,"children":1705},{},[1706],{"type":48,"value":1707},"TypeScript SDK",{"type":48,"value":1626},{"type":42,"tag":128,"props":1710,"children":1712},{"className":1711},[],[1713],{"type":48,"value":394},{"type":42,"tag":85,"props":1715,"children":1717},{"id":1716},"language-specific-implementation-guides-load-during-phase-2",[1718],{"type":48,"value":1719},"Language-Specific Implementation Guides (Load During Phase 2)",{"type":42,"tag":113,"props":1721,"children":1722},{},[1723,1766],{"type":42,"tag":117,"props":1724,"children":1725},{},[1726,1730,1732],{"type":42,"tag":323,"props":1727,"children":1728},{"href":363},[1729],{"type":48,"value":366},{"type":48,"value":1731}," - Complete Python\u002FFastMCP guide with:",{"type":42,"tag":113,"props":1733,"children":1734},{},[1735,1740,1745,1756,1761],{"type":42,"tag":117,"props":1736,"children":1737},{},[1738],{"type":48,"value":1739},"Server initialization patterns",{"type":42,"tag":117,"props":1741,"children":1742},{},[1743],{"type":48,"value":1744},"Pydantic model examples",{"type":42,"tag":117,"props":1746,"children":1747},{},[1748,1750],{"type":48,"value":1749},"Tool registration with ",{"type":42,"tag":128,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":48,"value":1755},"@mcp.tool",{"type":42,"tag":117,"props":1757,"children":1758},{},[1759],{"type":48,"value":1760},"Complete working examples",{"type":42,"tag":117,"props":1762,"children":1763},{},[1764],{"type":48,"value":1765},"Quality checklist",{"type":42,"tag":117,"props":1767,"children":1768},{},[1769,1773,1775],{"type":42,"tag":323,"props":1770,"children":1771},{"href":400},[1772],{"type":48,"value":403},{"type":48,"value":1774}," - Complete TypeScript guide with:",{"type":42,"tag":113,"props":1776,"children":1777},{},[1778,1783,1788,1797,1801],{"type":42,"tag":117,"props":1779,"children":1780},{},[1781],{"type":48,"value":1782},"Project structure",{"type":42,"tag":117,"props":1784,"children":1785},{},[1786],{"type":48,"value":1787},"Zod schema patterns",{"type":42,"tag":117,"props":1789,"children":1790},{},[1791,1792],{"type":48,"value":1749},{"type":42,"tag":128,"props":1793,"children":1795},{"className":1794},[],[1796],{"type":48,"value":1021},{"type":42,"tag":117,"props":1798,"children":1799},{},[1800],{"type":48,"value":1760},{"type":42,"tag":117,"props":1802,"children":1803},{},[1804],{"type":48,"value":1765},{"type":42,"tag":85,"props":1806,"children":1808},{"id":1807},"evaluation-guide-load-during-phase-4",[1809],{"type":48,"value":1810},"Evaluation Guide (Load During Phase 4)",{"type":42,"tag":113,"props":1812,"children":1813},{},[1814],{"type":42,"tag":117,"props":1815,"children":1816},{},[1817,1821,1823],{"type":42,"tag":323,"props":1818,"children":1819},{"href":1355},[1820],{"type":48,"value":1358},{"type":48,"value":1822}," - Complete evaluation creation guide with:\n",{"type":42,"tag":113,"props":1824,"children":1825},{},[1826,1831,1836,1841,1846],{"type":42,"tag":117,"props":1827,"children":1828},{},[1829],{"type":48,"value":1830},"Question creation guidelines",{"type":42,"tag":117,"props":1832,"children":1833},{},[1834],{"type":48,"value":1835},"Answer verification strategies",{"type":42,"tag":117,"props":1837,"children":1838},{},[1839],{"type":48,"value":1840},"XML format specifications",{"type":42,"tag":117,"props":1842,"children":1843},{},[1844],{"type":48,"value":1845},"Example questions and answers",{"type":42,"tag":117,"props":1847,"children":1848},{},[1849],{"type":48,"value":1850},"Running an evaluation with the provided scripts",{"type":42,"tag":1852,"props":1853,"children":1854},"style",{},[1855],{"type":48,"value":1856},"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":1858,"total":1969},[1859,1878,1900,1914,1929,1947,1963],{"slug":1860,"name":1860,"fn":1861,"description":1862,"org":1863,"tags":1864,"stars":23,"repoUrl":24,"updatedAt":1877},"algorithmic-art","generate 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},[1865,1868,1871,1874],{"name":1866,"slug":1867,"type":16},"Creative","creative",{"name":1869,"slug":1870,"type":16},"Design","design",{"name":1872,"slug":1873,"type":16},"Generative Art","generative-art",{"name":1875,"slug":1876,"type":16},"Graphics","graphics","2026-07-16T06:02:02.834983",{"slug":1879,"name":1879,"fn":1880,"description":1881,"org":1882,"tags":1883,"stars":23,"repoUrl":24,"updatedAt":1899},"artifacts-builder","build complex React HTML artifacts","Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn\u002Fui). Use for complex artifacts requiring state management, routing, or shadcn\u002Fui components - not for simple single-file HTML\u002FJSX artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1884,1887,1890,1893,1896],{"name":1885,"slug":1886,"type":16},"Frontend","frontend",{"name":1888,"slug":1889,"type":16},"HTML","html",{"name":1891,"slug":1892,"type":16},"React","react",{"name":1894,"slug":1895,"type":16},"shadcn\u002Fui","shadcn-ui",{"name":1897,"slug":1898,"type":16},"Tailwind CSS","tailwind-css","2026-07-13T06:17:37.887194",{"slug":1901,"name":1901,"fn":1902,"description":1903,"org":1904,"tags":1905,"stars":23,"repoUrl":24,"updatedAt":1913},"brand-guidelines","apply brand guidelines to documents","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},[1906,1909,1910],{"name":1907,"slug":1908,"type":16},"Branding","branding",{"name":1869,"slug":1870,"type":16},{"name":1911,"slug":1912,"type":16},"Typography","typography","2026-07-13T06:17:36.624966",{"slug":1915,"name":1915,"fn":1916,"description":1917,"org":1918,"tags":1919,"stars":23,"repoUrl":24,"updatedAt":1928},"canvas-design","create visual art and design documents","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},[1920,1921,1922,1925],{"name":1866,"slug":1867,"type":16},{"name":1869,"slug":1870,"type":16},{"name":1923,"slug":1924,"type":16},"Images","images",{"name":1926,"slug":1927,"type":16},"PDF","pdf","2026-07-16T06:01:59.313156",{"slug":1930,"name":1930,"fn":1931,"description":1932,"org":1933,"tags":1934,"stars":23,"repoUrl":24,"updatedAt":1946},"docx","create and edit Word documents","Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1935,1938,1940,1943],{"name":1936,"slug":1937,"type":16},"Documents","documents",{"name":1939,"slug":1930,"type":16},"DOCX",{"name":1941,"slug":1942,"type":16},"Office","office",{"name":1944,"slug":1945,"type":16},"Word","word","2026-07-13T06:17:51.582447",{"slug":1948,"name":1948,"fn":1949,"description":1950,"org":1951,"tags":1952,"stars":23,"repoUrl":24,"updatedAt":1962},"internal-comms","draft 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},[1953,1956,1959],{"name":1954,"slug":1955,"type":16},"Communications","communications",{"name":1957,"slug":1958,"type":16},"Operations","operations",{"name":1960,"slug":1961,"type":16},"Writing","writing","2026-07-13T06:17:28.861835",{"slug":4,"name":4,"fn":5,"description":6,"org":1964,"tags":1965,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1966,1967,1968],{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},15,{"items":1971,"total":2154},[1972,1996,2008,2023,2038,2058,2074,2092,2105,2121,2134,2144],{"slug":1973,"name":1973,"fn":1974,"description":1975,"org":1976,"tags":1977,"stars":1993,"repoUrl":1994,"updatedAt":1995},"android-native-dev","develop Android native applications","Android native application development and UI design guide. Covers Material Design 3, Kotlin\u002FCompose development, project configuration, accessibility, and build troubleshooting. Read this before Android native application development.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1978,1981,1984,1987,1990],{"name":1979,"slug":1980,"type":16},"Accessibility","accessibility",{"name":1982,"slug":1983,"type":16},"Android","android",{"name":1985,"slug":1986,"type":16},"Kotlin","kotlin",{"name":1988,"slug":1989,"type":16},"Mobile","mobile",{"name":1991,"slug":1992,"type":16},"UI Components","ui-components",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:54.247834",{"slug":1997,"name":1997,"fn":1998,"description":1999,"org":2000,"tags":2001,"stars":1993,"repoUrl":1994,"updatedAt":2007},"buddy-sings","generate singing performances for AI companions","Use when user wants their Claude Code pet (\u002Fbuddy) to sing a song. Triggers on any request that combines the concept of their Claude Code buddy, pet, or companion with singing or music. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2002,2003,2006],{"name":18,"slug":19,"type":16},{"name":2004,"slug":2005,"type":16},"Audio","audio",{"name":1866,"slug":1867,"type":16},"2026-07-13T06:16:35.130644",{"slug":2009,"name":2009,"fn":2010,"description":2011,"org":2012,"tags":2013,"stars":1993,"repoUrl":1994,"updatedAt":2022},"color-font-skill","select color palettes and font pairings","Choose presentation-ready color palettes and font pairings for PPT\u002Fdesign tasks. Use when users ask for visual theme choices, brand-safe palettes, or font recommendations. Triggers include: 配色, 色板, 字体, color palette, font, PPT配色, 字体搭配.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2014,2015,2018,2021],{"name":1869,"slug":1870,"type":16},{"name":2016,"slug":2017,"type":16},"Presentations","presentations",{"name":2019,"slug":2020,"type":16},"Themes","themes",{"name":1911,"slug":1912,"type":16},"2026-07-13T06:17:02.785587",{"slug":2024,"name":2024,"fn":2025,"description":2026,"org":2027,"tags":2028,"stars":1993,"repoUrl":1994,"updatedAt":2037},"design-style-skill","select visual design systems for presentations","Select a consistent visual design system for PPT slides using radius\u002Fspacing style recipes. Use when users ask for overall style direction or component styling consistency. Includes Sharp\u002FSoft\u002FRounded\u002FPill recipes, component mappings, typography\u002Fspacing rules, and mixing guidance. Triggers: 风格, style, radius, spacing, 圆角, 间距, PPT风格, 视觉风格, design style, component style.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2029,2030,2033,2036],{"name":1869,"slug":1870,"type":16},{"name":2031,"slug":2032,"type":16},"Design System","design-system",{"name":2034,"slug":2035,"type":16},"PowerPoint","powerpoint",{"name":2016,"slug":2017,"type":16},"2026-07-13T06:17:10.398389",{"slug":2039,"name":2039,"fn":2040,"description":2041,"org":2042,"tags":2043,"stars":1993,"repoUrl":1994,"updatedAt":2057},"flutter-dev","build cross-platform apps with Flutter","Flutter cross-platform development guide covering widget patterns, Riverpod\u002FBloc state management, GoRouter navigation, performance optimization, and platform-specific implementations. Includes const optimization, responsive layouts, testing strategies, and DevTools profiling.\nUse when: building Flutter apps, implementing state management (Riverpod\u002FBloc), setting up GoRouter navigation, creating custom widgets, optimizing performance, writing widget tests, cross-platform development.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2044,2047,2050,2051,2054],{"name":2045,"slug":2046,"type":16},"Dart","dart",{"name":2048,"slug":2049,"type":16},"Flutter","flutter",{"name":1988,"slug":1989,"type":16},{"name":2052,"slug":2053,"type":16},"Performance","performance",{"name":2055,"slug":2056,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":2059,"name":2059,"fn":2060,"description":2061,"org":2062,"tags":2063,"stars":1993,"repoUrl":1994,"updatedAt":2073},"frontend-dev","build visually striking frontend web pages","Full-stack frontend development combining premium UI design, cinematic animations,\nAI-generated media assets, persuasive copywriting, and visual art. Builds complete,\nvisually striking web pages with real media, advanced motion, and compelling copy.\nUse when: building landing pages, marketing sites, product pages, dashboards,\ngenerating media assets (image\u002Fvideo\u002Faudio\u002Fmusic), writing conversion copy,\ncreating generative art, or implementing cinematic scroll animations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2064,2067,2068,2069,2070],{"name":2065,"slug":2066,"type":16},"Animation","animation",{"name":1866,"slug":1867,"type":16},{"name":1869,"slug":1870,"type":16},{"name":1885,"slug":1886,"type":16},{"name":2071,"slug":2072,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":2075,"name":2075,"fn":2076,"description":2077,"org":2078,"tags":2079,"stars":1993,"repoUrl":1994,"updatedAt":2091},"fullstack-dev","build full-stack web applications","Full-stack backend architecture and frontend-backend integration guide.\nTRIGGER when: building a full-stack app, creating REST API with frontend, scaffolding backend service,\nbuilding todo app, building CRUD app, building real-time app, building chat app,\nExpress + React, Next.js API, Node.js backend, Python backend, Go backend,\ndesigning service layers, implementing error handling, managing config\u002Fauth,\nsetting up API clients, implementing auth flows, handling file uploads,\nadding real-time features (SSE\u002FWebSocket), hardening for production.\nDO NOT TRIGGER when: pure frontend UI work, pure CSS\u002Fstyling, database schema only.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2080,2083,2084,2087,2090],{"name":2081,"slug":2082,"type":16},"Backend","backend",{"name":1885,"slug":1886,"type":16},{"name":2085,"slug":2086,"type":16},"Full-stack","full-stack",{"name":2088,"slug":2089,"type":16},"REST API","rest-api",{"name":2071,"slug":2072,"type":16},"2026-07-13T06:16:43.219005",{"slug":2093,"name":2093,"fn":2094,"description":2095,"org":2096,"tags":2097,"stars":1993,"repoUrl":1994,"updatedAt":2104},"gif-sticker-maker","create animated GIF stickers from photos","Convert photos (people, pets, objects, logos) into 4 animated GIF stickers with captions.\nUse when: user wants to create cartoon stickers, GIF expressions, emoji packs, animated avatars,\nor convert photos to Funko Pop \u002F Pop Mart blind box style animations.\nTriggers: sticker, GIF, cartoon, emoji, expression pack, avatar animation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2098,2099,2100,2101],{"name":2065,"slug":2066,"type":16},{"name":1866,"slug":1867,"type":16},{"name":1923,"slug":1924,"type":16},{"name":2102,"slug":2103,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":2106,"name":2106,"fn":2107,"description":2108,"org":2109,"tags":2110,"stars":1993,"repoUrl":1994,"updatedAt":2120},"ios-application-dev","develop iOS applications with SwiftUI and UIKit","iOS application development guide covering UIKit, SnapKit, and SwiftUI. Includes touch targets, safe areas, navigation patterns, Dynamic Type, Dark Mode, accessibility, collection views, common UI components, and SwiftUI design guidelines. For detailed references on specific topics, see the reference files.\nUse when: developing iOS apps, implementing UI, reviewing iOS code, working with UIKit\u002FSnapKit\u002FSwiftUI layouts, building iPhone interfaces, Swift mobile development, Apple HIG compliance, iOS accessibility implementation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2111,2112,2115,2116,2119],{"name":1979,"slug":1980,"type":16},{"name":2113,"slug":2114,"type":16},"iOS","ios",{"name":1988,"slug":1989,"type":16},{"name":2117,"slug":2118,"type":16},"SwiftUI","swiftui",{"name":1991,"slug":1992,"type":16},"2026-07-13T06:16:55.686092",{"slug":2122,"name":2122,"fn":2123,"description":2124,"org":2125,"tags":2126,"stars":1993,"repoUrl":1994,"updatedAt":2133},"minimax-docx","create and edit DOCX documents","Professional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pipelines: (A) create new documents from scratch, (B) fill\u002Fedit content in existing documents, (C) apply template formatting with XSD validation gate-check. MUST use this skill whenever the user wants to produce, modify, or format a Word document — including when they say \"write a report\", \"draft a proposal\", \"make a contract\", \"fill in this form\", \"reformat to match this template\", or any task whose final output is a .docx file. Even if the user doesn't mention \"docx\" explicitly, if the task implies a printable\u002Fformal document, use this skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2127,2128,2129,2130],{"name":1936,"slug":1937,"type":16},{"name":1939,"slug":1930,"type":16},{"name":1941,"slug":1942,"type":16},{"name":2131,"slug":2132,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":2135,"name":2135,"fn":2136,"description":2137,"org":2138,"tags":2139,"stars":1993,"repoUrl":1994,"updatedAt":2143},"minimax-music-gen","generate music and audio tracks","Use when user wants to generate music, songs, or audio tracks. Triggers on any request involving music creation, song writing, lyrics generation, audio production, or covers. Also triggers when user provides lyrics and wants them turned into a song, or describes a mood\u002Fscene and wants background music. Supports multilingual triggers — match equivalent phrases in any language. Do NOT use for music playback of existing files, music theory questions, or music recommendation without generation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2140,2141,2142],{"name":2004,"slug":2005,"type":16},{"name":1866,"slug":1867,"type":16},{"name":2102,"slug":2103,"type":16},"2026-07-13T06:16:50.381758",{"slug":2145,"name":2145,"fn":2146,"description":2147,"org":2148,"tags":2149,"stars":1993,"repoUrl":1994,"updatedAt":2153},"minimax-music-playlist","generate personalized music playlists","Generate personalized music playlists by analyzing the user's music taste and generation feedback history. Triggers on any request involving playlist generation, music taste profiling, or personalized music recommendations. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2150,2151,2152],{"name":2004,"slug":2005,"type":16},{"name":1866,"slug":1867,"type":16},{"name":2102,"slug":2103,"type":16},"2026-07-13T06:16:57.002997",37]