LinkedIn MCP Server
Enables drafting, formatting, analyzing, and publishing LinkedIn posts directly from MCP-compatible clients like Claude.
README
LinkedIn MCP Server
A Model Context Protocol server that lets Claude — and any MCP-compatible client — draft, format, analyze, and publish LinkedIn posts straight from a chat.
Stop context-switching between your editor, a "best time to post" blog, and LinkedIn's composer. This server exposes five focused tools so the model can take a raw idea, shape it into a polished post, score it, generate hashtags, and (optionally) publish it to your profile — all without leaving the conversation.
Features
- ✍️ Draft full posts from a topic, tone, and a few key points
- 🎨 Format raw text with clean line breaks, spacing, emojis, and hashtags
- 🏷️ Generate relevant, topic-aware hashtags
- 📊 Analyze a post and get a score plus concrete improvement suggestions
- 🚀 Publish to LinkedIn (or save as a draft) with configurable visibility
- 🧩 Works with Claude Desktop and any other MCP host over stdio
- ⚡ Bundled with esbuild for fast, low-memory builds
Note: Four of the five tools (
draft_post,format_post,generate_hashtags,analyze_post) run fully offline and need no credentials. Onlycreate_posttalks to the LinkedIn API and requires an access token.
Available Tools
draft_post
Generate a LinkedIn post template from a topic and tone.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
topic |
string |
✅ | — | Topic or subject of the post |
tone |
string (enum) |
— | professional |
One of professional, casual, inspirational, educational, storytelling, promotional |
key_points |
string[] |
— | — | Key points to weave into the post |
target_audience |
string |
— | — | Who the post is aimed at |
cta |
string |
— | — | Custom call-to-action |
include_hashtags |
boolean |
— | true |
Whether to append hashtags |
hashtag_count |
number |
— | 5 |
Number of hashtags (0–10) |
format_post
Format raw content with proper LinkedIn structure and hashtags.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
content |
string |
✅ | — | Raw post text to format |
add_line_breaks |
boolean |
— | true |
Insert readable spacing and line breaks |
add_emojis |
boolean |
— | false |
Sprinkle in relevant emojis |
hashtags |
string[] |
— | [] |
Hashtags to append |
generate_hashtags
Generate relevant LinkedIn hashtags for a topic.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
topic |
string |
✅ | — | Topic to generate hashtags for |
count |
number |
— | 5 |
Number of hashtags (1–10) |
custom_keywords |
string[] |
— | — | Seed keywords to bias generation |
analyze_post
Score a LinkedIn post and return improvement suggestions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
content |
string |
✅ | — | The post text to score and critique |
create_post
Format and publish a LinkedIn post, or save it as a draft. Requires LinkedIn API credentials.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
content |
string |
✅ | — | Post text (max 3000 characters) |
hashtags |
string[] |
— | [] |
Hashtags to include |
visibility |
string (enum) |
— | PUBLIC |
One of PUBLIC, CONNECTIONS, LOGGED_IN |
save_as_draft |
boolean |
— | false |
Save as a draft instead of publishing |
Prerequisites
- Node.js 18+ and npm (pnpm or yarn work too)
- An MCP-compatible client — e.g. Claude Desktop
- (Only for publishing) A LinkedIn developer app and an access token with the
w_member_socialscope
Installation
git clone https://github.com/<your-username>/linkedin-mcp-server.git
cd linkedin-mcp-server
npm install
npm run build
The build step bundles src/ into a single executable file at dist/index.js.
Configuration
1. LinkedIn API credentials (for create_post)
- Create an app in the LinkedIn Developer Portal.
- Request the Share on LinkedIn product to unlock the
w_member_socialscope. - Complete the OAuth 2.0 flow to obtain an access token.
Create a .env file in the project root:
LINKEDIN_ACCESS_TOKEN=your_access_token_here
# Optional — many setups resolve this from the token via /userinfo.
# Provide it only if your implementation expects it:
LINKEDIN_AUTHOR_URN=urn:li:person:XXXXXXXXXX
⚠️ Never commit your
.envfile or share your access token. Add.envto.gitignore.
2. Connect to Claude Desktop
Add the server to your Claude Desktop config:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"linkedin": {
"command": "node",
"args": ["/absolute/path/to/linkedin-mcp-server/dist/index.js"],
"env": {
"LINKEDIN_ACCESS_TOKEN": "your_access_token_here",
"LINKEDIN_AUTHOR_URN": "urn:li:person:XXXXXXXXXX"
}
}
}
}
Use an absolute path to dist/index.js, then fully restart Claude Desktop. The LinkedIn tools should now appear in the tools menu.
Usage
Once connected, just talk to the model naturally — it will pick the right tool:
- "Draft a LinkedIn post about shipping my first MCP server. Educational tone, aimed at junior devs, and include a CTA to star the repo."
- "Format this draft, add line breaks and a couple of emojis: …"
- "Generate 8 hashtags for a post about AI compliance for fintech."
- "Analyze this post and tell me how to make it stronger: …"
- "Publish this to LinkedIn, connections-only."
Development
Why esbuild?
This project bundles with esbuild rather than tsc. Beyond being dramatically faster, it sidesteps the JavaScript heap out of memory errors that tsc can hit when bundling the MCP SDK and its dependencies. tsc is still used for type-checking only.
Scripts
npm run build # Bundle src/ -> dist/index.js with esbuild
npm run typecheck # Type-check with tsc (no emit)
npm start # Run the built server directly (stdio)
Example esbuild.config.js
import { build } from "esbuild";
build({
entryPoints: ["src/index.ts"],
outfile: "dist/index.js",
bundle: true,
platform: "node",
format: "esm",
target: "node18",
banner: { js: "#!/usr/bin/env node" },
}).catch(() => process.exit(1));
Project structure
linkedin-mcp-server/
├── src/
│ ├── index.ts # MCP server entry — stdio transport + tool registration
│ ├── tools/ # One module per tool
│ │ ├── draftPost.ts
│ │ ├── formatPost.ts
│ │ ├── generateHashtags.ts
│ │ ├── analyzePost.ts
│ │ └── createPost.ts
│ └── linkedin/ # LinkedIn API client (auth + posts)
├── dist/ # Bundled output (esbuild)
├── esbuild.config.js
├── package.json
├── tsconfig.json
└── README.md
Built on top of @modelcontextprotocol/sdk.
Troubleshooting
Tools don't appear in Claude Desktop.
Double-check that the path in args is absolute, that npm run build succeeded, and fully quit and reopen Claude Desktop. On macOS, logs live at ~/Library/Logs/Claude/.
JavaScript heap out of memory during build.
Use the bundled esbuild build (npm run build). If you reintroduce tsc for emitting, raise the heap limit with NODE_OPTIONS=--max-old-space-size=4096.
401 Unauthorized from create_post.
Your access token is missing, expired, or lacks the w_member_social scope. Regenerate it and update your .env / config.
License
Built with the Model Context Protocol. Contributions and issues welcome.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。