FoxTrove

FoxTrove Voice MCP Server

Read-only Model Context Protocol server for FoxTrove Voice. Connect any MCP client — Claude Desktop, Cursor, ChatGPT, Zed, custom agents — to your voice-call history, transcripts, customer context, open follow-ups, and analytics.

Server URL

https://mcp.voice.foxtrove.ai/mcp

Authentication is OAuth 2.1 with PKCE — clients that support Streamable HTTP with OAuth will trigger the sign-in flow automatically. No API keys, no manual tokens.

Claude Desktop

Open Settings → Developer → Edit Config, then add:

{
  "mcpServers": {
    "foxtrove-voice": {
      "url": "https://mcp.voice.foxtrove.ai/mcp"
    }
  }
}

Cursor

Open Settings → MCP → Add new MCP Server and paste the server URL, or edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "foxtrove-voice": {
      "url": "https://mcp.voice.foxtrove.ai/mcp"
    }
  }
}

ChatGPT (web)

In ChatGPT, go to Settings → Connectors → Add MCP server and enter https://mcp.voice.foxtrove.ai/mcp. ChatGPT will walk you through the OAuth sign-in.

Any Streamable HTTP client

Point your client at the server URL over HTTP POST. Requests must include an OAuth 2.1 access token issued by voice.foxtrove.ai. Discovery doc lives at voice.foxtrove.ai/.well-known/oauth-authorization-server.

# Streamable HTTP transport
POST https://mcp.voice.foxtrove.ai/mcp
Authorization: Bearer <oauth-access-token>
Content-Type: application/json

Links