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.
/plugin marketplace add Vibe-Marketer/plugins-and-skills/plugin install create-pluginsWrote 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.
[](https://agentmods.dev/skills/vibe-marketer/plugins-and-skills/create-mcp-servers)<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.
<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>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.
| Model | Per session | Once 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 |
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 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>
- Choose server type: stdio (local), SSE (hosted/OAuth), HTTP (REST/token), WebSocket (real-time)
- Create
.mcp.jsonat plugin root (or add to plugin.json inline) - Configure command/URL, args, env vars using
${CLAUDE_PLUGIN_ROOT}for paths - Test with
/mcpcommand andclaude --debug</quick_start>
<essential_principles> <security_rules>
- Never hardcode secrets -- use
${VAR}expansion in configs, environment variables in code - Use
cwdproperty -- isolates dependencies (not--cwdin args) - Always absolute paths --
which uvto find paths, never relative - One server per directory --
~/Developer/mcp/{server-name}/ - Use
uvfor 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}"
}
}
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.
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.
- 9d ago First seen · 234 lines · 122 tokens per session scan A e75f4da94ab3
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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
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…
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…
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…
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…