Skip to main content
Claude supports remote MCP servers everywhere it runs — the web app, the desktop app, and the Claude Code CLI. Add Carousify once and you can ask Claude to draft a LinkedIn post, schedule it, or pull recent performance without leaving the chat (or the terminal).

Before you start

You’ll need:
  • MCP enabled on the workspace — see MCP overview for the one-click flow
  • An MCP key from Manage Workspace › MCP (only shown once, right after creating it)
  • A Claude account, or Claude Code installed and signed in

Step 1 — Copy your Carousify MCP URL

In Carousify, open Manage Workspace › MCP. Use the auto-provisioned MCP System Key or click Create API Key to mint a fresh one (e.g. claude-laptop). Your MCP URL has this shape:
https://app.carousify.com/api/mcp?token=YOUR_MCP_KEY
The Claude tab on the same page renders the URL with your token already substituted — copy it from there.
Treat the MCP URL like a password. Anyone with it can act on your workspace. Carousify reveals the full key only once — copy it the moment it’s generated.

Step 2 — Add Carousify as a custom connector

1

Open Settings › Connectors

Go to claude.ai/settings/connectors (or Settings › Connectors from inside Claude). Scroll past the built-in connectors to the bottom of the page.
2

Click Add custom connector

Claude opens a small dialog with two fields.Claude Add custom connector dialog with the name set to Carousify and an empty Remote MCP server URL field
FieldWhat to enter
NameCarousify
Remote MCP server URLThe URL you copied in Step 1.
3

Click Add

Claude validates the URL, opens the connection, and lists the Carousify tools it discovered. The connector now shows up in Settings › Connectors as Active.

Step 3 — Use it in a chat

Start a new conversation. Click the + tools icon (or the / slash menu) in the composer and tick Carousify so it’s enabled for this chat. Then try:
  • “Draft a LinkedIn post about why agencies use Collaboration Links to onboard clients without sharing logins, then schedule it for Tuesday 9 AM IST.”
  • “Show me my top three posts from the last 14 days.”
  • “Did the post I scheduled this morning go live?”
Claude picks the matching Carousify tool, asks you to approve the action the first time, and then runs it.
Connectors are off by default in new chats. To keep Carousify on without re-ticking it every time, create a Carousify project — Claude remembers connector toggles per project.

Prefer the terminal? Use Claude Code

If you spend most of your time in Claude Code, skip the web UI entirely and add Carousify in one command:
claude mcp add --transport http carousify "https://app.carousify.com/api/mcp?token=YOUR_MCP_KEY"
By default the server is added at the local scope (this project only). Pick a wider scope if you want it everywhere:
ScopeFlagWhere it’s stored
Local (default)This project, your machine only.
User-s userEvery project on this machine.
Project-s projectCommitted to .mcp.json in the current repo, shared with the team.
For project scope, keep the token out of .mcp.json by referencing an env var instead of hard-coding it:
export CAROUSIFY_MCP_TOKEN="your_mcp_key"
claude mcp add --transport http -s project carousify "https://app.carousify.com/api/mcp?token=\${CAROUSIFY_MCP_TOKEN}"
Verify the connection with claude mcp list — you should see carousify with the discovered tool count and a green status. From the next claude session, the agent can call Carousify tools directly.
Use user scope for personal day-to-day work, project scope when your whole team needs Carousify wired into a specific repo (e.g. an agency repo for one client).

Disconnect or rotate

  • Disconnect (web/desktop) — open Settings › Connectors, click on the Carousify entry, then Remove. Claude stops calling the URL immediately.
  • Disconnect (Claude Code) — run claude mcp remove carousify (add -s user or -s project if that’s where you registered it).
  • Rotate the key — in Carousify, delete the row in MCP Keys, then click Create API Key to mint a new one. Update the URL in Claude (or rerun claude mcp add) with the new token.

Troubleshooting

  • “Failed to connect to server” — the token is wrong or has been revoked. Confirm the key shows Active in Manage Workspace › MCP and that the URL ends with the full token, not the masked XXXX... version.
  • claude mcp list shows the server as failed — most often a stale token. Generate a fresh key in Carousify and re-add the server.

What’s next

MCP overview

How MCP keys, tools, and workspace scoping fit together.

Use it from VS Code

Same MCP URL, inside VS Code’s chat agent.

Use it from Codex

Add Carousify to the Codex CLI’s config.toml.

Schedule a post

Quick refresher on how scheduling works inside Carousify.