MCP

How to Add Linkeddit as a Claude Connector (MCP Setup Guide)

Linkeddit is available as a remote MCP connector for Claude AI. Once connected, you can search Reddit, fetch posts and comments, query your leads database, and view AI-generated user insights directly from Claude. This guide walks through setup for every supported client.

What is a Claude Connector?

A Claude Connector is a remote MCP server that Claude can access to use external tools. Instead of copying data between apps, Claude calls the connector's tools directly and returns structured results in the conversation.

Linkeddit's connector exposes 9 tools: 4 for Reddit data (search, subreddit posts, comments, raw JSON) and 5 for lead intelligence (search leads, user profiles, user posts, user comments, AI insights).

Prerequisites

You need a Linkeddit Pro subscription and MCP API credentials. Generate credentials at linkeddit.com/mcp/keys. You will get a client ID (starts with lnkd_) and a client secret (starts with lnkd_sec_). Save the secret immediately as it is shown only once.

Setup: Claude.ai (Web)

Go to Settings then Connectors in Claude.ai. Click Add Connector. Enter the URL: https://linkeddit.com/api/mcp/reddit/mcp. Enter your client ID and client secret when prompted. Click Connect. You will see the Linkeddit consent page. Click Allow. The connector is now active and you can use all 9 tools in any conversation.

Setup: Claude Desktop

Open your Claude Desktop config file at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS. Add the Linkeddit server using npx mcp-remote as the bridge. Use the full path to a Node.js 20+ npx binary if your default node version is older than 20. Restart Claude Desktop after saving.

Setup: Claude Code

Add a .mcp.json file to your project root with the Linkeddit server configured using type http. Set the URL to https://linkeddit.com/api/mcp/reddit/mcp and include your X-Client-Id and X-Client-Secret in the headers object. Claude Code supports HTTP transport natively so no bridge is needed.

Setup: Cursor and Windsurf

Cursor and Windsurf require the npx mcp-remote bridge. Add the Linkeddit server to your MCP config using command npx with args -y mcp-remote followed by the URL and --header flags for your credentials. The mcp-remote package translates HTTP MCP to stdio transport.

Setup: VS Code

VS Code supports HTTP transport for MCP servers. Add Linkeddit to your VS Code MCP settings with type http, the URL, and your credentials in the headers object. No bridge needed.

Example prompts to try

Once connected, try prompts like: Search r/SaaS for posts about CRM tools this month and summarize the top pain points. Or: Find leads in my database from r/entrepreneur with a contactability score above 70. Or: Get the full profile and AI insights for a specific Reddit user and suggest an outreach approach.

Rate limits and security

MCP access requires a Pro subscription. Rate limits are 1000 requests per day and 30 requests per minute. Credentials are hashed with SHA-256 and never stored in plaintext. OAuth tokens expire after 1 hour. All connections use HTTPS.

FAQ

What is a Claude Connector?

A Claude Connector is a remote MCP server that Claude AI can access to use external tools. Linkeddit's connector gives Claude access to Reddit search, subreddit monitoring, lead intelligence, and user profile tools.

How do I add Linkeddit as a Claude Connector?

Go to Settings then Connectors in Claude.ai. Click Add Connector. Enter the URL https://linkeddit.com/api/mcp/reddit/mcp along with your client ID and secret from linkeddit.com/mcp/keys. Click Connect and authorize access.

Do I need a Pro subscription to use MCP?

Yes. MCP access is a Pro feature. You need an active Pro Monthly subscription or Lifetime Deal to generate MCP credentials and use the connector.

Which Claude clients support Linkeddit MCP?

Linkeddit MCP works with Claude.ai (web), Claude Desktop, Claude Code, Cursor, VS Code, and Windsurf. Any MCP-compatible client that supports HTTP or SSE transport can connect.

Is my data secure when using MCP?

Yes. Credentials are hashed with SHA-256 and never stored in plaintext. OAuth tokens are signed with HMAC and expire after 1 hour. All communication uses HTTPS. Your leads data is tenant-isolated so you can only access your own leads.

Related help pages