Cargo Doc MCP Server
화물 문서 MCP 서버
cargo doc 명령을 통해 Rust 문서를 관리하는 MCP 서버입니다. 이 서버는 로컬에서 Rust 문서를 확인, 빌드 및 검색할 수 있는 도구를 제공합니다.
특징
도구
get_crate_doc- 전반적인 개념과 사용법을 이해하기 위한 Crate의 주요 문서 페이지를 가져옵니다.매개변수:
project_path: Rust 프로젝트 경로(절대 경로여야 함)crate_name: 문서를 가져올 크레이트의 이름
list_symbols- 크레이트 문서에 있는 모든 심볼(구조체, 열거형, 특성 등)을 나열합니다.매개변수:
project_path: Rust 프로젝트 경로(절대 경로여야 함)crate_name: 심볼을 나열할 크레이트의 이름
search_doc- 크레이트 문서 내에서 검색매개변수:
project_path: Rust 프로젝트 경로(절대 경로여야 함)crate_name: 검색할 상자의 이름query: 검색 쿼리(키워드 또는 기호)limit(선택 사항): 반환할 최대 결과 수(기본값: 10)
Related MCP server: MCP Rust Docs Server
요구 사항
Node.js 16 이상
Rust and Cargo 설치됨
설치
종속성 설치:
지엑스피1
서버를 빌드하세요:
pnpm run build자동 재빌드를 사용한 개발의 경우:
pnpm run watch용법
다음 구성을 추가합니다.
{
"mcpServers": {
"docs-rs-mcp": {
"command": "/absolute/path/to/docs-rs-mcp/build/index.js"
}
}
}디버깅
MCP 서버는 stdio를 통해 통신하므로 디버깅이 어려울 수 있습니다. MCP Inspector 사용을 권장합니다.
pnpm run inspector검사기는 브라우저에서 디버깅 도구에 액세스할 수 있는 URL을 제공합니다.
캐시 시스템
서버는 성능 향상을 위해 작성된 문서 경로의 캐시를 유지합니다. 캐시 항목은 문서가 최신 상태로 유지되도록 24시간 후에 만료됩니다.
특허
MIT
Available Tools
3 toolsget_crate_docA
Get crate's main documentation page. Useful for unresolved imports (e.g. use get_crate_doc when seeing 'unresolved import tokio::sync') or understanding crate features.
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes | Path to the Rust project (must be absolute path) | |
| crate_name | Yes | Name of the crate to get documentation for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions the tool's purpose and use cases but lacks details on behavioral traits such as error handling, response format, or any constraints like rate limits or authentication needs. This leaves gaps in understanding how the tool behaves beyond its basic function.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, with two sentences that directly state the purpose and provide usage guidance without any wasted words. Each sentence adds value, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description covers purpose and usage well but lacks details on behavioral aspects and output. Without annotations or an output schema, it should ideally provide more context on what to expect from the tool's response, leaving it somewhat incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters ('project_path' and 'crate_name') with clear descriptions. The description does not add any additional meaning or context about the parameters beyond what the schema provides, resulting in a baseline score of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get crate's main documentation page') and resource ('crate'), distinguishing it from sibling tools like 'list_symbols' and 'search_doc' by focusing on retrieving primary documentation rather than listing symbols or searching within documentation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly provides when to use this tool ('Useful for unresolved imports... or understanding crate features') with a concrete example ('e.g. use get_crate_doc when seeing 'unresolved import tokio::sync''), effectively guiding the agent on appropriate contexts without mentioning alternatives, which is sufficient for clear usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_symbolsB
List all symbols in a crate. Use when implementing traits or exploring available types. Shows structs, enums, traits with their paths.
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes | Path to the Rust project (must be absolute path) | |
| crate_name | Yes | Name of the crate to list symbols for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions what the tool shows (structs, enums, traits with paths), but doesn't cover critical aspects like whether it's read-only, safe, requires specific permissions, handles errors, or provides pagination/formatting details. For a tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, with two sentences that efficiently convey purpose and usage. It avoids unnecessary details, though it could be slightly more structured (e.g., separating purpose from guidance). Overall, it's concise with minimal waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (2 parameters, no output schema, no annotations), the description is incomplete. It lacks information on behavioral traits (e.g., safety, error handling), output format, and explicit usage boundaries. Without annotations or an output schema, the description should do more to compensate, but it falls short.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with both parameters ('project_path' and 'crate_name') fully documented in the schema. The description doesn't add any parameter-specific details beyond what the schema provides, such as format examples or constraints. This meets the baseline for high schema coverage, but doesn't enhance understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('List') and resource ('symbols in a crate'), and distinguishes the types of symbols included (structs, enums, traits with paths). However, it doesn't explicitly differentiate from sibling tools like 'get_crate_doc' or 'search_doc', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage guidance ('Use when implementing traits or exploring available types'), which gives some context for when to invoke the tool. However, it lacks explicit guidance on when not to use it or alternatives (e.g., compared to 'search_doc'), and doesn't mention prerequisites like needing a valid Rust project, leaving room for improvement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_docB
Search crate docs for specific features, error messages, or usage examples. Helps debug compilation issues or learn new APIs.
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes | Path to the Rust project (must be absolute path) | |
| crate_name | Yes | Name of the crate to search in | |
| query | Yes | Search query (keyword or symbol) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool's purpose and use cases but fails to describe key behavioral traits like whether it requires specific permissions, how results are returned (e.g., format, pagination), or any rate limits. This leaves significant gaps for an agent to understand how to invoke it effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured in two sentences: the first states the purpose, and the second provides usage context. There is no wasted text, and it is front-loaded with the core functionality. However, it could be slightly more efficient by integrating the use cases more seamlessly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a search tool with 3 parameters, no annotations, and no output schema, the description is incomplete. It lacks details on behavioral aspects (e.g., result format, error handling) and doesn't compensate for the absence of structured output information, making it insufficient for an agent to fully understand the tool's operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, providing clear details for all three parameters (project_path, crate_name, query). The description adds no additional parameter semantics beyond what the schema already states, such as examples of valid queries or constraints on crate names. With high schema coverage, the baseline score of 3 is appropriate as the schema handles the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search crate docs for specific features, error messages, or usage examples.' It specifies the verb ('Search') and resource ('crate docs'), and mentions the target content types. However, it doesn't explicitly differentiate from sibling tools like 'get_crate_doc' or 'list_symbols', which likely have related but distinct functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage guidance by stating it 'Helps debug compilation issues or learn new APIs,' suggesting contexts where this tool is appropriate. However, it lacks explicit guidance on when to use this tool versus its siblings (e.g., 'get_crate_doc' and 'list_symbols'), such as comparing search functionality to direct documentation retrieval or symbol listing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
- First observed
get_crate_doc - First observed
list_symbols - First observed
search_doc
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: get_crate_doc retrieves main documentation pages, list_symbols enumerates all symbols in a crate, and search_doc performs targeted searches within documentation. There is no overlap in functionality, making it easy for an agent to select the appropriate tool based on the task.
All tool names follow a consistent verb_noun pattern (get_crate_doc, list_symbols, search_doc) with clear, descriptive verbs. There are no deviations in naming conventions, making the tool set predictable and easy to understand.
With only 3 tools, the server feels somewhat thin for a documentation-focused domain, as it might lack operations like updating or managing documentation. However, the tools cover core use cases, so it's borderline but not severely mismatched.
The tools provide good coverage for basic documentation tasks: retrieving main docs, listing symbols, and searching. Minor gaps exist, such as no direct support for navigating between documentation sections or handling version-specific docs, but agents can likely work around these limitations.
Maintenance
Related MCP Connectors
Search and read Rust documentation for the standard library and any crate on crates.io
Versioned documentation registry and semantic search for AI tools and coding assistants.
DevDocs.io keyless docs index + entry search + content (Angular, MDN, Rust, etc.).
MCP server for opencode documentation, generated by doc2mcp.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server that provides AI tools with access to Rust documentation from docs.rs, enabling search for crates, documentation, type information, feature flags, version information, and source code.32-
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server for fetching Rust crate documentation from docs.rs using the rustdoc JSON API.13Apache 2.0
- AlicenseAqualityCmaintenanceAn MCP server that enables searching for Rust crates and their documentation from docs.rs, allowing AI agents to find required crates and access the latest documentation.415 npm37MIT
- AlicenseAqualityDmaintenanceMCP server that fetches and searches the latest stable documentation for any package from PyPI, npm, and crates.io.5MIT