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 { register } from "@arizeai/phoenix-otel";
const ENDPOINT = process.env.PHOENIX_HOST;
const PROJECT_NAME = "experiments-tutorial-ts";
if (!ENDPOINT) {
// eslint-disable-next-line no-console
console.warn("⚠️ PHOENIX_HOST not set, tracing will not be enabled");
} else {
register({
url: ENDPOINT,
projectName: PROJECT_NAME,
apiKey: process.env.PHOENIX_API_KEY,
batch: false,
});
}