create-mcp-server
GitHub用于构建、迭代和评估 MCP 服务器,将外部服务封装为 LLM 可调用的工具。涵盖研究、架构设计、错误处理及通过 MCP Inspector 进行测试,确保工具描述和分页机制能有效支持模型推理与实际任务完成。
Trigger Scenarios
Install
npx skills add gsd-build/gsd-2 --skill create-mcp-server -g -y
SKILL.md
Frontmatter
{
"name": "create-mcp-server",
"description": "Build, iterate, and evaluate Model Context Protocol (MCP) servers that expose external services as tools an LLM can call. Use when asked to \"build an MCP server\", \"create an MCP tool\", \"wrap this API as MCP\", \"expose X to Claude\", or when extending GSD with custom tool integrations. Covers research, schema\/tool design, error handling, pagination, testing via MCP Inspector, and producing a 10-question eval set that proves the server actually enables real work."
}
Invocation points:
- User describes a service or API they want an LLM to reach
/gsd mcp initscaffolds config but there's a tool integration to build- Replacing a hand-rolled extension with a standard MCP server
<core_principle> THE QUALITY METRIC IS TASK COMPLETION, NOT SCHEMA VALIDITY. A server that lists 30 tools with cryptic names and empty descriptions passes the protocol but fails the point. The tool description is the only thing an LLM has to decide whether to call it — write it like documentation for a stranger under time pressure.
DESIGN FOR THE MODEL, NOT THE API. A raw REST endpoint is rarely the right tool. Group, filter, and pre-shape responses so the model gets what it needs to reason, not a 40KB JSON blob it has to summarize. Fewer, deeper tools beat many, shallow ones. </core_principle>
Step 1: Research and scope
- Study modern MCP design. Read the latest MCP protocol docs (not training data — fetch them). Read 2–3 reference implementations to see current patterns.
- Pick a framework. TypeScript is the default — the reference SDK is the most mature. Python is fine for data-heavy or ML adjacencies.
- Analyze the target API. Map the external service's endpoints, auth, rate limits, pagination, error shapes. Identify what a human workflow on top of it actually looks like — that's the cut line for tool design.
- Produce a brief. One page: what the server does, who calls it, the 5–10 tools you plan to expose, and the top 3 design trade-offs. Confirm with the user.
Step 2: Set up the project
Skeleton:
server/
src/
index.ts # MCP entry point — stdio or sse transport
client.ts # API client with auth, retries, typed errors
tools/ # one file per tool, or grouped by domain
pagination.ts # shared cursor handling
errors.ts # MCP-friendly error formatting
package.json # @modelcontextprotocol/sdk as dep
tsconfig.json
README.md # how to run, env vars, rate-limit notes
evals.xml # 10 eval questions (Phase 4)
Core infrastructure goes first: API client with typed errors, pagination helpers, consistent retry/timeout behavior. Do not inline these per tool.
Step 3: Implement tools
For each tool:
- Name: verb-noun, lowercase, snake_case.
search_issues,get_customer,create_deployment. Notdo_thingorapi_v2_post. - Description (frontmatter): 2–4 sentences. State what the tool does, when to use it, when NOT to use it, and any required fields or quirks. This is the model's entire interface to the tool — write it carefully.
- Input schema (JSON Schema): required fields marked, every field has a description, enums enumerated, examples included for free-form strings.
- Output shape: typed, minimal, decision-ready. If the raw API returns 40 fields and only 6 matter for follow-up calls, return 6.
- Error handling: never return raw HTTP errors. Translate to human-readable messages: "Rate limit exceeded (retry in 30s)", "Authorization expired", "No record found for ID X". Include the action the caller should take next.
- Pagination: expose cursors explicitly. Do not leak "page N of M" into the model — leak "more results available, pass
cursor: abc123to continue."
Step 4: Build and test with MCP Inspector
- Run the server under MCP Inspector. Verify it registers, every tool lists with its description, inputs schema-validate, outputs shape correctly.
- Call every tool at least once manually through the Inspector UI. Check error paths.
- Fix any "looks fine in isolation, breaks under the Inspector's framing" issues.
Step 5: Produce the eval set
Write 10 evaluation questions in evals.xml that exercise the server end-to-end. Each question should require 2+ tool calls and at least one decision the model has to make based on earlier output. Cover:
- Happy path (2–3 questions)
- Error recovery (2 questions — "the first call failed, what next?")
- Pagination (1 question)
- Decision under partial information (2–3 questions)
- Cross-tool composition (1–2 questions)
Format:
<evals>
<eval id="1">
<question>...user request...</question>
<expected>...concrete observable answer or tool-call sequence...</expected>
</eval>
</evals>
Run the evals. If the model can't complete them, the server — not the model — needs work. Iterate on descriptions, error messages, and tool granularity.
Step 6: Wire into GSD
Write the project's .mcp.json entry using /gsd mcp init as a starting point. Document env vars and startup in README.md. If the server is globally useful, suggest the user file it as a durable skill via spike-wrap-up or publish it.
<anti_patterns>
- One-to-one REST mapping. If the API has 30 endpoints, you likely want 6 tools.
- Empty or auto-generated descriptions. "Calls the /users endpoint" tells the model nothing it can reason with.
- Raw error passthrough.
{"error": "500"}is useless. Translate. - Page-based pagination leaked as "page 1 of 5". Use opaque cursors.
- Skipping the Inspector. If you didn't run it under the Inspector, you didn't test it.
- No evals. Without evals you have no signal on whether real task completion works.
</anti_patterns>
<success_criteria>
- Every tool has a description that could guide a cold-start model correctly.
- Errors are translated to actionable, human-readable messages.
- Pagination uses opaque cursors; no leaked page numbers.
-
evals.xmlhas 10 questions; the model completes ≥8 without handholding. - MCP Inspector test passes cleanly.
- README documents env, startup, and rate-limit behavior.
- Server is reachable from GSD via
.mcp.jsonentry.
</success_criteria>
Version History
- 33c00aa Current 2026-07-25 10:22


