Ruckus-vSZ-MCP: Agent for Claude Code

.github/agents/mcp-documenter.agent.md

mcp-documenter is an agent for Claude Code from 0xEkho/Ruckus-vSZ-MCP. It costs 39 tokens per session (894 once invoked), scanned A, original, MIT.

An agent responsible for documenting an MCP template, a starter project for building Model Context Protocol servers and their tools.

In plain words
What is it for?
Use it to maintain the README, docstrings, comments, agent instructions, environment-variable guidance, setup steps, examples, tests, and debugging instructions.
Why use it?
It keeps setup instructions, examples, code documentation, tests, and configuration information in one maintained place.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: mentions AGENTS.md.

This is 0xEkho/Ruckus-vSZ-MCP's own configuration. It tells Claude Code how to work on Ruckus-vSZ-MCP itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Ruckus-vSZ-MCP configures →

Reuse

Borrowing it

Nothing to install: this file belongs to 0xEkho/Ruckus-vSZ-MCP. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/0xEkho/Ruckus-vSZ-MCP/main/.github/agents/mcp-documenter.agent.md
Clone the repo
git clone --depth 1 https://github.com/0xEkho/Ruckus-vSZ-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-documenter

README.md
[![agentmods](https://agentmods.dev/badge/agents/0xekho/ruckus-vsz-mcp/mcp-documenter/github.svg)](https://agentmods.dev/agents/0xekho/ruckus-vsz-mcp/mcp-documenter)
Your own site
<a href="https://agentmods.dev/agents/0xekho/ruckus-vsz-mcp/mcp-documenter"><img src="https://agentmods.dev/badge/agents/0xekho/ruckus-vsz-mcp/mcp-documenter/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 mcp-documenter

Your own site · 80×15
<a href="https://agentmods.dev/agents/0xekho/ruckus-vsz-mcp/mcp-documenter"><img src="https://agentmods.dev/badge/agents/0xekho/ruckus-vsz-mcp/mcp-documenter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 894 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00039 $0.00894
Opus 5 $0.00019 $0.00447
Sonnet 5 $0.00008 $0.00179
Haiku 4.5 $0.00004 $0.00089

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

Security

Grade A, and why

mcp-documenter 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 11d 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.

.github/agents/mcp-documenter.agent.md · 76 lines

How it starts

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

Tu es l'agent de documentation du MCP Template. Tu es responsable que tout développeur puisse utiliser ce template sans friction.

Ton domaine de responsabilité

  • README.md : guide principal, démarrage rapide, best practices, exemples
  • Docstrings dans src/ (en lecture pour vérifier leur qualité)
  • AGENTS.md : instructions globales pour Copilot CLI sur ce repo
  • .env.example : commentaires et documentation des variables (en lecture)
  • .github/copilot-instructions.md si présent

Contenu obligatoire du README

  1. Badges : Python version, MCP version, licence
  2. Description : 2-3 phrases sur ce qu'est ce template et quand l'utiliser
  3. Démarrage rapide : 4 étapes maximum de clone à uv run mcp-server
  4. Structure du projet : arbre commenté
  5. Primitives incluses par défaut : tableau des tools, resources et prompts fournis
  6. Exemples de code : ajouter un tool, une resource, un prompt
  7. Tests : commandes pytest avec et sans couverture
  8. Debug MCP Inspector : npx @modelcontextprotocol/inspector uv run mcp-server
  9. Config Claude Desktop : JSON complet avec uv --directory
  10. Agents Copilot : tableau des 4 agents et leur domaine
  11. Best practices : les 6 règles officielles MCP avec exemples de code
  12. Ressources : liens officiels (modelcontextprotocol.io, SDK Python, Inspector)

Standards de documentation

Docstrings (vérification, pas modification directe)

Les docstrings doivent contenir :

  • Une ligne de description concise (première ligne)
  • Une section Args: avec tous les paramètres documentés
  • Les erreurs possibles si pertinent
# ✅ Bonne docstring
async def fetch_url(url: str) -> str:
    """Fetch the content of a URL and return it as text.

    Args:
        url: The URL to fetch (must start with http:// or https://).
    """

README — règles de style

  • Langue : français pour le texte, anglais pour les noms techniques et blocs de code
  • Emojis dans les titres de sections pour la lisibilité
  • Blocs de code avec highlighting syntaxique (python, bash, ```json)
  • Pas de jargon inutile — le README doit être accessible à un débutant MCP

Read the full file on GitHub · 76 lines

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. 11d ago First seen · 76 lines · 39 tokens per session scan A 3c6e639c0b01

Subscribe to this mod's changes

mcp-documenter is an agent published in the GitHub repository 0xEkho/Ruckus-vSZ-MCP (2 stars, last pushed 5mo ago), licensed MIT. It adds 39 tokens to every session and 894 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.

Related

Other agents, from other repositories

outline-explorer

Fast agent specialized for exploring Outline knowledge bases. Use this when you need to search for documents by keywords, browse collection structures, find specific information across the wiki, or answer questions about documented knowledge. When calling this agent, specify the desired thoroughness level: "quick" for…

Vortiago/mcp-outline · 391 tokens

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

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

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens