Model Context Protocol (MCP)
SchedPilot provides a first-class MCP Server implementation. This allows you to connect your social media management directly to AI agents, IDEs (like Cursor), and local LLM interfaces.
By connecting the SchedPilot MCP server to an AI, the agent can autonomously:
- List your accounts to know where it can post.
- Write and schedule content based on your instructions.
- Upload media it has generated or found.
🛠 Installation
The SchedPilot MCP server is a Node.js-based executable. You can run it directly via npx or install it globally.
1. Prerequisites
Ensure you have Node.js (v18+) installed and a valid SchedPilot API Key.
2. Configuration for Claude Desktop
To use SchedPilot with Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"schedpilot": {
"command": "npx",
"args": ["-y", "@schedpilot/mcp-server"],
"env": {
"SCHEDPILOT_API_KEY": "smm_your_actual_key_here"
}
}
}
}