CClarity MCP
CClarity connects AI assistants (Claude, ChatGPT, Cursor, etc.) to your LinkedIn world inside the CClarity platform: profile and business context, ICP, writing style, post analytics, profile viewers, outbound engagement history, inbound “who engaged” on your posts, connection invitations, and followers.
Remote MCP runs on https://api.cclarity.io (Streamable HTTP). End users typically connect via the published stdio bridge @cclarity-packages/mcp (browser OAuth + local proxy).
Who it’s for
- Founders, creators, and GTM teams who already use CClarity and want the same data inside an MCP-capable client.
- Not a generic LinkedIn scraper: data is tenant-scoped and tied to your CClarity account and LinkedIn connection (Unipile).
Requirements
- CClarity account with an active paid subscription (connector gates apply).
- LinkedIn connected through CClarity / Unipile (connector gates apply).
- OAuth 2.1 sign-in through the CClarity web flow when using the official stdio connector.
Details: MCP & connector docs
Tools (high level)
| Tool | Purpose |
|---|---|
get_user_context | Profile, ICP, writing style, content preferences — call early in a session. |
update_profile | Update stored profile / ICP / style fields (partial updates). |
get_post_performance | Your posts and performance metrics. |
get_profile_viewers | Recent profile viewers. |
get_my_activity_engagements | Your outbound reactions/comments on others’ posts. |
get_who_engaged | Engagers on your posts (reactions, comments, replies). |
get_my_received_invitations | Connection invites you received. |
get_my_sent_invitations | Connection invites you sent. |
get_my_followers | Your LinkedIn followers (where supported). |
Responses use a structured Live Artifact-friendly contract (schemaVersion: 2, items[], summaryText, etc.). See product docs for field semantics.
Quick install (Claude / Cursor style)
Use the Server config from the listing (stdio → remote), or match your local .mcp.json:
command:npxargs:-y,@cclarity-packages/mcp,cclarity-mcpenv:CCLARITY_MCP_URL=https://api.cclarity.io
Then complete login in the browser when the connector prompts you.
Links
- Smithery: https://smithery.ai/servers/cclarity/linkedin-mcp
- Product: https://cclarity.io
Listing on MCP.so
Server Config
{
"mcpServers": {
"cclarity": {
"command": "npx",
"args": [
"-y",
"@cclarity-packages/mcp",
"cclarity-mcp"
],
"env": {
"CCLARITY_MCP_URL": "https://api.cclarity.io"
}
}
}
}