Connect Pipecat Context Hub to Cursor as an MCP server over stdio.
Build the local index before serving. The first run downloads the package, models, and sources — allow a few minutes:
uvx pipecat-ai-context-hub refreshThis populates ~/.pipecat-context-hub/.
Create .cursor/mcp.json in your project root:
{
"mcpServers": {
"pipecat-context-hub": {
"command": "uvx",
"args": ["pipecat-ai-context-hub", "serve"],
"env": {}
}
}
}Create or edit ~/.cursor/mcp.json (same format as above).
- Open your project in Cursor.
- Open Cursor Settings > MCP to confirm
pipecat-context-hubappears and shows a green status. - In the AI chat, ask a question about Pipecat — the server's tools should be invoked automatically.
You can also verify the server starts correctly from the command line:
uvx pipecat-ai-context-hub serve --help- Server not appearing: Ensure
.cursor/mcp.jsonexists in your project root directory. - Command not found: Ensure
uvis installed and on your PATH (uvxships withuv). - Empty results: Run
uvx pipecat-ai-context-hub refreshto populate the index. - Red status indicator: Check the Cursor MCP logs for error details.