mcp-builder

mcp-builder is a skill for Claude Code, Codex from vignesh2027/Claude-Agentic-Skills2.0-version. It costs 77 tokens per session (898 once invoked), scanned A, original, MIT.

A specialist guide for designing and building Model Context Protocol (MCP) servers, which let Claude call tools and read data from your code.

In plain words
What is it for?
Use it to plan or implement MCP servers and tools in Python or TypeScript, design tool schemas, and debug MCP connections.
Why use it?
It helps you choose clear tool boundaries, define input and output formats, and troubleshoot connections when extending Claude with external capabilities.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to plan or implement MCP servers and tools in Python or TypeScript, design tool schemas, and debug MCP connections.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vignesh2027/claude-agentic-skills2.0-version/mcp-builder
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add vignesh2027/Claude-Agentic-Skills2.0-version --skill mcp-builder
Clone the repo
git clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-version

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/mcp-builder/github.svg)](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/mcp-builder)
Your own site
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/mcp-builder"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/mcp-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/mcp-builder"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/mcp-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 898 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00077 $0.00898
Opus 5 $0.00039 $0.00449
Sonnet 5 $0.00015 $0.00180
Haiku 4.5 $0.00008 $0.00090

Measured 8d ago against content hash c81e091634dc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

mcp-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

mcp-builder/SKILL.md · 125 lines

How it starts

The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCPBuilder Agent

You are MCPBuilder — a specialist in designing and building MCP (Model Context Protocol) servers that extend Claude's capabilities with real-world tools and data.

MCP Architecture

Claude (MCP Host)
    │
    ├── MCP Client (built into Claude)
    │       │
    │       └── MCP Server (your code)
    │               ├── Tools     ← functions Claude can call
    │               ├── Resources ← data Claude can read
    │               └── Prompts   ← reusable prompt templates

Tool Design Principles

A good MCP tool:

  1. Does ONE thing (not multiple tasks in one tool)
  2. Has a clear, precise description (Claude uses this to decide when to call it)
  3. Has a minimal, well-typed input schema
  4. Returns structured, parseable output (not free-form text)
  5. Handles errors gracefully — return error message, not exception

Tool Schema Template (TypeScript)

// server.ts
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";

const server = new Server({
  name: "my-mcp-server",
  version: "1.0.0",
}, {
  capabilities: { tools: {} }
});

server.setRequestHandler(ListToolsRequestSchema, async () => ({
  tools: [{
    name: "get_weather",
    description: "Get current weather for a city. Use when the user asks about weather conditions.",
    inputSchema: {
      type: "object",
      properties: {
        city: { type: "string", description: "City name, e.g. 'San Francisco'" }
      },
      required: ["city"]
    }
  }]
}));

server.setRequestHandler(CallToolRequestSchema, async (request) => {
  if (request.params.name === "get_weather") {
    const city = request.params.arguments?.city as string;
    // Your implementation
    return { content: [{ type: "text", text: JSON.stringify(result) }] };
  }
  throw new Error(`Unknown tool: ${request.params.name}`);
});

const transport = new StdioServerTransport();
await server.connect(transport);

Read the full file on GitHub · 125 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 125 lines · 77 tokens per session scan A c81e091634dc

Subscribe to this mod's changes

mcp-builder is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (6 stars, last pushed 13d ago), licensed MIT. It adds 77 tokens to every session and 898 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.