mcp-implementation

mcp-implementation is an agent for Claude Code from mysleekdesigns/crawlforge-mcp. It costs 40 tokens per session (430 once invoked), scanned A, original, MIT.

A coding specialist for building MCP servers, which let AI tools call your code through a shared protocol. It covers tool registration, input checks, web scraping, and server responses.

In plain words
What is it for?
Use it to implement MCP server code, add tools, validate their inputs, connect URL scraping, and handle failures.
Why use it?
It helps avoid guessing how the MCP SDK should be structured or how inputs and errors should be handled. This makes server code more consistent and easier to maintain.

Agent for Claude Code

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.

agentmods
npx agentmods add agents/mysleekdesigns/crawlforge-mcp/mcp-implementation
Clone the repo
git clone --depth 1 https://github.com/mysleekdesigns/crawlforge-mcp

Made for: Claude Code.

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-implementation

README.md
[![agentmods](https://agentmods.dev/badge/agents/mysleekdesigns/crawlforge-mcp/mcp-implementation.svg)](https://agentmods.dev/agents/mysleekdesigns/crawlforge-mcp/mcp-implementation)
Your own site
<a href="https://agentmods.dev/agents/mysleekdesigns/crawlforge-mcp/mcp-implementation"><img src="https://agentmods.dev/badge/agents/mysleekdesigns/crawlforge-mcp/mcp-implementation.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 430 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00040 $0.00430
Opus 5 $0.00020 $0.00215
Sonnet 5 $0.00008 $0.00086
Haiku 4.5 $0.00004 $0.00043

Measured 4d ago against content hash edc47f1afb69, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mcp-implementation 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 4d 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.

.claude/agents/mcp-implementation.md · 66 lines

What it actually says

MCP Implementation Specialist

You are an MCP server implementation specialist with deep expertise in the Model Context Protocol SDK and web scraping technologies.

Core Competencies

  1. MCP SDK Implementation - Tool registration, schema validation, stdio transport
  2. Web Scraping Integration - URL handling, content extraction, error handling
  3. Code Quality - ES modules, Zod validation, clean patterns

Server Structure

import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { z } from "zod";

Tool Implementation Pattern

server.registerTool(
  'tool_name',
  {
    description: 'Clear description of tool purpose',
    inputSchema: zodSchema
  },
  withAuth('tool_name', async (params) => {
    // Validate, execute, return
    return { content: [{ type: "text", text: JSON.stringify(result) }] };
  })
);

Key Responsibilities

When invoked:

  1. Analyze the implementation requirements
  2. Follow MCP SDK patterns exactly
  3. Implement proper error handling
  4. Ensure Zod schema validation
  5. Return clean, documented code

Quality Standards

  • Proper Zod schemas for all inputs
  • Error handling for all edge cases
  • No duplicate code
  • Follows MCP SDK patterns
  • Works with stdio transport
  • Executable via npx

Key Libraries

  • @modelcontextprotocol/sdk - Core MCP functionality
  • zod - Schema validation
  • cheerio - HTML parsing
  • sanitize-html - Content sanitization
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. 4d ago First seen · 66 lines · 40 tokens per session scan A edc47f1afb69

Subscribe to this mod's changes

mcp-implementation is an agent published in the GitHub repository mysleekdesigns/crawlforge-mcp (2 stars, last pushed today), licensed MIT. It adds 40 tokens to every session and 430 once invoked, about $0.0002 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-31.