Claude · Cursor · Zed
Add the Flux connector once and Claude can read any public profile’s posts, search a topic semantically, and walk the engagement graph — inside the conversation you’re already having.
https://fluxgraph.app/mcp· auth: bearer API keySetup · 60 seconds
Flux exposes a single Streamable-HTTP MCP endpoint at https://fluxgraph.app/mcp. Auth is a bearer token — one API key per user.
Log in and open Settings → MCP, then click Generate MCP key. The key is shown exactly once — copy it straight into your client config. Keys start with flux_ and you can revoke and regenerate at any time.
Claude Code — one command, replacing YOUR_API_KEY:
claude mcp add --transport http --scope user flux \ https://fluxgraph.app/mcp \ --header "Authorization: Bearer YOUR_API_KEY"
Claude Desktop — edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"flux": {
"type": "http",
"url": "https://fluxgraph.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Cursor, Zed, or anything that reads .mcp.json — drop the same block at your project root or in the client’s MCP config directory:
{
"mcpServers": {
"flux": {
"type": "http",
"url": "https://fluxgraph.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Fully quit and relaunch Claude Desktop — it picks up MCP servers on boot. Claude Code picks it up on the next session. Then ask: “List my tracked LinkedIn profiles.” Claude calls list_profiles. If that answers, all 63 tools are live.
Three things to ask first
Swap the placeholder for a LinkedIn profile or post URL and these run exactly as written.
“What are the top performing posts of <person> so I can study their content?”
Claude pulls their recent posts live, ranks them by engagement, and reads the text back so you can see the pattern rather than the leaderboard. Paste their LinkedIn profile URL in place of the placeholder.
linkedin_profile_postsget_posts
“What has <person> been paying attention to lately?”
Their reactions and comments — what they read and reply to. Usually a sharper signal than what they publish, and the fastest way into a warm conversation.
linkedin_profile_reactionslinkedin_profile_comments
“Who engaged with this post and which of them work at target accounts?”
Claude fetches the reactors and commenters, groups them by current employer, and surfaces the ones who are employees or alumni of the accounts you name.
linkedin_post_reactionsget_post_engagers_by_companyget_alumni_engagers
Troubleshooting
claude mcp list to confirm flux is registered and connected.flux_ and the header must read Authorization: Bearer flux_…. Generate a fresh one from Settings → MCP.get_credit_balance to see where you stand, or get_cost_estimate before anything expensive.Also available
The same endpoint works from OpenAI’s Codex CLI, and from anything else that speaks MCP over HTTP with a custom header.
Endpoint: https://fluxgraph.app/mcp · Docs
MCP access is on Edge — $15/month or $150/year, including all 63 tools and the dashboard.