Want a free personalized recommendation for your software stack?Get yours
That Marketing Buddy
Home/MCP/Unipile
Unipile

Unipile MCP Server

Yes. Unipile ships five tools instead of fifty: four that let an agent search its OpenAPI spec and one, execute-request, that then calls whatever it found.

OFFICIAL MCP✓ alivePublic APIAuth: None to browse the API surface; individual calls through execute-request carry your own Unipile credentials
MCP status verified 2026-08-06Agent-readiness 7/10
Data from Buddy's database, auto-rechecked weekly

What is the Unipile MCP server?

Unipile runs an MCP server at https://developer.unipile.com/mcp, and its design is deliberately unlike most of the category. Rather than one tool per resource, it exposes five: list-endpoints, search-endpoints, get-endpoint, get-server-variables and execute-request. The first four let an agent explore the OpenAPI specification at runtime; the fifth calls any endpoint it found.

The trade-off is real in both directions. Five tools consume almost no context, and the catalogue never goes stale because it is generated from the spec rather than hand-maintained, so a new Unipile endpoint is reachable the day it ships. The cost is that an agent has to orient itself first, spending a few calls on discovery before it does anything useful.

The discovery half needs no authentication at all: an unauthenticated initialize succeeds and tools/list returns the full set, with list-endpoints and get-endpoint marked readOnlyHint. That means an agent, or you, can explore what Unipile's messaging and account-linking API can do before holding any credentials.

For the rest of the picture see the Unipile review or full pricing breakdown.

Inside Claude / Cursor / Codex

What you can build with the Unipile MCP

Illustrative workflow examples. Exact tool names, parameters, and outputs come from Unipile's MCP server schema, so check the docs for the live surface.

unipile-mcplive
>Show my top 5 posts by engagement this week
unipile.top_posts({ period: "7d" })
TOP POSTS · LAST 7 DAYS
MCP rundown thread4.2k engagements
Pricing teardown2.8k
Tool comparison1.9k
Quick tip carousel1.4k
Founder story1.1k
Draft a follow-up to the MCP thread?
unipile-mcplive
>Schedule a thread across LinkedIn and X for Friday
unipile.schedule({ channels: ["linkedin","x"] })
SCHEDULED · 2 CHANNELS
LinkedInFri 09:00 EST
X / TwitterFri 09:00 EST
unipile-mcplive
>Which post type drove the most clicks this month?
unipile.posts_by_type({ metric: "clicks" })
CLICKS BY POST TYPE
Carousel9,420 clicks
Single image4,210
Video2,180
Text-only1,140
TMB SCORE FOR UnipileMCP: OfficialAgent fit: 7/10
Read review →

Access, auth, and limits

Browsing costs nothing: the discovery tools answer without credentials, which is why the tool inventory here could be enumerated directly rather than read off a docs page. Actually calling an endpoint through execute-request requires your own Unipile credentials, and get-server-variables exists to resolve the base URL and path parameters your account needs.

The security consequence of a generic execute-request tool is worth thinking through. It is not scoped per resource, so an agent granted it can reach any endpoint your credentials allow. There is no read-only switch, so the boundary is whatever permissions the credentials themselves carry. Scope the credentials, not the connection.

Where it works and what to build

Any MCP client works, and because discovery is unauthenticated it is unusually easy to trial: point a client at the endpoint and ask what Unipile can do before deciding whether to wire in credentials.

The natural use is unified messaging. Unipile's API spans LinkedIn, email and messaging account linking, so an agent can search the spec for the right endpoint and execute it without you learning the API shape first. Expect the first few turns of any session to be discovery, and prompt accordingly: telling the agent which capability you want up front saves it walking the whole endpoint list.

How to connect Unipile MCP to Claude Desktop

Add this block to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows), then restart Claude Desktop. Cursor and Codex use a similar schema.

{
  "mcpServers": {
    "unipile": {
      "command": "npx",
      "args": ["mcp-remote", "<YOUR_MCP_URL>"]
    }
  }
}
// HTTP-transport MCP. Get your <YOUR_MCP_URL> from the vendor dashboard.
// Server source: https://developer.unipile.com/mcp
// Claude Code (one-liner): claude mcp add unipile <YOUR_MCP_URL> --transport http

Some MCP servers require an API key. Check the source page for setup: developer.unipile.com/mcp.

Does Unipile MCP cost extra?

Included with subscription

Unipile ships an official MCP server that uses your existing subscription credentials.

  • No separate MCP licence to buy. You pay for your Unipile plan, the MCP server queries that account.
  • Whether it's gated to a specific tier wasn't extracted automatically — verify the access requirements on the MCP page or pricing docs.

Unipile also publishes a REST API

Unipile publishes an API, but per-tier gating wasn't extracted automatically.

Auth method
SDK languages
OpenAPI spec
Webhooks
Structured outputs
See Unipile API page

What you can do with Unipile from an AI agent

Three shapes of agent workflow. Pick the row that matches how you actually use Claude / Cursor / Codex day to day.

INDIE / SOLO

Skip the dashboard, ask Claude

  • "What changed this week?" answered in seconds
  • Quick one-off questions without leaving the editor
  • Pipe Unipile data into your personal notes / docs without writing a script
Effort: 30 seconds — paste the config, restart Claude
AGENCY

Run client analysis at agent speed

  • Hand the MCP server to your team — every consultant can ask Claude about any client's Unipile account
  • Multi-account workflows without context-switching the Unipile UI
  • Reports you'd normally spend hours on, done before standup
Effort: An afternoon — set up auth per client
IN-HOUSE TEAM

Production agent workflows

  • Embed in your internal Codex / Cursor agents that triage Unipile data daily
  • Combine with other MCP servers in a multi-step agent chain
  • Constrain agents to read-only roles to keep production Unipile safe
Effort: Days — security review + role config

Limits and gotchas

  • Official MCP server — published by Unipile themselves, so it should track product changes.
  • Fallback: the REST API works for any flow the MCP server doesn't cover.
  • Rate limits: MCP calls count against your underlying Unipile API quota. Burst usage from a curious agent can drain a daily allowance fast.
7/10

Agent-readiness verdict

A thoughtful spec-driven design that trades a discovery round-trip for a tool list that can never drift from the API. If you want an agent working across Unipile's whole surface rather than a curated slice, this is the better shape.

Strong agent fit for multi-channel messaging. Unipile hosts an official MCP server (developer.unipile.com/mcp, X-API-KEY auth) on top of its core unified REST API, with official Node and Python SDKs, real-time webhooks (no polling), and native Make and n8n. An agent can read and send across LinkedIn, WhatsApp, Instagram, and Telegram, plus email and calendar, either no-code over MCP or in code through the SDKs. It is built as an API endpoint for your own agents rather than a dashboard product.

Scored by Joonas (TMB).

Unipile MCP & API FAQ

Is the Unipile MCP server official?+
Yes — an official, vendor-maintained server at https://developer.unipile.com/mcp.
Can I use the Unipile MCP with Cursor or Codex?+
Yes — MCP is a protocol, not Claude-specific. Any MCP-capable client (Cursor, Codex, Windsurf, Zed) can use the same server config with minor path adjustments.
Does Unipile have a public API?+
Yes — public REST API at developer.unipile.com/docs/mcp.md.

Sources

Data verified by Joonas on the dates shown. MCP server status auto-rechecked weekly.

Joonas Rotko
Joonas RotkoAuthor & Founder of That Marketing Buddy

10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

Unipile

Try Unipile
WEEKLY NEWSLETTER

The marketing tools worth your money, scored for AI agent readiness

Every week I score the tools for MCP, API, and agent-readiness, then email you the ones that actually deliver, what plugs into Claude and Cursor, the pricing changes, and what to skip. No fluff, no daily spam.

Join for free. One email a week, unsubscribe anytime.