What is A command-line tool written in Rust for discovering and documenting MCP Server capabilities.?
mcp-discovery launches an MCP Server using provided commands, queries its capabilities, tools, resources etc. It supports outputting the results in the terminal or saving them to files in Markdown, HTML, or plain text formats. This project is open-source and leverages the rust-mcp-schema and rust-mcp-sdk crates for seamless interaction with MCP Servers.
Documentation
MCP Discovery
A command-line tool written in Rust for discovering and documenting MCP Server capabilities.
mcp-discovery launches an MCP Server using provided commands, queries its capabilities, tools, resources etc.
It supports outputting the results in the terminal or saving them to files in Markdown, HTML, or plain text formats.
🌐 Check out the rust-mcp-filesystemcapabilities page for sample output.
This project is open-source and leverages the rust-mcp-schema and rust-mcp-sdk crates for seamless interaction with MCP Servers.
Display MCP Details: Output MCP Server information, including tools, resources, and capabilities, directly to the terminal.
Generate Files: Create files in Markdown (.md), HTML (.html), or plain text (.txt) formats with MCP Server details and capabilities.
Update Files: Modify existing Markdown, HTML, or text files by adding MCP Server capabilities within specified markers, enabling MCP Server developers to automatically maintain up-to-date documentation and repository README files.
Flexible Output Customization: Choose from built-in templates (md, md-plain, html, txt) or supply custom Handlebars templates for personalized output.
MCP Discovery GitHub Action: Integrate the mcp-discovery CLI as a GitHub Action to automate and maintain up-to-date MCP Server documentation in your development workflow.
Installation ⬇️# Running as CLI
Check the project documentation for instructions on installing the tool on different platforms.
GitHub Action
The easiest way to automate and maintain up-to-date MCP Server documentation , is to use mcp-discovery as a GitHub action.
Please see rust-mcp-stack/mcp-discovery-action for installation and configuration instructions.
Subcommands
print: Displays MCP Server capabilities in the terminal.
create: Creates a new file with MCP Server capability details.
update: Updates an existing file by inserting MCP Server capabilities between specified
markers.
👉 Note: If no subcommand is provided, the print subcommand will be used by default.
Options ⚙️
-f, --filename <FILENAME>: Used with create and update commands to specify the output file to generate or modify.
💡 See the Command Examples section in the project documentation for additional CLI usage examples.
Defining Update Regions with Markers
When using the update subcommand, mcp-discovery places capabilities between designated markers in the target file, which vary by file format and are typically comment lines.
The update command simplifies the process for developers and maintainers to keep documentation current effortlessly.
Run the mcp-discovery update command anytime to refresh the file with the latest MCP Server capabilities.
Marker Annotations
Render Block Start : mcp-discovery-render
Render Block End : mcp-discovery-render-end
👉 The mcp-discovery-render marker supports template and template-file properties as well. Check the examples below for details.
You can optionally include an inline template identifier within the render block, enclosed by:
Template Block Start: mcp-discovery-template
Template Block End: mcp-discovery-template-end
If a template annotation is detected within a render block, mcp-discovery will use it to render the output. This allows for customized templates without depending on built-in or external template files. Check the examples below for details:
Sample Markdown file annotated with render block:
<!-- mcp-discovery-render -->
Server Capabilities will be placed here...
<!-- mcp-discovery-render-end -->
Sample Markdown file, annotated with render block and template name:
<!-- mcp-discovery-render template=md-plain -->
Server Capabilities will be placed here...
<!-- mcp-discovery-render-end -->
Sample Markdown file, annotated with render block and custom template file:
<!-- mcp-discovery-render template=my-custom-template.hbs -->
Server Capabilities will be placed here...
<!-- mcp-discovery-render-end -->
Below is a screenshot showing the resulting HTML after the mcp-discovery update command is executed:
You can execute the mcp-discovery update command whenever you need to refresh the file with the latest MCP Server capabilities.
Contributing
We welcome everyone who wishes to contribute! Please refer to the contributing guidelines for more details.
All contributions, including issues and pull requests, must follow
Rust's Code of Conduct.
Unless explicitly stated otherwise, any contribution you submit for inclusion in mcp-discovery is provided under the terms of the MIT License, without any additional conditions or restrictions.
License
This project is licensed under the MIT License. see the LICENSE file for details.