We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jfarcand/pierre_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mod.rs•355 B
// ABOUTME: Infrastructure module for MCP integration tests
// ABOUTME: Provides test server lifecycle management and MCP HTTP client
//
// SPDX-License-Identifier: MIT OR Apache-2.0
// Copyright (c) 2025 Pierre Fitness Intelligence
pub mod mcp_client;
pub mod test_server;
pub use mcp_client::McpTestClient;
pub use test_server::IntegrationTestServer;