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•377 B
// ABOUTME: Rig-based agent backend for CodeGraph MCP server
// ABOUTME: Alternative to AutoAgents using the Rig framework for LLM orchestration
pub mod adapter;
pub mod agent;
pub mod prompts;
pub mod tools;
// Re-exports for convenience
pub use agent::builder::RigAgentBuilder;
pub use agent::executor::RigExecutor;
pub use agent::RigAgentOutput;
pub use tools::ToolTrace;