MCP Integration
VoiceRun provides an MCP (Model Context Protocol) server that allows MCP clients to interact with the VoiceRun API.
All documentation you find here is also available via the MCP server.
The quickest way to configure MCP is via the CLI setup command:
vr setup. It automatically configures the MCP server for your editor. See the VoiceRun CLI overview for details.
MCP Server URL:
https://api.voicerun.com/v1/mcp
Claude Code#
Global Configuration#
Available in all projects.
~/.claude.json:
{ "mcpServers": { "voicerun": { "type": "http", "url": "https://api.voicerun.com/v1/mcp" } } }
Project-Specific Configuration#
Add to an individual project only.
.mcp.json (in project root):
{ "mcpServers": { "voicerun": { "type": "http", "url": "https://api.voicerun.com/v1/mcp" } } }
CLI#
You can also add the server via command line:
claude mcp add --transport http voicerun https://api.voicerun.com/v1/mcp
Cursor#
Cursor 1.0+ supports native HTTP MCP servers.
Global Configuration#
Available in all projects.
~/.cursor/mcp.json:
{ "mcpServers": { "voicerun": { "url": "https://api.voicerun.com/v1/mcp" } } }
Project-Specific Configuration#
Add to an individual project only.
.cursor/mcp.json (in project root):
{ "mcpServers": { "voicerun": { "url": "https://api.voicerun.com/v1/mcp" } } }
Settings UI#
You can also configure MCP servers via the Cursor UI:
- Open Settings → Features → MCP Servers
- Click Add new MCP server
- Enter the server URL:
https://api.voicerun.com/v1/mcp
Codex#
Global Configuration#
~/.codex/config.toml:
[mcp_servers.voicerun] url = "https://api.voicerun.com/v1/mcp"
Project-Specific Configuration#
.codex/config.toml (in project root, trusted projects only):
[mcp_servers.voicerun] url = "https://api.voicerun.com/v1/mcp"
CLI#
You can also add the server via command line:
codex mcp add voicerun --url https://api.voicerun.com/v1/mcp
ChatGPT#
ChatGPT supports MCP servers via the Connectors feature. Available on Pro, Plus, Team, Enterprise, and Edu plans.
Settings UI#
- Open Settings → Connectors
- Click Create
- Enter the server URL:
https://api.voicerun.com/v1/mcp - Name it "VoiceRun"
- Click Save
Enable Developer Mode (Recommended)#
For full MCP tool access (not just search/fetch), enable Developer Mode:
- Go to Settings → Connectors → Advanced
- Enable Developer mode
Note: ChatGPT only supports remote HTTPS servers.
Claude Desktop#
Settings UI (Recommended)#
The easiest way to add MCP servers in Claude Desktop is via the Connectors UI:
- Open Settings → Connectors
- Click Add custom connector
- Enter the server URL:
https://api.voicerun.com/v1/mcp - Click Add
To enable the connector in a conversation, click the + button in the chat interface, then Connectors, and toggle VoiceRun on.
Note: Custom connectors are available on Pro, Max, Team, and Enterprise plans.
Config File#
Alternatively, you can configure via the config file. Claude Desktop requires the mcp-remote bridge for HTTP servers.
~/Library/Application Support/Claude/claude_desktop_config.json:
{ "mcpServers": { "voicerun": { "command": "npx", "args": ["mcp-remote", "https://api.voicerun.com/v1/mcp"] } } }
Restart the Claude Desktop app after saving.
Windsurf#
Global Configuration#
~/.codeium/windsurf/mcp_config.json:
{ "mcpServers": { "voicerun": { "serverUrl": "https://api.voicerun.com/v1/mcp" } } }
Settings UI#
You can also configure MCP servers via the Windsurf UI:
- Open Windsurf Settings → Cascade → MCP Servers
- Click Add Server → Add custom server
- Enter the server URL:
https://api.voicerun.com/v1/mcp
