We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Arize-ai/phoenix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { PromptModelProvider } from "../../types/prompts";
export const SUPPORTED_SDKS = ["openai", "anthropic", "ai"] as const;
export const SUPPORTED_SDK_TO_PROMPT_MODEL_PROVIDER = {
openai: "OPENAI",
anthropic: "ANTHROPIC",
} satisfies Partial<
Record<(typeof SUPPORTED_SDKS)[number], PromptModelProvider>
>;