ClarityLoop MCP
ClarityLoop MCP lets you connect MCP-compatible clients (ChatGPT, Claude Desktop, IDE assistants, or custom tools) to your ClarityLoop data. Use it to pull context, summarize updates, draft feedback, or explore goals directly inside your AI workspace.
Watch the walkthroughβ
Watch this walkthrough to see how MCP works, which endpoints to use, and how to connect supported clients cleanly.
What the MCP integration includesβ
-
Access ClarityLoop context in MCP clients
- Pull feedback, 1:1s, OKRs, and other workspace data into your AI tool.
- Keep context fresh without switching back and forth between apps.
-
Two authentication options
- OAuth for clients that support it (recommended).
- API key headers for lightweight or custom integrations.
-
Personal, revocable access
- MCP API keys are personal to your account.
- You can rotate or revoke them anytime.
Generate an MCP API keyβ
- In ClarityLoop, go to Workspace β Integrations.
- Scroll to Personal Integrations β Personal MCP API Keys.
- Click Generate API Key.
- Copy the key and store it securely (itβs shown only once).
β
MCP keys start with the prefix clp_mcp_.
Connect using OAuth (recommended)β
Use OAuth when your client supports it (ChatGPT, Claude Desktop, MCP Inspector).
- Start the connection using your MCP server URL.
- Your client will open a browser window for authorization.
- When prompted, paste your MCP API key to authorize access.
MCP URLs
- HTTP endpoint:
https://mcp.clarityloop.com/mcp - SSE endpoint (for
mcp-remote):https://mcp.clarityloop.com/sse
Example: MCP Inspectorβ
npx @modelcontextprotocol/inspector https://mcp.clarityloop.com/mcp
Example: Claude Desktopβ
{
"mcpServers": {
"ClarityLoop": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.clarityloop.com/sse"
]
}
}
}
Connect using API key headersβ
Use this for tools that only support custom headers or direct HTTP calls.
Header
X-ClarityLoop-Api-Key: <your_mcp_api_key>
Example (HTTP endpoint)
https://mcp.clarityloop.com/mcp
Security and key rotationβ
- Keep MCP API keys private.
- Revoke any key you no longer use.
- If a key is lost, generate a new one and update your MCP client.
FAQsβ
Is the MCP key shared across my workspace?
No. MCP API keys are personal to your account.
What if I lose my key?
Generate a new key and update the MCP client. Lost keys cannot be recovered.
Which endpoint should I use?
Use /mcp for direct MCP clients and /sse when a tool uses mcp-remote.