Connections for Developers
This doc shows you how to connect different development tools to Guru's MCP Server.
Cursor IDE
- In Settings → Cursor Settings → Tools & MCP, click “New MCP Server”
- Add Guru's MCP to the
mcp.jsonfile and save the file and close it
{
"mcpServers": {
"Guru": {
"url": "https://mcp.api.getguru.com/mcp"
}
}
}- Under Installed MCP Servers, click "Connect" next to the Guru MCP you just installed
- Grant permissions for Cursor to access Guru via MCP
Claude Code
- After installing Claude Code, open a terminal window to interact with Claude CLI
- Run
claude mcp add --transport http guru https://mcp.api.getguru.com/mcpto install Guru's MCP server - Run
claude mcp listto view all installed MCP servers and make sure Guru MCP is included. You'll see that the MCP server still needs authentication - To authenticate, open Claude Code by executing
claude - Once you're in Claude Code, type
/mcpto manage your MCP servers. Navigate the the one you just created for Guru and click Enter - Choose Authenticate. This will open a browser window where you'll be prompted to accept the necessary permissions.
OpenAI Agent Builder
- Open your agent in Agent Builder and click the + next to Tools, then choose MCP Server.
- Alternatively, open your MCP node and click + Add
- Click + Server at the top right to add a new MCP server.
- In your terminal, base64 encode your Guru email address and API token. Do not include the curly brackets. The output here will be used in step 4.
echo -n "{email}:{api_token}" | base64-
Fill out the following fields:
- URL:
https://mcp.api.getguru.com/mcp - Label:
guru_mcp_server - Description: Guru MCP Server
- Authentication: Custom headers
- header:
Authorization - value:
Basic {output_from_step_3}
- header:
- URL:
- Click Connect - this will establish the connection to Guru's MCP server
- Select the Guru tools you'd like your agent to have access to
- Click Add
Custom MCP Client
If you’re building your own MCP-compatible app:
- Use the MCP client SDK in your language of choice
- Configure Guru’s endpoint:
https://mcp.api.getguru.com/mcp - Provide your credentials (OAuth or token)
- The SDK handles all protocol communication automatically
Updated 12 days ago
