Skip to main content
The Cartesia MCP server provides a way for clients such as Cursor and Claude Desktop to interact with Cartesia’s voice platform. This guide will walk you through how to install and use the server.
  1. Ensure you have a Cartesia API key.
  2. Install the mcp python package
pip install cartesia-mcp
which cartesia-mcp # absolute path to executable

Client Integration

Add the following to your claude config file which can be found by visiting Claude Settings > Developer > Edit Config. Make sure to restart Claude Desktop.
{
  "mcpServers": {
    "cartesia-mcp": {
      "command": "<absolute-path-to-executable>",
      "env": {
        "CARTESIA_API_KEY": "<insert-your-api-key-here>",
        "OUTPUT_DIRECTORY": // directory to store generated files (optional)
      }
    }
  }
}

cartesia-mcp

The official Cartesia MCP Server
I