LinkedIn Content Planner MCP
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., "@LinkedIn Content Planner MCPDraft a post about the new product launch and submit it for review."
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.
LinkedIn Content Planner (MCP)
A LinkedIn content pipeline built for AI agents, not humans typing into a text box. Your agent
(Claude Code, Claude Desktop, or any MCP-compatible client, on
whatever schedule you run it — cron, an agent loop, a chat session) drafts, formats, and moves
posts through a review pipeline by calling MCP tools directly: create_post,
update_post_content, submit_review, and more. A human just reviews, comments, and
approves/requests changes from the web UI before anything goes live — the same shape as reviewing
a PR before merge, not manually operating a scheduling tool.
Multi-tenant and OAuth-secured out of the box: agents authenticate against the planner's own OAuth 2.1 authorization server (PKCE, dynamic client registration) and every MCP call is scoped to the caller's workspace.
See PLAN.md and ARCHITECTURE.md for the full design.
Local development
Requirements: Node 20+, pnpm, a Postgres 16 instance (via infra/docker-compose.yml or a local install).
# 1. Start Postgres
docker compose -f infra/docker-compose.yml up -d
# (or point DATABASE_URL at any local Postgres 16 instance)
# 2. Install dependencies
pnpm install
# 3. Configure env
cp apps/server/.env.example apps/server/.env
# edit DATABASE_URL if not using the default docker-compose credentials
# 4. Generate + run migrations, seed default workspace
pnpm --filter @linkedin-planner/db generate
DATABASE_URL=postgres://linkedin_planner:linkedin_planner@localhost:5432/linkedin_planner_dev pnpm --filter @linkedin-planner/db migrate
DATABASE_URL=postgres://linkedin_planner:linkedin_planner@localhost:5432/linkedin_planner_dev pnpm --filter @linkedin-planner/db seed
# 5. Run the server
pnpm dev:serverRelated MCP server: LinkedIn MCP Server
MCP tool surface
Posts: create_post, list_posts, get_post, update_post_content, str_replace_post_content,
set_post_state, set_post_date, delete_post. Versions: list_versions, get_version_diff,
revert_to_version. Review: submit_review, list_reviews. Comments: add_comment,
list_comments, resolve_comment. Attachments: prepare_attachment_upload, attach_file,
list_attachments. Preview:
render_preview. Webhooks (subscribe to post lifecycle events): create_webhook,
list_webhooks, update_webhook, delete_webhook, list_webhook_deliveries. Full tool schemas
are served at the /mcp endpoint itself; see PLAN.md for the design rationale behind
each.
Uploading an attachment
attach_file takes base64 inline, which is only practical for small files: a 160 KB image is
~217,000 base64 characters, more context than most agents can spend and more than any of them can
retype without a silent corruption. Anything larger goes through a ticket instead:
prepare_attachment_upload(postId, filename, mimeType)
-> { uploadUrl, method: "PUT", expiresAt, maxBytes }
curl -T ./carousel.pdf '<uploadUrl>' # bytes never enter the conversation
list_attachments(postId) # confirm it landedThe URL embeds an HMAC-signed ticket scoped to that one post, valid 15 minutes, and rejected
afterwards. Both paths converge on the same attachFile service, so the 25 MB per-file and 250 MB
per-workspace caps apply identically. Set ATTACHMENT_UPLOAD_SECRET when running more than one
instance — unset, each process signs with its own random key and a ticket minted by one instance
will not verify on another.
Discovery
Two unauthenticated documents let a client — or an MCP registry — learn what this server is and how to authenticate before it holds any credential:
Path | What it says |
| Server card: name, description, version, source repo, and the |
| RFC 9728 Protected Resource Metadata: the resource identifier, the authorization server, and the single |
The card is served in every configuration; with AUTH_ENABLED unset it advertises
authorization: { type: "none" } and the PRM is not registered at all, because the OAuth
authorization server it would name is not mounted either. Both documents are built from
APP_PUBLIC_BASE_URL, the same value the token check validates aud against.
The server's name and version live in apps/server/src/mcp/identity.ts and feed both the card and
the serverInfo block of the MCP initialize response, so a registry listing cannot drift from
what a connected client sees.
Publishing to the registry
Listed in the official MCP registry as
app.theona/linkedin-content-planner. The namespace is the reverse DNS of theona.app and is
proved by an Ed25519 TXT record on that domain's apex; the private half is MCP_REGISTRY_DNS_KEY
and exists nowhere else. Rotation is one new key pair, one edited TXT record, one replaced secret —
which is why the key needs no escrow and why any doubt about it should be answered by rotating
rather than investigating.
It is an environment secret on mcp-registry, not a repository secret. A repository secret is
readable by any workflow that anyone with write access adds; this one is released only to a job
that names the environment and clears its rules — a required reviewer, and deployments restricted
to v* tags. So pushing a tag does not publish: it opens a run that waits for a human.
Releasing is pushing a v<version> tag once the new version is deployed. The
Publish to MCP Registry workflow fetches /.well-known/mcp.json from production and submits
those bytes; nothing in this repository restates the card, so there is no second copy to drift.
The order matters and the workflow enforces it: a tag whose version does not match what the
deployed server reports fails the run rather than publishing the previous release's card under
the new version's name. Deploy, then tag.
Monorepo layout
apps/server— REST API + MCP server (Streamable HTTP at/mcp), same process, same core logic.apps/web— React UI: backlog, calendar, post review.packages/core— domain types and service layer shared by REST and MCP.packages/formatting— markdown-subset ⇄ LinkedIn Unicode formatting.packages/db— Drizzle ORM schema and migrations.
License
PolyForm Noncommercial License 1.0.0. Source-available, not OSI open source: free to use, modify, and self-host for any noncommercial purpose; any commercial or paid use requires a separate license from Theona, Inc.
This server cannot be installed
Maintenance
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
Human-in-the-loop LinkedIn outreach and a built-in sales CRM for AI agents. Safety-gated, anti-spam.
Social media scheduler for AI agents: draft posts into a human-approved queue for 15 networks.
LinkedIn outreach, commenting, scheduling, and data via Claude and human approval gates.
LinkedIn outreach, commenting, scheduling, and data via Claude and human approval gates.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to interact with LinkedIn for posting, commenting, liking, and managing connections via OAuth2 authentication.29MIT
- AlicenseBqualityCmaintenanceEnables AI agents to manage LinkedIn profiles, posts, connections, skills, education, and certifications through the LinkedIn API.1817664MIT
- AlicenseAqualityAmaintenanceEnables AI agents to publish posts, images, comments, and reactions to LinkedIn as the authenticated user, with built-in safety features like daily budgets and deduplication.929Apache 2.0
- AlicenseAqualityBmaintenanceEnables AI agents to publish posts, images, videos, and articles to LinkedIn.10MIT
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/theonaai/linkedin-content-planner-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server