Skip to main content
Glama
egig

linkedin-mcp

by egig

linkedin-mcp

A local MCP (Model Context Protocol) server that lets Claude log in to LinkedIn and publish image posts to your personal profile feed, backed by LinkedIn's REST Images API and Posts API.

Scope: two tools, linkedin_login and create_image_post. No org/company page posting, no scheduling, no carousels.

1. Create a LinkedIn Developer App

  1. Go to https://www.linkedin.com/developers/apps and click Create app. LinkedIn requires every app to be linked to a LinkedIn Page, even for personal-profile posting -- create a minimal Page first if you don't have one.

  2. Fill in the app name, select the Page, upload a logo (required), accept the agreement, and click Create app.

  3. In the Products tab, add:

    • Sign In with LinkedIn using OpenID Connect (grants openid, profile, email) -- self-serve, instant.

    • Share on LinkedIn (grants w_member_social) -- self-serve, instant.

  4. In the Auth tab, under OAuth 2.0 settings, add an Authorized redirect URL that exactly matches LINKEDIN_REDIRECT_URI below (default http://localhost:3000/callback, including the path -- must match byte-for-byte).

  5. Copy the Client ID and Client Secret from the Auth tab.

Known risk to watch for: the Microsoft Learn docs for /rest/images and /rest/posts live under "Community Management API," which normally needs a separate LinkedIn approval. Posting to your own profile with w_member_social

  • OpenID scopes has historically worked without that approval, but if your first create_image_post call comes back with a 403, that's the signal your app needs the Community Management API product added in the developer portal (approval-gated, outside this code's control).

Related MCP server: linkedin-mcp

2. Install and build

npm install
npm run build

3. Configure your MCP client

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "linkedin": {
      "command": "node",
      "args": ["/absolute/path/to/linkedin-mcp/dist/index.js"],
      "env": {
        "LINKEDIN_CLIENT_ID": "xxxx",
        "LINKEDIN_CLIENT_SECRET": "xxxx",
        "LINKEDIN_REDIRECT_URI": "http://localhost:3000/callback"
      }
    }
  }
}

Claude Code

Add the same shape to your project or user .mcp.json, or run:

claude mcp add linkedin node /absolute/path/to/linkedin-mcp/dist/index.js \
  --env LINKEDIN_CLIENT_ID=xxxx \
  --env LINKEDIN_CLIENT_SECRET=xxxx \
  --env LINKEDIN_REDIRECT_URI=http://localhost:3000/callback

Restart the client after editing config. You should see the server connected with two tools: linkedin_login and create_image_post.

4. Environment variables

See .env.example for the full list. Only LINKEDIN_CLIENT_ID and LINKEDIN_CLIENT_SECRET are required; everything else has a sane default.

Tokens are persisted to ~/.linkedin-mcp/tokens.json (mode 600) so you only need to log in once per ~60-day LinkedIn access token lifetime.

5. Usage

In a Claude conversation:

  • "Log in to LinkedIn" -> calls linkedin_login, opens your browser, and completes the OAuth flow. Calling it again when already logged in is a no-op unless you pass force: true.

  • "Post this image to LinkedIn with caption ..." -> calls create_image_post with imagePath or imageUrl, text, and optionally altText / visibility.

Development

npm run dev   # run directly via tsx, without building

All logging goes to stderr (console.error) -- stdout is reserved for the MCP JSON-RPC protocol stream over stdio.

Available Tools

2 tools
create_image_postCreate a LinkedIn image postA

Publish an image with text to the logged-in user's personal LinkedIn feed. Requires linkedin_login to have been run first. Provide exactly one of imagePath or imageUrl.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesThe post commentary/text.
altTextNoAlt text for accessibility.
imageUrlNoRemote URL of the image to fetch and post.
imagePathNoLocal filesystem path to the image.
visibilityNoPost visibility.PUBLIC

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses that it posts to personal feed and requires prior login. Could be improved by mentioning posting side effects (e.g., immediate publication) or failure scenarios, but adequate given no annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no redundancy. Front-loaded with action and target. Every word is purposeful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers prerequisites and parameter constraints, but does not describe return values (e.g., post ID, success indicator). Given low complexity and no output schema, this is a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Adds value beyond schema by specifying mutual exclusivity of 'imagePath' and 'imageUrl', which schema does not enforce. Schema coverage is 100%, so description augments rather than repeats.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states verb ('publish'), resource ('image with text'), and target ('logged-in user's personal LinkedIn feed'). Distinguishes from sibling 'linkedin_login' by making it a prerequisite.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states prerequisite ('Requires linkedin_login to have been run first') and parameter constraint ('Provide exactly one of imagePath or imageUrl'). Provides clear guidance for correct invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

linkedin_loginLog in with LinkedInA

Authenticate with LinkedIn via OAuth. Opens a browser for the user to log in and grant permissions. Only needed once -- tokens persist across sessions -- unless the token has expired or force is set.

ParametersJSON Schema
NameRequiredDescriptionDefault
forceNoRe-authenticate even if a valid session already exists.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses key behaviors: it opens a browser for OAuth, and tokens persist across sessions. It also explains the effect of the `force` parameter. However, it does not mention potential errors (e.g., user cancellation) or that the token is likely stored for future use, and there is no output schema. Despite no annotations, the description carries the burden well.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: first states the core function, second gives key usage guidance. No filler, every word adds value. Appropriate length for a simple authentication tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one optional param, no output schema), the description covers the purpose, usage context, and parameter behavior adequately. It lacks details on failure modes or token scope, but is sufficient for an agent to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes the `force` parameter fully (boolean, description). The description adds context by tying `force` to re-authentication when token expires, reinforcing the parameter's purpose. With 100% schema coverage, the description adds meaningful extra context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Authenticate' and resource 'LinkedIn via OAuth', and mentions opening a browser for user login and permission grant. It is distinct from the only sibling 'create_image_post', which is a content creation tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context on when to use: for authentication, emphasizing that it's only needed once due to token persistence. It explains when to use the `force` parameter. However, it does not explicitly state when not to use or mention alternatives, though the sibling tool is unrelated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv0.1.0
    • First observedcreate_image_post
    • First observedlinkedin_login

TDQS

A4.2/5.0
Disambiguation5/5

The two tools have completely distinct purposes: one handles authentication, the other handles posting. There is no overlap or ambiguity between them.

Naming Consistency3/5

Naming conventions are inconsistent: 'create_image_post' follows a verb_noun pattern while 'linkedin_login' follows a noun_noun pattern. However, both names are clear and understandable.

Tool Count3/5

With only 2 tools, the server feels thin for a social media platform, but it may be intentionally scoped to image posting only. The count is borderline acceptable.

Completeness3/5

The server covers the basic workflow of authentication and posting an image, but lacks operations like updating, deleting, or retrieving posts. Notable gaps exist for a complete CRUD surface.

Maintenance

ActivityStale
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    An intelligent bridge between Claude and LinkedIn. This MCP server empowers Claude to act as your high-level career consultant, capable of auditing your profile, optimizing your identity, and managing your professional content with real-time API access.
    1
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A personal-use remote MCP server that lets you post to LinkedIn, queue/schedule drafts, and pull your own post analytics from Claude.
    29
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    MCP server that posts to LinkedIn through the LinkedIn API. Enables creating text posts on your LinkedIn profile using natural language from any MCP-compatible client.
    3
    ISC
  • A
    license
    Not graded
    quality
    C
    maintenance
    LinkedIn MCP server for Claude to create posts, read profile, and get analytics.
    29
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/egig/linkedin-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server