Connect your client

Connect Claude

Add the Linkeddit connector to Claude.ai connectors, Claude Desktop, and Claude Code over OAuth.

Claude.ai connectors

  1. In Claude.ai, open Settings, then Connectors, and choose Add custom connector.
  2. Enter the connector URL: https://mcp.linkeddit.com/mcp
  3. When prompted, set the OAuth Client ID to linkeddit-mcp-claude and leave the Client Secret empty. Claude.ai shows this because Linkeddit does not support automatic (dynamic) client registration — you paste the pre-registered ID instead.
  4. Click through the OAuth sign-in with your Linkeddit account. There is no secret or header to configure — it's a public PKCE client.
  5. Open a chat and confirm the Linkeddit tools appear, then ask it to list your Answer Radar projects.
If you see "Automatic client registration isn't supported by linkeddit. Edit the connector and add an OAuth Client ID," that is expected — edit the connector and enter linkeddit-mcp-claude as the Client ID (no secret).

Claude Desktop / Claude Code

Add an HTTP MCP server with no headers. The client opens a browser window for the OAuth authorization the first time it connects:

{
  "mcpServers": {
    "linkeddit": {
      "type": "http",
      "url": "https://mcp.linkeddit.com/mcp"
    }
  }
}json

Claude Code users can instead run claude mcp add --transport http linkeddit https://mcp.linkeddit.com/mcp and authorize when prompted.