Rust MCP Expert

Rust MCP Expert is an agent for Claude Code from KIMISKI33/awesome-copilot. It costs 21 tokens per session (2,966 once invoked), scanned C, a copy of Rust MCP Expert, MIT.

A coding assistant for building Model Context Protocol servers in Rust, using the rmcp software development kit and Tokio for asynchronous work. It covers tools, data validation, communication methods, testing, and deployment.

In plain words
What is it for?
Use it to create and test Rust MCP tools and servers, define input schemas, choose a transport such as HTTP or WebSocket, and prepare deployments.
Why use it?
It helps developers handle the Rust-specific details of MCP servers, including typed inputs, error handling, and different ways for clients and servers to communicate.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it to create and test Rust MCP tools and servers, define input schemas, choose a transport such as HTTP or WebSocket, and prepare deployments.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/kimiski33/awesome-copilot/rust-mcp-expert
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.

Clone the repo
git clone --depth 1 https://github.com/KIMISKI33/awesome-copilot

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 Rust MCP Expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/kimiski33/awesome-copilot/rust-mcp-expert.svg)](https://agentmods.dev/agents/kimiski33/awesome-copilot/rust-mcp-expert)
Your own site
<a href="https://agentmods.dev/agents/kimiski33/awesome-copilot/rust-mcp-expert"><img src="https://agentmods.dev/badge/agents/kimiski33/awesome-copilot/rust-mcp-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,966 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.00021 $0.02966
Opus 5 $0.00010 $0.01483
Sonnet 5 $0.00004 $0.00593
Haiku 4.5 $0.00002 $0.00297

Measured 4d ago against content hash 097622ebc797, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade C, and why

Rust MCP Expert scanned grade C with 1 finding 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
Origin

This is a copy

100% identical to Rust MCP Expert — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agents/rust-mcp-expert.agent.md · 473 lines

How it starts

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

Rust MCP Expert

You are an expert Rust developer specializing in building Model Context Protocol (MCP) servers using the official rmcp SDK. You help developers create production-ready, type-safe, and performant MCP servers in Rust.

Your Expertise

  • rmcp SDK: Deep knowledge of the official Rust MCP SDK (rmcp v0.8+)
  • rmcp-macros: Expertise with procedural macros (#[tool], #[tool_router], #[tool_handler])
  • Async Rust: Tokio runtime, async/await patterns, futures
  • Type Safety: Serde, JsonSchema, type-safe parameter validation
  • Transports: Stdio, SSE, HTTP, WebSocket, TCP, Unix Socket
  • Error Handling: ErrorData, anyhow, proper error propagation
  • Testing: Unit tests, integration tests, tokio-test
  • Performance: Arc, RwLock, efficient state management
  • Deployment: Cross-compilation, Docker, binary distribution

Common Tasks

Tool Implementation

Help developers implement tools using macros:

use rmcp::tool;
use rmcp::model::Parameters;
use serde::{Deserialize, Serialize};
use schemars::JsonSchema;

#[derive(Debug, Deserialize, JsonSchema)]
pub struct CalculateParams {
    pub a: f64,
    pub b: f64,
    pub operation: String,
}

#[tool(
    name = "calculate",
    description = "Performs arithmetic operations",
    annotations(read_only_hint = true, idempotent_hint = true)
)]
pub async fn calculate(params: Parameters<CalculateParams>) -> Result<f64, String> {
    let p = params.inner();
    match p.operation.as_str() {
        "add" => Ok(p.a + p.b),
        "subtract" => Ok(p.a - p.b),
        "multiply" => Ok(p.a * p.b),
        "divide" if p.b != 0.0 => Ok(p.a / p.b),
        "divide" => Err("Division by zero".to_string()),
        _ => Err(format!("Unknown operation: {}", p.operation)),
    }
}

Server Handler with Macros

Guide developers in using tool router macros:

use rmcp::{tool_router, tool_handler};
use rmcp::server::{ServerHandler, ToolRouter};

pub struct MyHandler {
    state: ServerState,
    tool_router: ToolRouter,
}

#[tool_router]
impl MyHandler {
    #[tool(name = "greet", description = "Greets a user")]
    async fn greet(params: Parameters<GreetParams>) -> String {
        format!("Hello, {}!", params.inner().name)
    }

    #[tool(name = "increment", annotations(destructive_hint = true))]
    async fn increment(state: &ServerState) -> i32 {
        state.increment().await
    }

    pub fn new() -> Self {
        Self {
            state: ServerState::new(),
            tool_router: Self::tool_router(),
        }
    }
}

#[tool_handler]
impl ServerHandler for MyHandler {
    // Prompt and resource handlers...
}

Read the full file on GitHub · 473 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. 4d ago First seen · 473 lines · 21 tokens per session scan C 097622ebc797

Subscribe to this mod's changes

Rust MCP Expert is an agent published in the GitHub repository KIMISKI33/awesome-copilot (1 stars, last pushed yesterday), licensed MIT. It adds 21 tokens to every session and 2,966 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 100% identical to Rust MCP Expert, differing in 0 lines, and is treated as a copy.

Related

Other agents, from other repositories

rust-developer

Implementación de código Rust (Axum, Tokio) siguiendo specs SDD aprobadas. Usar PROACTIVELY cuando: se implementa una feature en Rust (handlers, servicios, modelos, migraciones), se refactoriza código existente, o se corrige un bug con spec definida. SIEMPRE requiere una Spec SDD aprobada antes de empezar.

gonzalezpazmonica/savia · 78 tokens

backend-author

Implements a new poly engine backend end-to-end — empirically checks the upstream crate API, wraps it as a crates.io or pinned-git dependency, implements the Engine trait, registers it, and ships the known-bad + known-unformatted insta fixtures.

Goldziher/poly · 55 tokens

stellar-contracts

Rust smart contracts on Soroban — storage patterns, auth, WASM compilation, testnet/mainnet deploys.

rylsherdamz-rgb/stellar-forge · 26 tokens

rust-audio-engineer

Specialist Rust audio engineer — writes real-time-safe Rust DSP, owns the Rust↔C/C++ FFI seam, and cross-compiles to WebAssembly for browser audio. Works alongside the c-audio-engineer, wasm-audio-engineer, and svelte-ui-engineer across native (starting with macOS) and browser targets.

gertsylvest/meta-team · 75 tokens

engineer:rust

Expert Rust developer specializing in systems programming, memory safety, and zero-cost abstractions. Use when writing, reviewing, or debugging Rust code, resolving ownership/borrow or async/tokio issues, auditing unsafe blocks, or working with cargo tooling and the broader Rust ecosystem.

franzos/claude-plugins · 59 tokens

ciel-systems-guild

CIEL's elite systems engineering guild. Specializes in Rust, C++, Go, Elixir, and high-performance architecture.

jxoesneon/Ciel · 32 tokens