Set up Postking MCP for LinkedIn content
Postking is a LinkedIn content creation and scheduling tool with MCP support. Connect your AI assistant to plan, draft, approve, and publish LinkedIn posts. Setup takes about 3 minutes.
Why teams use Postking MCP for LinkedIn
If you run LinkedIn content for multiple clients or stakeholders, MCP gives your AI agent safe access to the exact workflows you already use in Postking.
Before you start
- 1) Create a Postking API key in your Postking account settings.
- 2) Use the MCP server URL below.
- 3) Add the header x-postking-api-key with your key.
- 4) Use the remote HTTP MCP option when your assistant supports it.
What you get
- • LinkedIn draft creation and editing
- • LinkedIn scheduling and publishing
- • Client profile switching
- • MCP-ready workflows for teams
Use one MCP setup across 50 client accounts and keep LinkedIn workflows in one place.
Setup by assistant
Pick the tool you use and follow the steps.
Claude Desktop
- Open Claude Desktop → Settings → Developer → Edit Config.
- Edit the config file and add the MCP server under mcpServers.
- Restart Claude Desktop.
{
"mcpServers": {
"postking": {
"type": "http",
"url": "https://postking-backend-production.up.railway.app/mcp",
"headers": {
"x-postking-api-key": "YOUR_API_KEY"
}
}
}
}Claude Code
- Add the server with an HTTP transport + header.
- Verify with claude mcp list.
claude mcp add --header "x-postking-api-key: YOUR_API_KEY" --transport http postking https://postking-backend-production.up.railway.app/mcp
claude mcp listCodex
Codex reads MCP servers from ~/.codex/config.toml.
# ~/.codex/config.toml
[mcp_servers.postking]
url = "https://postking-backend-production.up.railway.app/mcp"
http_headers = { "x-postking-api-key" = "YOUR_API_KEY" }Cursor
- Open Cursor → Settings → Cursor Settings → MCP.
- Click “Add a Custom MCP Server” or edit the config files below.
// .cursor/mcp.json or ~/.cursor/mcp.json
{
"mcpServers": {
"postking": {
"url": "https://postking-backend-production.up.railway.app/mcp",
"headers": {
"x-postking-api-key": "YOUR_API_KEY"
}
}
}
}Cline
- Open Cline → MCP Servers → Configure.
- Click “Configure MCP Servers” and add a remote server.
{
"mcpServers": {
"postking": {
"url": "https://postking-backend-production.up.railway.app/mcp",
"type": "streamableHttp",
"headers": {
"x-postking-api-key": "YOUR_API_KEY"
},
"disabled": false,
"timeout": 60
}
}
}Auto-invoke Postking MCP for LinkedIn
Add a rule so your assistant automatically calls Postking tools when you ask about drafts, scheduling, or client content. This keeps workflows consistent without extra prompting.
Always use the Postking MCP tools when I ask about LinkedIn drafts, scheduling, publishing, or client content workflows.LinkedIn MCP FAQ
Yes. Postking is a LinkedIn content creation and scheduling tool with MCP support so AI agents can draft, edit, and publish LinkedIn posts.
Connect with Claude Desktop, Claude Code, Codex, Cursor, and Cline using the HTTP MCP server.
Create a Postking API key, add the MCP server URL, and include the x-postking-api-key header.