Skip to main content
One connector covers all three. Custom connectors belong to your Claude account rather than to a device, so adding PostQueen once on claude.ai or in Claude Desktop puts her in the web app, the desktop app and the iOS and Android apps at the same time. This page used to be two, one headed Claude Desktop and one headed Claude Web and Mobile, describing the same setup twice. There are two routes: a custom connector added in settings, or the mcp-remote bridge in claude_desktop_config.json.
A plain "url" entry in claude_desktop_config.json does not work. Claude Desktop’s config file only launches local stdio servers with command and args. Remote HTTP servers are a separate mechanism (MCP docs, Claude Help Center). Use one of the two routes below.

Before you start

Grab your API key from app.postqueen.ai: open Settings > Developers > Public API and click Reveal.
Your API key can post to every account you have connected. Treat it like a password: anyone who sees your connector URL or config file can publish as you. Do not screenshot it and do not commit it. If the key leaks, regenerate it in Settings > Developers > Public API and update every client that uses it.
At the time of writing, Anthropic’s help center lists custom connectors as available across Claude plans, with the Free plan limited to a single custom connector. On Team and Enterprise plans, an organization Owner may need to add the connector in the organization’s settings before members can connect it. Availability and UI naming shift over time. If you do not see the option, check Anthropic’s connectors help article.
1

Open connector settings

In Claude Desktop, open Settings, then Connectors.
2

Add a custom connector

Click Add custom connector and paste the PostQueen endpoint with your API key in the path:
Leave the OAuth fields in Advanced settings empty: the key in the URL is the authentication.
3

Confirm

Click Add. PostQueen appears in your connector list, and her 11 tools become available in new conversations.
With custom connectors, Claude reaches PostQueen from Anthropic’s cloud infrastructure, not from your machine, so the URL has to be reachable over the public internet. api.postqueen.ai is, so Option A works there. A self-hosted instance behind a VPN or on your LAN will not connect this way; use Option B instead.

On your phone

Connectors follow the account, not the device, so once PostQueen is added on the web or the desktop app she appears in the Claude apps on iOS and Android too. Enable her from the tools menu in a chat the same way. New custom connectors generally cannot be created from the mobile apps themselves: add them on the web or desktop first and they show up on your phone.

Plan availability

At the time of writing, Anthropic’s help center lists custom connectors as available across Claude plans, with the Free plan limited to a single custom connector. On Team and Enterprise plans an organization Owner may need to add the connector in the organization’s settings before members can connect it. Availability and UI naming shift over time. If you do not see the option, check Anthropic’s connectors help article.

Option B: mcp-remote bridge (config file)

The mcp-remote bridge launches on your machine and forwards Claude Desktop’s stdio traffic to PostQueen over HTTP. Requires Node.js.
1

Open the config file

In Claude Desktop, open Settings, go to the Developer tab, and click Edit Config. The file lives at:
2

Add the PostQueen server

Add PostQueen to the mcpServers block. Both forms authenticate with the same key.
On Windows, some clients mangle the space inside the header value. If the Bearer form fails there, use "--header", "Authorization:${AUTH_HEADER}" with "env": { "AUTH_HEADER": "Bearer YOUR_API_KEY" }, or fall back to the key-in-path URL.
3

Restart Claude Desktop

Quit Claude Desktop completely and reopen it, because the config is only read at launch. PostQueen shows up under the connectors indicator in the conversation input box.

Self-hosted

On a self-hosted instance, replace https://api.postqueen.ai with your NEXT_PUBLIC_BACKEND_URL:
Most self-hosted setups serve the backend under /api, so the MCP path sits at /api/mcp. Use whatever NEXT_PUBLIC_BACKEND_URL is set to, then append /mcp/YOUR_API_KEY.
Your reverse proxy has to forward the /mcp paths and stream the response rather than buffering it. The configuration, and the Nginx setting that silently breaks this, are on MCP on a self-hosted install.
For Option A the server must also be reachable from the public internet; if it is not, Option B works because the bridge runs on your machine.

Verify

Start a new conversation and ask:
“List my connected social media accounts”
Claude calls the integrationList tool and returns your connected accounts. She is wired up.
Make sure you quit the app entirely (not just closed the window), the JSON is valid, and Node.js is installed (node --version). Config changes only load at launch.
Check that the API key was pasted in full, with no whitespace. For Option B, Claude Desktop writes MCP logs to ~/Library/Logs/Claude/mcp*.log on macOS and %APPDATA%\Claude\logs on Windows. Look for mcp-server-postqueen.log.

Next steps

Tools reference

Every parameter of the 11 tools Claude just discovered

Examples

The flows where she has to look something up before she can post

Limits and troubleshooting

What MCP cannot reach, and what a bad key looks like