build-mcp-server
The build-mcp-server skill guides developers through designing and building Model Context Protocol servers for Claude by conducting structured discovery before implementation. It determines the appropriate deployment model (remote HTTP, MCPB, or local stdio), identifies the correct tool-design pattern, and helps select authentication and UI approaches based on use case specifics. Use this when a user wants to create an MCP server, wrap an API for Claude, or expose tools through the Model Context Protocol.
git clone --depth 1 https://github.com/anthropics/claude-plugins-official /tmp/build-mcp-server && cp -r /tmp/build-mcp-server/plugins/mcp-server-dev/skills/build-mcp-server ~/.claude/skills/build-mcp-serverSKILL.md
# Build an MCP Server You are guiding a developer through designing and building an MCP server that works seamlessly with Claude. MCP servers come in many forms — picking the wrong shape early causes painful rewrites later. Your first job is **discovery, not code**. **Load Claude-specific context first.** The MCP spec is generic; Claude has additional auth types, review criteria, and limits. Before answering questions or scaffolding, fetch `https://claude.com/docs/llms-full.txt` (the full export of the Claude connector docs) so your guidance reflects Claude's actual constraints. Do not start scaffolding until you have answers to the questions in Phase 1. If the user's opening message already answers them, acknowledge that and skip straight to the recommendation. --- ## Phase 1 — Interrogate the use case Ask these questions conversationally (batch them into one message, don't interrogate one-at-a-time). Adapt wording to what the user has already told you. ### 1. What does it connect to? | If it connects to… | Likely direction | |---|---| | A cloud API (SaaS, REST, GraphQL) | Remote HTTP server | | A local process, filesystem, or desktop app | MCPB or local stdio | | Hardware, OS-level APIs, or user-specific state | MCPB | | Nothing external — pure logic / computation | Either — default to remote | ### 2. Who will use it? - **Just me / my team, on our machines** → Local stdio is acceptable (easiest to prototype) - **Anyone who installs it** → Remote HTTP (strongly preferred) or MCPB (if it *must* be local) - **Users of Claude desktop who want UI widgets** → MCP app (remote or MCPB) ### 3. How many distinct actions does it expose? This determines the tool-design pattern — see Phase 3. - **Under ~15 actions** → one tool per action - **Dozens to hundreds of actions** (e.g. wrapping a large API surface) → search + execute pattern ### 4. Does a tool need mid-call user input or rich display? - **Simple structured input** (pick from list, enter a value, confirm) → **Elicitation** — spec-native, zero UI code. *Host support is rolling out* (Claude Code ≥2.1.76) — always pair with a capability check and fallback. See `references/elicitation.md`. - **Rich/visual UI** (charts, custom pickers with search, live dashboards) → **MCP app widgets** — iframe-based, needs `@modelcontextprotocol/ext-apps`. See `build-mcp-app` skill. - **Neither** → plain tool returning text/JSON. ### 5. What auth does the upstream service use? - None / API key → straightforward - OAuth 2.0 → you'll need a remote server with CIMD (preferred) or DCR support; see `references/auth.md` --- ## Phase 2 — Recommend a deployment model Based on the answers, recommend **one** path. Be opinionated. The ranked options: ### ⭐ Remote streamable-HTTP MCP server (default recommendation) A hosted service speaking MCP over streamable HTTP. This is the **recommended path** for anything wrapping a cloud API. **Why it wins:** - Zero install friction — users add a URL, done - One deployment serves all users; you control upgrades - OAuth flows work properly (the server can handle redirects, DCR, token storage) - Works across Claude desktop, Claude Code, Claude.ai, and third-party MCP hosts **Choose this unless** the server *must* touch the user's local machine. → **Fastest deploy:** Cloudflare Workers — `references/deploy-cloudflare-workers.md` (zero to live URL in two commands) → **Portable Node/Python:** `references/remote-http-scaffold.md` (Express or FastMCP, runs on any host) ### Elicitation (structured input, no UI build) If a tool just needs the user to confirm, pick an option, or fill a short form, **elicitation** does it with zero UI code. The server sends a flat JSON schema; the host renders a native form. Spec-native, no extra packages. **Caveat:** Host support is new (Claude Code shipped it in v2.1.76; Desktop unconfirmed). The SDK throws if the client doesn't advertise the capability. Always check `clientCapabilities.elicitation` first and have a fallback — see `references/elicitation.md` for the canonical pattern. This is the right spec-correct approach; host coverage will catch up. Escalate to `build-mcp-app` widgets when you need: nested/complex data, scrollable/searchable lists, visual previews, live updates. ### MCP app (remote HTTP + interactive UI) Same as above, plus **UI resources** — interactive widgets rendered in chat. Rich pickers with search, charts, live dashboards, visual previews. Built once, renders in Claude *and* ChatGPT. **Choose this when** elicitation's flat-form constraints don't fit — you need custom layout, large searchable lists, visual content, or live updates. Usually remote, but can be shipped as MCPB if the UI needs to drive a local app. → Hand off to the **`build-mcp-app`** skill. ### MCPB (bundled local server) A local MCP server **packaged with its runtime** so users don't need Node/Python installed. The sanctioned way to ship local servers. **Choose this when** the server *must* run on the user's machine — it reads local files, drives a desktop app, talks to localhost services, or needs OS-level access. → Hand off to the **`build-mcpb`** skill. ### Local stdio (npx / uvx) — *not recommended for distribution* A script launched via `npx` / `uvx` on the user's machine. Fine for **personal tools and prototypes**. Painful to distribute: users need the right runtime, you can't push updates, and the only distribution channel is Claude Code plugins. Recommend this only as a stepping stone. If the user insists, scaffold it but note the MCPB upgrade path. --- ## Phase 3 — Pick a tool-design pattern Every MCP server exposes tools. How you carve them matters more than most people expect — tool schemas land directly in Claude's context window. ### Pattern A: One tool per action (small surface) When the action space is small (< ~15 operations), give each a dedicated tool with a tight description and schema. ``` create_issue — Create a new issue. Params: title, body,
Manage Telegram channel access — approve pairings, edit allowlists, set DM/group policy. Use when the user asks to pair, approve someone, check who's allowed, or change policy for the Telegram channel.
Set up the Telegram channel — save the bot token and review access policy. Use when the user pastes a Telegram bot token, asks to configure Telegram, asks "how do I set this up" or "who can reach me," or wants to check channel status.
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.
Audit and improve CLAUDE.md files in repositories. Use when user asks to check, audit, update, improve, or fix CLAUDE.md files. Scans for all CLAUDE.md files, evaluates quality against templates, outputs quality report, then makes targeted updates. Also use when the user mentions "CLAUDE.md maintenance" or "project memory optimization".
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 /maker-setup.
End-to-end onboarding for a freshly-plugged-in M5Stack ESP32 device (Cardputer, Cardputer-Adv, Core, CoreS3, Stick) — detect on USB, flash UIFlow 2.0 firmware, and install the Claude Buddy MicroPython app bundle. Use whenever the user plugs in or wants to flash/provision/reset an M5Stack or ESP32 board, or says "m5-onboard go".
An example user-invoked skill that demonstrates frontmatter options and the skills/<name>/SKILL.md layout
This skill should be used when the user asks to "demonstrate skills", "show skill format", "create a skill template", or discusses skill development patterns. Provides a reference template for creating Claude Code plugin skills.