
Circleback's Model Context Protocol (MCP) server provides a standardized interface that allows any compatible AI app to access your Circleback data in a simple and secure way.
The MCP server follows the authenticated remote MCP spec, so the server is centrally hosted and managed.
Tools
The Circleback MCP server has tools available for searching and accessing data from your Circleback account like meetings, transcripts, calendar events, emails, people, and companies.
Setup
General
Our MCP server supports Streamable HTTP transports. It uses OAuth with dynamic client registration for authentication at https://app.circleback.ai/api/mcp.
Claude
Go to Settings from the sidebar on web or desktop
Select Connectors in the settings sidebar and click Browser connectors
Search for Circleback and click + to connect
ChatGPT
Go to Settings from the sidebar
Select Advanced settings and toggle on Developer mode
Click Create app and enter:
Name: Circleback
MCP Server URL:https://app.circleback.ai/api/mcpClick Create
Right now, ChatGPT only supports using MCP in developer mode. Add Circleback to a chat by clicking +.
Raycast
Click here to install the Circleback MCP server in Raycast.
In root search, AI Commands, or AI Chat, type @circleback to mention and use the tools provided by Circleback MCP.
Claude Code
Open your terminal and run the following command
claude mcp add --transport http circleback https://app.circleback.ai/api/mcp
Run
/mcponce you've opened a Claude Code session to go through the authentication flow
Cursor
Click here to to add the Circleback MCP server to Cursor.
Codex
The setup steps are the same regardless of whether you use the IDE Extension or the CLI since the configuration is shared.
Configuration via CLI
Run the following command in Terminal
codex mcp add circleback --url https://app.circleback.ai/api/mcp
This will automatically prompt you to log in with your Circleback account and connect it to Codex.
Note: If this is the first time you are using an MCP in Codex you will need to enable thermcpfeature for this to work. Add the following to your~/.codex/config.toml[features]
experimental_use_rmcp_client = true
Configuration through environment variables
Open the
~/.codex/config.tomlfile in your preferred editor and add the following[features]
experimental_use_rmcp_client = true
[mcp_servers.circleback]
url = "https://app.circleback.ai/api/mcp"Run
codex mcp login circlebackto go through the authentication flow


