We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jakedismo/codegraph-rust'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
lib.rs•820 B
// ABOUTME: MCP server entry (stdio/http) using core, tools, and autoagents crates
// ABOUTME: Thin runtime layer wiring transports and handlers
pub mod agentic_api_surface_prompts;
pub mod architecture_analysis_prompts;
pub mod call_chain_prompts;
pub mod code_search_prompts;
pub mod complexity_analysis_prompts;
pub mod context_builder_prompts;
pub mod dependency_analysis_prompts;
pub mod dependency_analysis_prompts_integration_example;
#[cfg(feature = "server-http")]
pub mod http_config;
#[cfg(feature = "server-http")]
pub mod http_server;
pub mod official_server;
pub mod prompt_selector;
pub mod prompts;
pub mod semantic_question_prompts;
#[cfg(feature = "server-http")]
pub use http_config::*;
#[cfg(feature = "server-http")]
pub use http_server::*;
pub use official_server::*;
pub use prompt_selector::*;