event4u-app/agent-config

mcp-builder

Use when building an MCP server in Python (FastMCP) or Node/TypeScript (MCP SDK) — agent-centric tool design, input schemas, error handling, and the 10-question evaluation harness.

91Collecting
See how to use itView GitHub source
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/mcp-builder"

Quick start

Start using it in three steps

Install it or open the source, trigger it with a clear task, then follow the source workflow.

1

Install the Skill

npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/mcp-builder"
2

Describe the task

Use mcp-builder to help me with: [describe your task]. Before you begin, tell me what input you need, the steps you will follow, and the expected output.

3

Follow the workflow

No structured workflow was detected; follow the original SKILL.md below.

Continue to the workflow

Direct answers

Answers to review before you install

What is mcp-builder?

Use when building an MCP server in Python (FastMCP) or Node/TypeScript (MCP SDK) — agent-centric tool design, input schemas, error handling, and the 10-question evaluation harness.

Who should use mcp-builder?

It is relevant to workflows involving Testing, Engineering, Design, Research.

How do you install mcp-builder?

SkillSignal detected this source-specific command: npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/mcp-builder". Inspect the repository and command before running it.

Which Agent platforms does it support?

The upstream source does not declare a dedicated Agent platform.

What permissions or risks should you review?

No obvious permission action was detected by the static rules. This is not proof that the Skill is safe.

What are the current evidence limits?

This page combines upstream documentation with deterministic repository, quality, and static-risk signals. It is not described as a manual test or security review.

SkillSignal brief

Decide whether it fits your work first

Use when building an MCP server in Python (FastMCP) or Node/TypeScript (MCP SDK) — agent-centric tool design, input schemas, error handling, and the 10-question evaluation harness.

Useful in these contexts

Not yet included in a workflow collection

Core capabilities

TestingEngineeringDesignResearchPython

Distilled from the source

Understand this Skill in one minute

About 5 min · 9 sections

When it is worth using

  1. Wrapping an external API or service as MCP tools for an LLM client.

  2. Adding tools to an existing MCP server (Python FastMCP or TypeScript SDK).

  3. Reviewing an MCP server before shipping — Phase 4 evaluation gate below.

  4. You only need to call an MCP server — route to mcp.

Examples and typical usage

  1. The server source plus the 10-question evaluation XML.

  2. A README with: install, env vars, transport mode (stdio / sse / http), example tool call.

  3. A line in agents/settings/contexts/skills-provenance.yml if the server was forked from an upstream, or a note that it was authored from scratch.

Repository stars
7
Repository forks
1
Quality
91/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

91/100
Documentation26/30
Specificity25/25
Maintenance20/20
Trust signals20/25

Compare before choosing

Related Agent Skills and source variants

These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.

mcp-builder by anthropics

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/TypeScript (MCP SDK).

ab-testing by coreyhaines31

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

design-review by event4u-app

Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.

browser-qa by affaan-m

Use this skill to automate visual testing and UI interaction verification using browser automation after deploying features.

conversion-flow-cro by MoizIbnYousaf

Optimizes multi-step conversion flows including signup, onboarding, upgrade, and checkout. Maps each step, identifies friction and drop-off risks, then recommends specific copy/UX changes with A/B test plans. Use when someone says 'signup flow', 'onboarding optimization', 'checkout conversion', 'paywall optimization', 'activation rate', 'funnel analysis', 'why are users dropping off', 'registration flow', 'trial conversion', 'free to paid', 'upgrade flow', 'user journey', or wants to improve any

View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 5 min

mcp-builder

Author MCP servers that LLMs can drive end-to-end. The quality bar is can the agent finish the workflow, not does the endpoint return 200. This skill is the server-author counterpart to the existing mcp consumer skill.

When to use

  • Wrapping an external API or service as MCP tools for an LLM client.
  • Adding tools to an existing MCP server (Python FastMCP or TypeScript SDK).
  • Reviewing an MCP server before shipping — Phase 4 evaluation gate below.

Do NOT use when:

  • You only need to call an MCP server — route to mcp.
  • The integration belongs in the host process — write a regular service, not an MCP server.
  • The "server" wraps one endpoint with no workflow — a CLI wrapper is enough.

Procedure: Four phases, one tool at a time

Phase 1 — Research & plan

  1. Agent-centric design. Tools encode workflows, not raw endpoints. Consolidate (schedule_event checks availability and creates the event). Default to human-readable names over IDs. Errors are educational, not just diagnostic ("retry with filter='active_only' to reduce results").
  2. Load the protocol. Fetch https://modelcontextprotocol.io/llms-full.txt once into context — the canonical spec.
  3. Load the SDK README for the chosen language:
    • Python: https://raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/README.md
    • TypeScript: https://raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/README.md
  4. Read the target service's API docs in full — auth, rate limits, pagination, error codes, schemas. Skipping this produces incomplete mocks (see testing-anti-patterns § Anti-Pattern 4).
  5. Write the plan: tool list with priority, shared utilities (request helper, pagination, formatter), input/output schemas, error strategy, response-detail levels (concise vs detailed), character limits (default 25 000 tokens).

Phase 2 — Implement

  1. Project layout. Python: single .py or modular package; Pydantic v2 with model_config. TypeScript: standard package.json + tsconfig.json strict mode; Zod schemas with .strict().
  2. Shared utilities first. API request helper with retry/timeout, error formatter, JSON-vs-Markdown response builder, pagination cursor handling, auth/token cache.
  3. Per tool:
    • Input schema (Pydantic / Zod) with constraints, descriptions, and examples.
    • One-line summary + detailed docstring covering purpose, parameters, return shape, when-to-use, when-NOT-to-use, error handling.
    • Tool annotations: readOnlyHint, destructiveHint, idempotentHint, openWorldHint.
    • Async/await for all I/O. Honor pagination. Truncate to the character limit and signal truncation in the response.

Phase 3 — Review & test

  1. Code-quality pass: DRY across tools, shared helpers extracted, consistent response shapes, all external calls have error handling, full type coverage.
  2. Build & syntax:
    • Python: python -m py_compile server.py.
    • TypeScript: npm run build; verify dist/index.js.
  3. Run the server safely. MCP servers block on stdio. Either run inside tmux and drive from the harness, or wrap with timeout 5s python server.py for a smoke check. Do NOT block your own session by running it in-process.

Phase 4 — Evaluations (10-question harness)

Each evaluation is a question the agent must answer using only the new tools.

Requirements per question — independent, read-only, complex (multiple tool calls), realistic, verifiable (string-comparable answer), stable (answer does not drift over time).

<evaluation>
  <qa_pair>
    <question>...</question>
    <answer>...</answer>
  </qa_pair>
  <!-- 9 more -->
</evaluation>

Process: enumerate the tools, explore READ-ONLY data, draft 10 questions, solve each yourself first to confirm the answer is reachable and stable.

Output format

  1. The server source plus the 10-question evaluation XML.
  2. A README with: install, env vars, transport mode (stdio / sse / http), example tool call.
  3. A line in agents/settings/contexts/skills-provenance.yml if the server was forked from an upstream, or a note that it was authored from scratch.

Gotcha

  • "Wrap every endpoint" is the failure mode — agents cannot orchestrate 60 thin tools as well as 12 workflow tools.
  • Returning the full upstream payload blows the agent's context. Default to a concise shape with an opt-in detailed mode.
  • Pydantic / Zod descriptions are the only documentation the LLM sees at runtime — write them like usage docs, not comments.
  • A server that hangs your session usually means stdio transport ran in the main process — move it under tmux or use a timeout.
  • Inflated token claims are not credible without an evaluation harness — Phase 4 is the validation gate, not optional.

Do NOT

  • Do NOT mirror REST routes 1:1.
  • Do NOT use any (TypeScript) or untyped dict (Python) in tool I/O.
  • Do NOT skip the 10-question evaluation — Phase 4 IS the quality bar.
  • Do NOT run the MCP server in your main process during testing — it will block.
  • Do NOT log tokens, API keys, or full request bodies — sanitize before logging.

Auto-trigger keywords

  • mcp server
  • model context protocol
  • fastmcp
  • mcp builder
  • agent-centric tools

Provenance

Encode usage policy in the description

Workflow sequencing, preconditions, ID/output provenance ("copy ids verbatim, never from memory"), a mandatory "why" intent field, and turn-end contracts belong INSIDE this artifact's description/frontmatter — where they fire at the decision point — not in always-on prose. See tool-description-as-policy.

Skill path
src/skills/mcp-builder/SKILL.md
Commit SHA
0adf49a8ae84
Repository license
MIT
Data collected