We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FreePeak/ktme'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
lib.rs•291 B
//! ktme - Knowledge Transfer Me
//!
//! Rust-based CLI tool and MCP server for automated documentation generation.
pub mod ai;
pub mod cli;
pub mod config;
pub mod doc;
pub mod error;
pub mod git;
pub mod mcp;
pub mod service_detector;
pub mod storage;
pub use error::{Result, KtmeError};