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.
npx skills add andisab/swe-marketplace --skill mcp-tool-devgit clone --depth 1 https://github.com/andisab/swe-marketplaceWrote 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/andisab/swe-marketplace/mcp-tool-dev)<a href="https://agentmods.dev/skills/andisab/swe-marketplace/mcp-tool-dev"><img src="https://agentmods.dev/badge/skills/andisab/swe-marketplace/mcp-tool-dev/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/andisab/swe-marketplace/mcp-tool-dev"><img src="https://agentmods.dev/badge/skills/andisab/swe-marketplace/mcp-tool-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00158 | $0.01523 |
| Opus 5 | $0.00079 | $0.00762 |
| Sonnet 5 | $0.00032 | $0.00305 |
| Haiku 4.5 | $0.00016 | $0.00152 |
Grade A, and why
mcp-tool-dev 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MCP Tool Creation
Create individual MCP tool functions that follow Anthropic's tool design best practices and the Model Context Protocol specification.
What MCP Tools Are
An MCP tool is a single function exposed via the Model Context Protocol that an LLM can invoke. Each tool has:
- Name: Verb-noun format (
search_documents,get_user,create_issue) - Description: 3-4 sentences explaining what the tool does, when to use it, and when not to
- Input schema: JSON Schema defining parameters with clear descriptions
- Handler: Async function that processes the input and returns MCP content blocks
Tools can be standalone (single-file utilities) or part of an MCP server (grouped related tools).
When to Use This Skill
- Creating a single tool function for an existing or new MCP server
- Designing tool schemas and descriptions
- Implementing tool input validation and error handling
- Adding capabilities to a FastMCP server
When NOT to Use
- Building a complete multi-tool MCP server from scratch — use
mcp-server-devinstead - Creating Claude Code agents, skills, or commands — use their respective creation skills
Tool Anatomy
Every MCP tool consists of four parts:
1. Name
Use snake_case with verb-noun pattern. Be specific — search_files_by_content beats search.
2. Description
Write 3-4 sentences covering:
- What the tool does (capability statement)
- When to use it (primary use cases)
- When NOT to use it (scope boundaries, suggest alternatives)
- Key behavior notes (pagination, rate limits, return format)
Good descriptions prevent misuse and reduce wasted calls. Include parameter semantics — if "query" means regex vs full-text vs exact match, say so.
3. Input Schema
Define parameters using JSON Schema with:
- Clear
descriptionfor each parameter explaining expected format and semantics enumconstraints where values are knowndefaultvalues for optional parameters- Required vs optional distinction
What ships with it
1 file 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.
- 10d ago First seen · 179 lines · 158 tokens per session scan A 5e5fd32b4a56
mcp-tool-dev is a skill published in the GitHub repository andisab/swe-marketplace (21 stars, last pushed 22d ago), licensed MIT. It adds 158 tokens to every session and 1,523 once invoked, about $0.0008 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-08-30.
Other skills, from other repositories
ccc-saas
Skill "ccc-saas" from KevinZai/commander, covering $ccc-saas — saas domain hub, what's inside, routing matrix, campaign templates and greenfield saas (zero to mvp).
ccc-pro-saas
Multi-tenant SaaS scaffolds: row-level security, billing, invitations · Pro tier only.
ccc-pro-auth
SAML, OIDC, and enterprise identity provider scaffolds · Pro tier only.
gemini-api-agent-platform
Guides the usage of the Gemini API on Agent Platform with the Google Gen AI SDK for enterprise AI applications. Covers SDK usage (Python, JS/TS, Go, Java, C#), capabilities like Live API, tools, multimedia generation, caching, and batch prediction.
symfony:doctrine-events
React to Doctrine entity lifecycle in Symfony with attribute listeners (#[AsDoctrineListener]/#[AsEntityListener], ORM 3) and lifecycle callbacks.
symfony:api-platform-versioning
Evolve API Platform APIs via deprecation (deprecationReason/sunset, RFC 8594/9745), the recommended alternative to versioning; plus path/header strategies.