/🤖 AI Agents & MCP/MCP Quickstart

MCP Quickstart

Model Context Protocol (MCP) lets AI agents call PlanSched as a native tool — schedule posts, read analytics, and manage media without wiring the REST API by hand.

What is MCP?

MCP is an open standard for exposing tools to LLM clients. PlanSched ships a hosted MCP server; any MCP-compatible client (Claude Desktop, Cursor, Windsurf, etc.) can connect with your API key.

MCP endpoint

https://mcp.plansched.com/v1

Authenticate with the same API key used for the REST API.

Claude Desktop

Add this block to your Claude Desktop config:

{
  "mcpServers": {
    "plansched": {
      "url": "https://mcp.plansched.com/v1",
      "headers": {
        "Authorization": "Bearer sp_live_..."
      }
    }
  }
}

Cursor

In Cursor Settings → MCP → Add server:

Name:    plansched
URL:     https://mcp.plansched.com/v1
Header:  Authorization: Bearer sp_live_...
Next
AI Agents & MCP → Tools Reference
Continue