// mcp server
Retrace MCP Server
Connect Claude, Codex, Cursor, Windsurf, and other MCP clients to recorded traces, semantic search, memory, fork replay, and shareable tapes.
Streamable HTTP
The hosted endpoint uses the MCP Streamable HTTP transport at api.retraceai.tech/mcp.
Automatic discovery
An AI Catalog on retraceai.tech points clients to a schema-valid MCP Server Card next to the endpoint.
Trace and memory tools
Agents can list and inspect traces, search spans, store and recall memories, and retrieve public tapes.
Explicit mutation approval
Replay and publishing tools require explicit user confirmation because they can spend quota or expose data.
mcp.json
{
"mcpServers": {
"retrace": {
"url": "https://api.retraceai.tech/mcp",
"headers": { "Authorization": "Bearer rt_..." }
}
}
}Configure any Streamable HTTP MCP client.
Discovery and connection URLs
- https://retraceai.tech/.well-known/ai-catalog.json — domain discovery
- https://api.retraceai.tech/mcp/server-card — MCP Server Card
- https://api.retraceai.tech/mcp — Streamable HTTP endpoint
- https://docs.retraceai.tech/mcp-server — complete tool reference
More for developers
// python sdkPython SDKRecord Python agents with one decorator// typescript sdkTypeScript SDKTrace TS/JS agents with a function wrapper// api referenceAPI ReferenceThe full REST + streaming API// authenticationAuthenticationAuthenticate Retrace API, SDK, CLI, and MCP calls// webhooksWebhooksReceive signed Retrace events in your application// command lineCLIScript Retrace workflows from a terminal or CI