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, trace } from "../src";
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const provider = register({
url: "http://localhost:6006/v1/traces",
apiKey: "your-api-key",
projectName: "example-app",
batch: false,
});
const tracer = trace.getTracer("my-app");
tracer.startActiveSpan("custom-span", (span) => {
// do something
span.end();
});