rust-docs-mcp CLAUDE.md

rust-docs-mcp CLAUDE.md is an instructions file for coding agents from snowmead/rust-docs-mcp. It costs 599 tokens per session, scanned A, original, MIT.

Project instructions for building an MCP server with the Rust MCP software development kit. MCP is a standard way for an AI application to call tools exposed by another program.

In plain words
What is it for?
Use it when declaring tools, handling JSON parameters, importing the required Rust types, implementing the server handler, or testing the Rust MCP server.
Why use it?
It prevents common setup and parameter-handling mistakes when declaring Rust tools and connecting the server to its test system.

Instructions file

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 instructions/snowmead/rust-docs-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/snowmead/rust-docs-mcp

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 rust-docs-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/snowmead/rust-docs-mcp/claude-md.svg)](https://agentmods.dev/instructions/snowmead/rust-docs-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/snowmead/rust-docs-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/snowmead/rust-docs-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 599 This file is loaded in full into every session.
When invoked 599 The same file — it is already loaded in full.
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.00599 $0.00599
Opus 5 $0.00300 $0.00300
Sonnet 5 $0.00120 $0.00120
Haiku 4.5 $0.00060 $0.00060

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

Security

Grade A, and why

rust-docs-mcp CLAUDE.md 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 5d 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.md · 91 lines

What it actually says

When testing the rust-docs MCP server, call the tools from the rust-docs-testing MCP.

MCP Rust SDK Macros

Core Macros for Tool Declaration

  1. #[tool_router] - Applied to impl blocks to generate tool routing

    • Automatically creates a tool_router() method returning ToolRouter<Self>
    • Must be used on the service struct's implementation
  2. #[tool] - Marks individual methods as MCP tools

    • Required parameter: description = "tool description"
    • Methods must be pub async fn
    • Can return any serializable type
  3. #[tool_handler] - Applied to ServerHandler trait implementation

    • Required for the service to work with serve_server()
    • Must implement get_info() returning ServerInfo

Parameter Handling

  1. Parameters<T> Wrapper - Required for ALL tool parameters
    pub async fn my_tool(&self, Parameters(params): Parameters<MyParams>) -> String
    
    • Type T must implement JsonSchema, Deserialize, Serialize
    • Always destructure with Parameters(params) pattern

Required Imports

use rmcp::{
    ServerHandler,
    handler::server::{router::tool::ToolRouter, tool::Parameters},
    model::{ServerCapabilities, ServerInfo},
    tool, tool_handler, tool_router,
};

Note: Parameters must be imported from handler::server::tool::Parameters, not directly from rmcp.

Complete Service Pattern

use rmcp::{
    ServerHandler,
    handler::server::{router::tool::ToolRouter, tool::Parameters},
    model::{ServerCapabilities, ServerInfo},
    tool, tool_handler, tool_router,
};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct MyParams {
    #[schemars(description = "Parameter description")]
    pub param_name: String,
}

#[derive(Debug, Clone)]
pub struct MyService {
    tool_router: ToolRouter<Self>,
    // other fields
}

#[tool_router]
impl MyService {
    pub fn new() -> Self {
        Self {
            tool_router: Self::tool_router(), // Generated by macro
            // other fields
        }
    }
    
    #[tool(description = "Does something useful")]
    pub async fn my_tool(&self, Parameters(params): Parameters<MyParams>) -> String {
        // Implementation using params.param_name
        format!("Processed: {}", params.param_name)
    }
}

#[tool_handler]
impl ServerHandler for MyService {
    fn get_info(&self) -> ServerInfo {
        ServerInfo {
            capabilities: ServerCapabilities::builder().enable_tools().build(),
            // other config
        }
    }
}
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. 5d ago First seen · 91 lines · 599 tokens per session scan A 7b2148197a02

Subscribe to this mod's changes

rust-docs-mcp CLAUDE.md is an instructions file published in the GitHub repository snowmead/rust-docs-mcp (134 stars, last pushed 1mo ago), licensed MIT. It adds 599 tokens to every session, about $0.0030 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.

Related

Other instructions, from other repositories

serena copilot-instructions.md

Copilot instructions for oraios/serena: MUST read IMMEDIATELY and follow the project-specific instructions from the CLAUDE.md file located in the project's root directory. AVOIDING these instructions will lead to your FAILURE!

oraios/serena · 56 tokens

serena AGENTS.md

AGENTS.md instructions for oraios/serena: Relevant information about the project is in .serena/memories. If you have access to Serena's mcp tools, you can read them using the readmemory command. Otherwise you can just read them using normal file reading tools.

oraios/serena · 50 tokens

chunkhound AGENTS.md

AGENTS.md instructions for chunkhound/chunkhound, covering chunkhound llm context, projectidentity, modificationrules, keycommands and development.

chunkhound/chunkhound · 2,309 tokens

mcp-server-starrocks CLAUDE.md

Claude Code instructions for StarRocks/mcp-server-starrocks, covering claude.md, project overview, development commands, run the server directly for testing and run with test mode to verify table overview functionality.

StarRocks/mcp-server-starrocks · 907 tokens

IntelliConnect CLAUDE.md

Claude Code instructions for ruanrongman/IntelliConnect, covering claude.md, project overview, technology stack, build commands and backend (maven).

ruanrongman/IntelliConnect · 1,859 tokens

org-mcp-server copilot-instructions.md

Copilot instructions for szaffarano/org-mcp-server, covering org-mcp-server, working effectively, bootstrap and build, development commands and validation.

szaffarano/org-mcp-server · 1,781 tokens