We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d85ee7 commit f87d947Copy full SHA for f87d947
Cargo.toml
@@ -17,12 +17,18 @@ homepage = "https://rust-mcp-stack.github.io/mcp-discovery"
17
license = "MIT"
18
edition = "2021"
19
20
+[lib]
21
+name = "mcp-discovery"
22
+path = "src/lib.rs"
23
+
24
[package.metadata.wix]
25
upgrade-guid = "F8C005B2-0006-40E0-93CF-01A2DA37CAB7"
26
path-guid = "FE1B50BA-4553-470C-8819-8575C25AE238"
27
license = false
28
eula = false
29
30
+[package.metadata.docs.rs]
31
+all-features = true # Build with all features
32
33
[dependencies]
34
rust-mcp-sdk = "0.2"
src/lib.rs
@@ -1,3 +1,5 @@
1
+//! A lightweight CLI tool for discovering and documenting MCP Server capabilities.
2
3
pub mod error;
4
mod handler;
5
mod render_template;
0 commit comments