Everything you need to integrate RankedIn with Claude, Cursor, and other AI tools.
RankedIn exposes a Model Context Protocol server at https://rankedin.app/api/mcp. This lets Claude, Cursor, Windsurf, and other MCP-compatible clients answer career questions using your own LinkedIn data.
Click Add Integration in Claude.ai settings and enter:
https://rankedin.app/api/mcp
You'll be prompted to sign in to RankedIn via OAuth — no API key needed.
Install mcp-remote then add to claude_desktop_config.json:
{
"mcpServers": {
"rankedin": {
"command": "npx",
"args": [
"mcp-remote",
"https://rankedin.app/api/mcp",
"--header",
"Authorization: Bearer rkin_YOUR_API_KEY"
]
}
}
}{
"mcpServers": {
"rankedin": {
"url": "https://rankedin.app/api/mcp",
"headers": { "Authorization": "Bearer rkin_YOUR_API_KEY" }
}
}
}All tools are read-only (readOnlyHint: true). Each accepts an optional analysis_id — omit to use the most recent analysis.
get_my_scoresReturns overall score (0–100) and 8 dimension scores: Network, Engagement, Credibility, Outreach, Content, Career, Learning, Influence.
get_network_summaryReturns total connections, growth rate, avg new connections/month, reactions, comments, recommendations given/received, and account age.
get_peer_comparisonReturns global and peer-group percentile rankings per dimension, compared against users with the same job level and industry.
get_connection_insightsReturns silent quitters (people who disconnected since the last analysis) and new connections, with names and companies.
get_improvement_tipsReturns AI-generated summary, strengths, areas for improvement, and actionable recommendations from Gemini AI.
get_career_timelineReturns career pattern, target role, skill gaps, next steps, peer career pathways, and job search insights derived from your LinkedIn Jobs folder.
All endpoints require Authorization: Bearer rkin_YOUR_API_KEY. Full OpenAPI spec available at rankedin.app/openapi.json.
RankedIn supports the OAuth 2.0 Authorization Code flow for integrations like Claude.ai and ChatGPT Custom GPTs.
https://rankedin.app/oauth/authorizehttps://rankedin.app/api/oauth/tokenreadBearer rkin_...To register a new OAuth client, contact support@rankedin.app.
Claude says "No completed analyses found"
Upload a LinkedIn export at rankedin.app/dashboard. Make sure the analysis status is "completed" before querying.
Career intelligence returns "not available"
Re-export from LinkedIn and include the Jobs/ folder (job applications, saved jobs). This data is only present in the full archive export.
Many metrics show N/A
Request the full LinkedIn data archive (not the quick export). The full archive includes Reactions.csv, Comments.csv, Recommendations.csv, and Registration.csv which populate the remaining metrics.
Claude Desktop: MCP not connecting
Claude Desktop does not support the url/headers format. Install mcp-remote (npm install -g mcp-remote) and use the command/args config shown above.
API returns 401 Unauthorized
Check that your API key starts with rkin_ and is passed as: Authorization: Bearer rkin_YOUR_KEY