@socheli/mcp
Allows publishing content to Instagram and planning Instagram posts through the Socheli content engine.
Allows publishing content to Telegram and planning Telegram posts through the Socheli content engine.
Allows publishing content to TikTok and planning TikTok posts through the Socheli content engine.
Allows publishing content to YouTube and planning YouTube posts through the Socheli content engine.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@socheli/mcpList the last 5 items and their QA scores"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@socheli/mcp
A Model Context Protocol server that gives Claude — and any MCP-enabled agent — your Socheli content engine as tools.
List and inspect content, dispatch renders to your device fleet, check device status, publish across platforms, and read/curate the dated content plan — all from a chat with your agent.
What it is
@socheli/mcp is a Model Context Protocol server that exposes Socheli as agent tools, so Claude (or any MCP client) can inspect content, dispatch renders to the fleet, publish finished posts, and read & curate the dated content plan — by talking to it in natural language.
It is a dependency-free stdio JSON-RPC server built on top of @socheli/sdk, which it uses to talk to the Socheli HTTP API. Every tool call is a typed SDK call under the hood. Authentication is one Socheli API key.
Under the hood it speaks the 2024-11-05 MCP protocol over stdin/stdout using Content-Length-framed JSON-RPC, and advertises a tools capability with serverInfo { name: "socheli", version: "0.1.0" }.
Related MCP server: Mistral Agent Manager
Install
npm i -g @socheli/mcp
# or run on demand, no install:
npx @socheli/mcpThe package ships a socheli-mcp binary. Most users don't run it directly — they point an MCP client at it (see Quickstart).
Authentication
The server is configured with two environment variables — one for the API base URL, one for your API key:
Env var | Required | Default | Description |
| yes | — | Your Socheli API key (e.g. |
| no |
| The Socheli API base URL. |
These are passed to createSocheli({ baseUrl: process.env.SOCHELI_API_URL, apiKey: process.env.SOCHELI_API_KEY }). The SDK then authenticates to the API with Authorization: Bearer <SOCHELI_API_KEY> on every request. A wrong key yields 401; a server with no key configured yields 503.
Set these in your MCP client's
envblock (below), not in a shell, so the agent process inherits them.
Quickstart
Add Socheli to your MCP client. For Claude Desktop / Claude Code, drop this into your .mcp.json (or claude_desktop_config.json):
{
"mcpServers": {
"socheli": {
"command": "npx",
"args": ["@socheli/mcp"],
"env": {
"SOCHELI_API_URL": "https://api.socheli.com",
"SOCHELI_API_KEY": "sk_live_xxx"
}
}
}
}Running from a checkout of the monorepo instead of npm? Use the source entry directly:
{
"mcpServers": {
"socheli": {
"command": "node",
"args": ["--import", "tsx", "packages/mcp/src/index.ts"],
"env": {
"SOCHELI_API_URL": "https://api.socheli.com",
"SOCHELI_API_KEY": "sk_live_xxx"
}
}
}
}Then just talk to your agent:
"Use socheli to list the last 5 items and their QA scores."
"Generate a video about the science of habit on
concept_laband auto-publish it.""What devices are online right now?"
"Show me everything planned for next Tuesday and archive anything scoring under 7."
"Move the Instagram post on the 20th to the 25th at 2:30pm."
Tool reference
Core
Tool | Description | Arguments |
| List recent content items (id, status, QA score, title). |
|
| Get the full detail of one content item by id — idea, script, storyboard, package, video URL, publish state. |
|
| Dispatch a new render job to the device fleet from an idea/seed. |
|
| List recent fleet jobs and their status (dispatched/running/done/error) and which device ran them. | (none) |
| Show connected render devices and how many are online/idle/busy. | (none) |
| Publish a finished item to every configured platform (YouTube / Instagram / TikTok + bundle). Set |
|
Calendar & plan (plan_*)
The full plan_* CRUD is exposed too, so an agent can read and curate the dated content plan exactly the way the dashboard's day dialog does — open a day, open an event, edit / move / archive / delete. Posts live as PlannedPost records.
Tool | Kind | Description | Arguments |
| read | List planned posts (newest plan-run first). |
|
| read | One full post by id. |
|
| read | Every post for one date, sorted by time — the day-view data. |
|
| mutate | Hand-add a post. |
|
| mutate | Edit fields on a post. |
|
| mutate | Reschedule a post (drag-and-drop equivalent). |
|
| mutate | Soft-hide a post (status → |
|
| mutate | Permanently delete a post (not reversible). |
|
| read | The saved strategy brief for a channel (channel brief + subject playbook + per-cluster cadence). |
|
| long | Run the algo planner for a channel and append a dated plan. Returns a started job. |
|
All mutations return the affected post. plan_archive is reversible (plan_update the status back to idea); plan_delete is not.
The PlannedPost
type PlannedPost = {
id: string;
date: string; // YYYY-MM-DD
time: string; // HH:MM
channel: string; // brand / channel id
platform: "youtube" | "instagram" | "tiktok" | "x" | "linkedin" | "telegram";
topic: string;
angle: string;
format: string; // short | explainer | …
mood?: string;
hook?: string;
rationale: string;
algoLever?: string; // which algorithm lever this idea exploits
scores?: Record<string, number>;
overall?: number;
status: "idea" | "approved" | "scheduled" | "generated" | "dropped" | "archived";
planRunId: string;
createdAt: string;
updatedAt?: string;
};How it works
The server implements the MCP JSON-RPC methods below over a Content-Length-framed stdio transport:
Method | Behavior |
| Returns |
| Acknowledged (no-op). |
| Returns every tool's |
| Looks up the named tool, runs it via the SDK, and returns the result as |
Each tool's run maps directly to an @socheli/sdk call — e.g. socheli_list_items → socheli.items.list(...), socheli_generate → socheli.generate(...), socheli_publish → socheli.items.publish(...). Tool errors are returned to the agent as text content with isError: true rather than as transport errors, so the model can read and react to them.
The Socheli surfaces
Socheli is built API-first. This MCP server is one of four public client surfaces, all speaking to the same control plane:
Surface | Package | Repo |
HTTP API |
| |
SDK |
| |
CLI |
| |
MCP |
| Socheli/mcp — you are here |
Full documentation lives at docs.socheli.com.
Developed in the Socheli monorepo
@socheli/mcp is developed inside the Socheli monorepo (as packages/mcp) alongside the API, SDK, CLI, and engine, and mirrored to this repo for publishing. Issues and PRs are welcome here.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Socheli/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server