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 agentmods add agents/mysleekdesigns/crawlforge-mcp/mcp-implementationgit clone --depth 1 https://github.com/mysleekdesigns/crawlforge-mcpWrote 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/agents/mysleekdesigns/crawlforge-mcp/mcp-implementation)<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>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 | $0.00040 | $0.00430 |
| Opus 5 | $0.00020 | $0.00215 |
| Sonnet 5 | $0.00008 | $0.00086 |
| Haiku 4.5 | $0.00004 | $0.00043 |
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.
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
- MCP SDK Implementation - Tool registration, schema validation, stdio transport
- Web Scraping Integration - URL handling, content extraction, error handling
- 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:
- Analyze the implementation requirements
- Follow MCP SDK patterns exactly
- Implement proper error handling
- Ensure Zod schema validation
- 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 functionalityzod- Schema validationcheerio- HTML parsingsanitize-html- Content sanitization
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.
- 4d ago First seen · 66 lines · 40 tokens per session scan A edc47f1afb69
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.
Other agents, from other repositories
debugger
Debugs errors, test failures, and unexpected behavior. Knows PromptScript architecture.
prs-expert
PromptScript language expert. Helps with syntax, compilation issues, and migrations.
assistant
You are the agent-toolkit Dev Companion. Ensure all work follows agent-toolkit standards and conventions.
architect
Software architecture and system design specialist. Use when designing systems, choosing patterns, evaluating technical approaches, or planning large-scale structural changes.
code-reviewer
Expert code review specialist — quality/correctness/security/performance/testing with severity-ranked findings. Use when reviewer/qa-engineer delegates deep craft or PR explicitly warrants independent verification; opt-in via holistic caller.
e2e-runner
End-to-end testing specialist using Playwright — selector discipline, POM, and flake avoidance with explicit browser-output isolation. Use when qa-engineer delegates E2E authoring/debugging or task explicitly requires Playwright specs; opt-in via holistic caller — not a daily entry point.