You can connect any MCP-compatible tool to the Postpone MCP server. Use OAuth where your client supports it, or authenticate with a Postpone API key using a Bearer token.
The Postpone MCP server URL is:
https://api.postpone.app/mcp
OAuth Clients
If your client supports OAuth, this is the simplest option — no API key required.
Add a custom MCP server
In your client, add a custom or remote MCP server with:
- Name: Postpone
- Server URL:
https://api.postpone.app/mcp
Choose OAuth and approve access
Select OAuth authentication, then sign in to Postpone if prompted and approve access to complete the connection.
API Key Clients
If your client authenticates with an API key, send a Postpone key as a Bearer token.
Create an API key
Create one on the API Settings page. Copy it somewhere safe — it's only shown once.
Add the server configuration
Add the following configuration to your client, replacing API_KEY with your key:
{
"mcpServers": {
"postpone": {
"url": "https://api.postpone.app/mcp",
"headers": {
"Authorization": "Bearer API_KEY"
}
}
}
}
Try It Out
Once connected, ask your client something like:
"List all my connected Postpone social accounts."
"Schedule a post on X that says 'Hello from my MCP client!' for tomorrow morning."
"What was my top performing post across all my accounts in the last 7 days?"
See more example prompts in the introduction.