We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/robhicks/browser-mcp-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
lib.rs•350 B
pub mod cache;
pub mod config;
pub mod server;
pub mod tools;
pub mod transport;
pub mod types;
// Re-export the essential working types
pub use config::ServerConfig;
pub use server::{SimpleBrowserMcpServer, start_combined_server};
pub use cache::BrowserDataCache;
pub use transport::ConnectionPool;
pub use types::errors::{BrowserMcpError, Result};