Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cogniscape.app/llms.txt

Use this file to discover all available pages before exploring further.

Claude (web, Desktop, mobile)

The installed Claude Desktop app does not natively accept Streamable HTTP connectors, but the claude.ai web interface does, and the Desktop, iPhone, and Android apps all inherit connectors from the web account. Configure once on the web and it works everywhere.
1

Open the custom connector dialog

Sign in at claude.ai and open the Add custom connector dialog directly.
2

Fill in the fields

  • Name: Cogniscape
  • Remote MCP server URL: https://mcp.cogniscape.app
Claude custom connector dialog with Name and Remote MCP server URL fields
3

Authenticate

Click Add. Claude will open the Cogniscape OAuth flow. Sign in with your Cogniscape account to authorize the connector.
4

Use it anywhere

The connector is now available on claude.ai, Claude Desktop, and the Claude iOS and Android apps under the same account. No per-device setup.

Claude Code (CLI)

Run this command in your terminal to add Cogniscape as an MCP server available across all your projects:
claude mcp add --transport http --scope user cogniscape https://mcp.cogniscape.app
To verify the server is connected, run /mcp inside a Claude Code session. To limit the server to a single project, replace --scope user with --scope local.

Cursor

Open Cursor and go to Settings > MCP, then click Add new MCP Server. Alternatively, create or edit the file ~/.cursor/mcp.json for global access:
{
  "mcpServers": {
    "cogniscape": {
      "type": "http",
      "url": "https://mcp.cogniscape.app"
    }
  }
}
For project-level configuration, place the file at .cursor/mcp.json in your project root instead. The server should appear with a green status indicator in Cursor settings after saving.

Codex (OpenAI CLI)

Run this command in your terminal:
codex mcp add --url https://mcp.cogniscape.app cogniscape
This saves the configuration to ~/.codex/config.toml. Restart Codex CLI to pick up the new server.

OpenCode

Create or edit opencode.json in your project root and add:
{
  "mcp": {
    "cogniscape": {
      "type": "remote",
      "url": "https://mcp.cogniscape.app"
    }
  }
}
Restart OpenCode after saving. Run opencode mcp list to verify the server is connected.