Profound Remote MCP Server
Connect your AI client to Profound analytics. The first connection signs you in through Profound; subsequent sessions refresh in the background.
Read the Profound MCP overview for capabilities and supported tools.
https://mcp.tryprofound.com/mcp
Streamable HTTP transport.
Claude
Available on Free, Pro, Max, Team, and Enterprise plans across claude.ai, Claude Desktop, and mobile. Free accounts are limited to one connector.
- Go to Customize → Connectors.
- Click + then Add custom connector.
- Paste the server URL above and click Add. Sign in when prompted.
- An Owner goes to Organization settings → Connectors → Add → Custom → Web.
- Paste the server URL and click Add.
- Members then go to Customize → Connectors and click Connect to authenticate.
Claude Desktop
Available on Claude Pro, Max, Team, and Enterprise plans. Native OAuth, no proxy.
- Open Claude Desktop.
- Go to Settings -> Connectors -> Add custom connector.
- Paste the server URL above. Your browser opens for sign-in.
Older Desktop without Connectors? Use mcp-remote instead
Edit your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows) and add:
{
"mcpServers": {
"profound": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://mcp.tryprofound.com/mcp"
]
}
}
}
Claude Code (CLI)
Run the command, then trigger OAuth from inside Claude Code.
claude mcp add --transport http profound https://mcp.tryprofound.com/mcp
Inside Claude Code, run /mcp. The first run opens a browser for sign-in and caches the token.
Cursor
One-click install or paste manually.
Or edit ~/.cursor/mcp.json manually
{
"mcpServers": {
"profound": {
"url": "https://mcp.tryprofound.com/mcp"
}
}
}
VS Code
Use the deep link or create .vscode/mcp.json in your workspace.
Or paste this in .vscode/mcp.json
{
"servers": {
"profound": {
"type": "http",
"url": "https://mcp.tryprofound.com/mcp"
}
}
}
Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"profound": {
"serverUrl": "https://mcp.tryprofound.com/mcp"
}
}
}
MCP Inspector
For debugging and exploring tools.
npx @modelcontextprotocol/inspector
Then enter the server URL above.
Troubleshooting
- Browser didn't open in Claude Code: copy the URL printed in the terminal and open it manually.
- Tools don't appear after mcp add: restart the client; some clients only load MCP config at startup.
- Reset cached OAuth tokens: in Claude Code use /mcp -> Clear authentication; otherwise rm -rf ~/.mcp-auth/.
- Need a fixed callback port: add --callback-port 8080 to claude mcp add.
- Make sure Node.js 18+ is installed if any client falls back to mcp-remote.