Help us improve
Share bugs, ideas, or general feedback.
From mcp-builder
Guides building MCP servers for LLMs to access external APIs/services via tools, covering design principles and implementation with Python (FastMCP) or Node/TypeScript SDKs.
npx claudepluginhub composiohq/awesome-claude-plugins --plugin mcp-builderHow this skill is triggered — by the user, by Claude, or both
Slash command
/mcp-builder:mcp-builderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
<!-- AUTO-GENERATED by export-plugins.py — DO NOT EDIT -->
Guides creation of high-quality MCP servers for LLM tool integration, covering agent-centric design, protocol docs, and Python/TypeScript SDKs.
Guides building high-quality MCP servers enabling LLMs to interact with external services via tools. Use for Python (FastMCP) or Node/TypeScript (MCP SDK) integrations.
Share bugs, ideas, or general feedback.
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.
Creating a high-quality MCP server involves four main phases:
Build for Workflows, Not Just API Endpoints:
schedule_event that both checks availability and creates event)Optimize for Limited Context:
Design Actionable Error Messages:
Fetch the latest MCP protocol documentation:
Use WebFetch to load: https://modelcontextprotocol.io/llms-full.txt
For Python implementations:
https://raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/README.mdFor Node/TypeScript implementations:
https://raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/README.mdFor Python:
.py file or organize into modules if complexFor Node/TypeScript:
package.json and tsconfig.jsonCreate shared utilities before implementing tools:
For each tool:
Define Input Schema:
Write Comprehensive Docstrings:
Add Tool Annotations:
readOnlyHint: true (for read-only operations)destructiveHint: false (for non-destructive operations)idempotentHint: true (if repeated calls have same effect)openWorldHint: true (if interacting with external systems)Review the code for:
Create comprehensive evaluations to test MCP server effectiveness.
Each evaluation question must be: