Loading...
Loading...
Model Context Protocol (MCP) is an open standard from Anthropic that lets AI assistants discover and call external tools as structured function calls — with full type schemas, descriptions, and error handling. Any MCP-compatible AI (Claude, GPT-4, Gemini, local models via LM Studio) can connect to this server and use BOSS tools autonomously, without you writing any integration code.
{
"mcpServers": {
"boss": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch",
"https://boss-mcp.cendien.workers.dev/mcp"
]
}
}
}After saving the config, restart Claude Desktop. You will see BOSS tools in the tool picker (hammer icon in the conversation). Try: “Generate a 60-second explainer video about AI agents.”
Claude Desktop / GPT / any MCP-compatible LLM
│
│ JSON-RPC 2.0 (POST /mcp)
▼
boss-mcp.cendien.workers.dev (this Cloudflare Worker)
│
├── boss.ceo/api/video/* Next.js — video generation + scene AI
├── boss.ceo/api/intel/linkedin/* Next.js — LinkedIn analysis (AI-powered)
├── boss.ceo/api/domains Next.js — RDAP + DNS domain check
├── boss.ceo/api/social/post Next.js — social media posting
├── boss-intel-search.cendien.workers.dev CF Worker — LinkedIn search
├── boss-media.cendien.workers.dev CF Worker — R2 + KV storage
└── render.boss.ceo Render.com — FFmpeg + TTS renderingThe MCP server is a Cloudflare Worker in the BOSS repo at workers/boss-mcp/. Deploy your own instance:
$ cd workers/boss-mcp $ wrangler deploy