Cclarity Linkedin Mcp

Created By
CClaritya month ago
CClarity is a remote MCP server that exposes LinkedIn-aligned tenant data to AI assistants: profile and company context, ICP and writing style, post performance, profile viewers, outbound activity (reactions/comments), who engaged on your posts, connection invitations (in/out), and followers. Setup: install the stdio bridge with npx -y @cclarity-packages/mcp (see Server Config) pointed at https://api.cclarity.io. Auth: OAuth 2.1 via the CClarity app; access: an active paid subscription and a connected LinkedIn account (Unipile) are required before gated tools return data.
Overview

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)

ToolPurpose
get_user_contextProfile, ICP, writing style, content preferences — call early in a session.
update_profileUpdate stored profile / ICP / style fields (partial updates).
get_post_performanceYour posts and performance metrics.
get_profile_viewersRecent profile viewers.
get_my_activity_engagementsYour outbound reactions/comments on others’ posts.
get_who_engagedEngagers on your posts (reactions, comments, replies).
get_my_received_invitationsConnection invites you received.
get_my_sent_invitationsConnection invites you sent.
get_my_followersYour 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: npx
  • args: -y, @cclarity-packages/mcp, cclarity-mcp
  • env: CCLARITY_MCP_URL=https://api.cclarity.io

Then complete login in the browser when the connector prompts you.



Listing on MCP.so

smithery badge

Server Config

{
  "mcpServers": {
    "cclarity": {
      "command": "npx",
      "args": [
        "-y",
        "@cclarity-packages/mcp",
        "cclarity-mcp"
      ],
      "env": {
        "CCLARITY_MCP_URL": "https://api.cclarity.io"
      }
    }
  }
}
Project Info
Created At
a month ago
Updated At
a month ago
Author Name
CClarity
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Trainzilla Mcp

8 hours ago
Shippo
@Shippo

2 days ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

a day ago