Client setup
Configure your AI client to connect to the PostSyncer MCP server.Create a token first: open app.postsyncer.com → Settings → API Integrations, click Create, and copy the key. It is a Sanctum personal access token—same as the REST API. Choose abilities (
workspaces, accounts, labels, campaigns, posts) to match what you need; see Authentication.Connection details
| Setting | Value |
|---|---|
| URL | https://postsyncer.com/mcp |
| Transport | Streamable HTTP |
| Authorization | Bearer YOUR_TOKEN (send as the Authorization HTTP header) |
YOUR_TOKEN with the token from API Integrations (include the Bearer prefix in the header value).
Claude Desktop
Add PostSyncer undermcpServers in your Claude Desktop MCP configuration file.
- macOS
- Windows
Edit
~/Library/Application Support/Claude/claude_desktop_config.json:Claude Code
Add PostSyncer as an MCP server in your Claude Code MCP configuration (samemcpServers shape as Claude Desktop):
Cursor
- Open Cursor Settings → MCP and add a new server, or edit your global MCP config file (commonly
~/.cursor/mcp.jsonon macOS/Linux, or%USERPROFILE%\.cursor\mcp.jsonon Windows). - Use HTTP / Streamable HTTP transport, URL
https://postsyncer.com/mcp, and headers as below.
Other MCP clients
Any MCP-compatible client that supports Streamable HTTP (or remote HTTP) and custom headers can use PostSyncer:- URL:
https://postsyncer.com/mcp - Transport: Streamable HTTP
- Header:
Authorization: Bearer YOUR_TOKEN_HERE - Recommended:
Accept: application/json
Verify the connection
After connecting, ask your assistant to run a read-only tool, for example:List my workspacesIf setup is correct, it should call
list-workspaces and return data. Then try list my connected accounts to exercise list-accounts.
Troubleshooting
| Symptom | What to check |
|---|---|
| 401 / Unauthorized | Token missing, revoked, or Authorization not formatted as Bearer plus your token (no typos or extra spaces). Create a new token from API Integrations if unsure. |
| Missing tools | Token abilities: you need posts for post, comment, and analytics tools; workspaces and accounts to discover IDs. |
| Empty or partial tools | Update the client; some older builds mishandle tools/list pagination. |