create-mcp-servers

create-mcp-servers is a skill for Claude Code from Vibe-Marketer/plugins-and-skills. It costs 122 tokens per session (1,858 once invoked), scanned A, original, MIT.

A guide for connecting a coding agent to outside services through MCP, a standard for exposing external tools to AI applications. It covers local and hosted connections, setup files, authentication, and security.

In plain words
What is it for?
Use it to add MCP servers to a plugin, configure .mcp.json, connect services over local or network connections, and test those connections.
Why use it?
It removes the need to work out server types, configuration, paths, authentication, and safe handling of secrets from scratch.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the create-plugins plugin — 12 skills, 6 commands, 9 agents shipped together

Good fit Use it to add MCP servers to a plugin, configure .mcp.json, connect services over local or network connections, and test those connections.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add Vibe-Marketer/plugins-and-skills
Claude Code
/plugin install create-plugins

Made for: Claude Code.

Or install create-plugins, the plugin that ships this one along with the rest of its 12 skills, 6 commands, 9 agents.

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 create-mcp-servers

README.md
[![agentmods](https://agentmods.dev/badge/skills/vibe-marketer/plugins-and-skills/create-mcp-servers/github.svg)](https://agentmods.dev/skills/vibe-marketer/plugins-and-skills/create-mcp-servers)
Your own site
<a href="https://agentmods.dev/skills/vibe-marketer/plugins-and-skills/create-mcp-servers"><img src="https://agentmods.dev/badge/skills/vibe-marketer/plugins-and-skills/create-mcp-servers/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 create-mcp-servers

Your own site · 80×15
<a href="https://agentmods.dev/skills/vibe-marketer/plugins-and-skills/create-mcp-servers"><img src="https://agentmods.dev/badge/skills/vibe-marketer/plugins-and-skills/create-mcp-servers.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 122 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,858 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00122 $0.01858
Opus 5 $0.00061 $0.00929
Sonnet 5 $0.00024 $0.00372
Haiku 4.5 $0.00012 $0.00186

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

Security

Grade A, and why

create-mcp-servers scanned grade A with 1 finding 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 9d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s https://mcp.service.com/sse | head -5
create-plugins/skills/create-mcp-servers/SKILL.md · 234 lines

How it starts

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

<quick_start>

  1. Choose server type: stdio (local), SSE (hosted/OAuth), HTTP (REST/token), WebSocket (real-time)
  2. Create .mcp.json at plugin root (or add to plugin.json inline)
  3. Configure command/URL, args, env vars using ${CLAUDE_PLUGIN_ROOT} for paths
  4. Test with /mcp command and claude --debug </quick_start>

<essential_principles> <security_rules>

  1. Never hardcode secrets -- use ${VAR} expansion in configs, environment variables in code
  2. Use cwd property -- isolates dependencies (not --cwd in args)
  3. Always absolute paths -- which uv to find paths, never relative
  4. One server per directory -- ~/Developer/mcp/{server-name}/
  5. Use uv for Python -- handles venvs automatically, better than pip </security_rules>

<architecture_decision> Operation count determines architecture:

  • 1-2 operations: Traditional pattern -- each operation is a separate tool
  • 3+ operations: On-demand discovery pattern -- 4 meta-tools (discover, get_schema, execute, continue) + operations.json

Traditional is simpler. On-demand scales better and reduces tool clutter. </architecture_decision> </essential_principles>

Type Transport Best For Authentication
stdio Local process Custom servers, local tools, NPM packages Environment vars
SSE Server-Sent Events Hosted services (Asana, GitHub), cloud APIs OAuth (automatic)
HTTP REST API backends, token-based auth, stateless Bearer tokens
WebSocket ws/wss Real-time streaming, persistent connections Tokens/headers

See references/server-types.md for detailed configuration per type. </step_1_choose_type>

<step_2_configure> Method 1: Dedicated .mcp.json (recommended for plugins):

{
  "server-name": {
    "command": "${CLAUDE_PLUGIN_ROOT}/servers/my-server",
    "args": ["--config", "${CLAUDE_PLUGIN_ROOT}/config.json"],
    "env": {
      "API_KEY": "${API_KEY}"
    }
  }
}

Method 2: Inline in plugin.json (simple single-server):

{
  "name": "my-plugin",
  "mcpServers": {
    "server-name": {
      "command": "npx",
      "args": ["-y", "@package/mcp-server"]
    }
  }
}

SSE example:

{
  "service-name": {
    "type": "sse",
    "url": "https://mcp.service.com/sse"
  }
}

HTTP example:

{
  "api-service": {
    "type": "http",
    "url": "https://api.example.com/mcp",
    "headers": {
      "Authorization": "Bearer ${API_TOKEN}"
    }
  }
}

WebSocket example:

{
  "realtime-service": {
    "type": "ws",
    "url": "wss://mcp.example.com/ws"
  }
}

Environment variables expand automatically: ${VAR_NAME} pulls from user's shell. Always use ${CLAUDE_PLUGIN_ROOT} for intra-plugin paths. </step_2_configure>

<step_3_tool_naming> MCP tools are auto-prefixed when registered:

Format: mcp__plugin_<plugin-name>_<server-name>__<tool-name>

Example for plugin asana, server asana, tool create_task: mcp__plugin_asana_asana__asana_create_task

Pre-allow specific tools in commands:

allowed-tools: [
  "mcp__plugin_asana_asana__asana_create_task",
  "mcp__plugin_asana_asana__asana_search_tasks"
]

Avoid wildcards (mcp__plugin_asana_asana__*) -- pre-allow specific tools for security. </step_3_tool_naming>

<step_4_authentication> OAuth (SSE/HTTP): Handled automatically by Claude Code. User authenticates in browser on first use. No configuration needed beyond the URL.

Token-based: Use environment variables in headers:

{
  "headers": {
    "Authorization": "Bearer ${API_TOKEN}"
  }
}

Read the full file on GitHub · 234 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 234 lines · 122 tokens per session scan A e75f4da94ab3

Subscribe to this mod's changes

create-mcp-servers is a skill published in the GitHub repository Vibe-Marketer/plugins-and-skills (2 stars, last pushed 6mo ago), licensed MIT. It adds 122 tokens to every session and 1,858 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens