mcp-server-linkedin
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-linkedinPublish a LinkedIn post about our new AI feature with an image"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Use Cases
Content Publishing: Draft and publish LinkedIn posts from your AI assistant without switching context.
Media Sharing: Upload images and videos alongside your posts in a single command.
Link Previews: Share articles with auto-generated link preview cards.
Multi-Format Workflow: Compose text-only updates, visual content, or article shares through one unified interface.
Account Management: Authenticate, check your profile, and manage your session without leaving your editor.
Built for developers and content creators who want their AI tools to publish directly to LinkedIn.
Quick Start
Prerequisites
Python 3.10+
LinkedIn App — Follow the step-by-step setup guide or the quick version below:
Create an app at LinkedIn Developer Portal
Products: "Share on LinkedIn" + "Sign In with LinkedIn using OpenID Connect"
OAuth 2.0 scopes:
openid,profile,email,w_member_socialRedirect URL:
http://localhost:3000/callback
Install
uvx mcp-server-linkedinOr with pip:
pip install mcp-server-linkedinRelated MCP server: LinkedIn MCP Server
Configuration
Set these environment variables:
LINKEDIN_CLIENT_ID=your_client_id # From LinkedIn Developer Portal
LINKEDIN_CLIENT_SECRET=your_secret_here # From LinkedIn Developer Portal
LINKEDIN_REDIRECT_URI=http://localhost:3000/callback # Optional, this is the defaultClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"linkedin": {
"command": "uvx",
"args": ["mcp-server-linkedin"],
"env": {
"LINKEDIN_CLIENT_ID": "your_client_id",
"LINKEDIN_CLIENT_SECRET": "your_secret_here"
}
}
}
}{
"mcpServers": {
"linkedin": {
"command": "uvx",
"args": ["mcp-server-linkedin"],
"env": {
"LINKEDIN_CLIENT_ID": "your_client_id",
"LINKEDIN_CLIENT_SECRET": "your_secret_here"
}
}
}
}VS Code + Copilot
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"linkedin": {
"command": "uvx",
"args": ["mcp-server-linkedin"],
"env": {
"LINKEDIN_CLIENT_ID": "your_client_id",
"LINKEDIN_CLIENT_SECRET": "your_secret_here"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"linkedin": {
"command": "uvx",
"args": ["mcp-server-linkedin"],
"env": {
"LINKEDIN_CLIENT_ID": "your_client_id",
"LINKEDIN_CLIENT_SECRET": "your_secret_here"
}
}
}
}Kiro
Add to .kiro/settings/mcp.json:
{
"mcpServers": {
"linkedin": {
"command": "uvx",
"args": ["mcp-server-linkedin"],
"env": {
"LINKEDIN_CLIENT_ID": "your_client_id",
"LINKEDIN_CLIENT_SECRET": "your_secret_here"
}
}
}
}Claude Code
claude mcp add linkedin -- uvx mcp-server-linkedinThen set LINKEDIN_CLIENT_ID and LINKEDIN_CLIENT_SECRET in your environment.
Windsurf
Add to your Windsurf MCP configuration:
{
"mcpServers": {
"linkedin": {
"command": "uvx",
"args": ["mcp-server-linkedin"],
"env": {
"LINKEDIN_CLIENT_ID": "your_client_id",
"LINKEDIN_CLIENT_SECRET": "your_secret_here"
}
}
}
}Running from Source
Replace "command": "uvx", "args": ["mcp-server-linkedin"] with:
{
"command": "uv",
"args": ["--directory", "/path/to/mcp-server-linkedin", "run", "mcp-server-linkedin"]
}Authentication
Start your MCP client (Claude Desktop, Kiro, etc.)
Ask: "Authenticate with LinkedIn"
Browser opens → authorize the app → callback captured automatically
Token saved to
~/.mcp-server-linkedin/token.jsonToken lasts 2 months. Re-run
linkedin_authwhen it expires.
Tools
Tool | Description |
| OAuth 2.0 browser-based authentication |
| Get your name, email, and person URN |
| Remove stored token |
| Publish a text-only post |
| Publish a post with an image |
| Publish a post with a video (up to 200 MB) |
| Publish a post with a link preview |
| Delete a post by ID |
| Get post analytics (requires Community Management API) |
| Get aggregated analytics (requires Community Management API) |
Tool Details
Parameter | Type | Default | Description |
| string | required | Post content (up to ~3000 chars) |
| string |
|
|
Parameter | Type | Default | Description |
| string | required | Post caption |
| string | required | Absolute path to image (JPEG, PNG, GIF) |
| string |
|
|
Parameter | Type | Default | Description |
| string | required | Post caption |
| string | required | Absolute path to video (MP4, max 200 MB) |
| string |
|
|
Parameter | Type | Default | Description |
| string | required | Post commentary |
| string | required | Article URL (generates link preview) |
| string |
| Optional link preview title |
| string |
| Optional link preview description |
| string |
|
|
Parameter | Type | Default | Description |
| string | required | Post URN (e.g., |
Architecture
src/mcp_server_linkedin/
├── config.py # Constants, API URLs, settings dataclass
├── exceptions.py # Typed exception hierarchy
├── server.py # FastMCP entrypoint + tool registration
├── models/ # Frozen dataclass API response models
├── services/ # Async API client with connection pooling
├── tools/ # MCP tool implementations (validate → delegate → format)
│ ├── auth.py # OAuth flow, profile, logout
│ ├── posting.py # Text, image, video, article, delete
│ └── analytics.py # Stubbed (pending API access)
└── utils/ # Token persistenceRate Limits
Limit | Value |
API requests per member per day | 150 |
Token duration | 2 months |
Max video file size | 200 MB |
The server relays LinkedIn's rate limit errors clearly but does not enforce limits internally.
Security
Tokens stored locally at
~/.mcp-server-linkedin/token.jsonNo credentials in code — all secrets via environment variables
Official API only — uses
w_member_socialscopeLocal OAuth callback — authorization code never leaves your machine
No data collection — this server sends nothing except LinkedIn API calls
Development
git clone https://github.com/Huzaifa-ali/mcp-server-linkedin.git
cd mcp-server-linkedin
uv sync --all-extras
pre-commit installuv run mcp-server-linkedin # Run the server
uv run ruff check src/ # Lint
uv run ruff format src/ # Format
uv run mypy src/ # Type check
uv run pytest # TestTest with MCP Inspector:
npx @modelcontextprotocol/inspector uv run mcp-server-linkedinContributing
See CONTRIBUTING.md for guidelines. In short:
Fork the repo and create a feature branch
Make your changes with type hints and docstrings
Run
pre-commit run --all-files(must pass)Open a pull request
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Huzaifa-ali/mcp-server-linkedin'
If you have feedback or need assistance with the MCP directory API, please join our Discord server