MCP Server Overview
MCP Server
Schedule & Chill ships a native Model Context Protocol server, so AI agents — Claude, ChatGPT, or your own — can schedule posts, manage media, and read your queue as first-class tools. No glue code: the agent calls tools directly.
Endpoint
https://schedulenchill.com/mcp
Authentication
The MCP server uses the same API keys as the REST API. Send your key as a bearer token:
Authorization: Bearer YOUR_API_KEY
Create a key under Settings → API Keys (see Authentication).
What it exposes
| Kind | Items |
|---|---|
| Tools | schedule_post, get_accounts, list_scheduled, cancel_post, get_stats, browse_media, upload_media |
| Resources | Connected Accounts, Upcoming Schedule, Media Library |
| Prompts | content_idea, draft_post |
Connecting
Claude Desktop / Claude Code
Add a remote MCP server pointing at the endpoint with an Authorization header. In an MCP client config that supports remote HTTP servers:
{
"mcpServers": {
"schedulenchill": {
"url": "https://schedulenchill.com/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
ChatGPT / custom agents
Any MCP-capable client works. Point it at https://schedulenchill.com/mcp and pass the bearer token. From your own code, use an MCP client library and the same URL + header.
A typical agent flow
- Call
get_accountsto discover where it can post. - Optionally
browse_media(orupload_mediafrom a URL) to attach visuals. - Call
schedule_postwith content, platforms, and an optional time. - Confirm with
list_scheduled, orcancel_postto undo.
See Tools for full parameters.