Ocoya MCP Server — Hosted Api Connectors Integration
MCP Server language Hosted language PublicSchedule and manage social media posts across all platforms — Facebook, Instagram, X, LinkedIn, TikTok, Pinterest, YouTube — powered by Ocoya.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"ocoya": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-ocoya",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the list_workspaces tool to list all ocoya workspaces you have access to. use this first to get a workspace id for other operations”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-ocoya — Social Media Scheduling MCP Server
Schedule and manage social media posts across all platforms from your AI agents.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-ocoya
What You Can Do
- Schedule posts to Facebook, Instagram, X, LinkedIn, TikTok, Pinterest, YouTube, Google Business
- Create drafts for review before publishing
- List and manage scheduled/published posts
- View connected social profiles
- Monitor Ocoya automations
Available Tools
| Tool | Description |
|---|---|
list_workspaces |
List your Ocoya workspaces (get workspace ID) |
list_social_profiles |
List connected social accounts in a workspace |
create_post |
Create and schedule a post (or save as draft) |
list_posts |
List posts filtered by status (draft/scheduled/posted) |
update_post |
Reschedule a post |
delete_post |
Delete a post and cancel its schedules |
list_automations |
List Ocoya automation workflows |
Configuration
| Variable | Required | Description |
|---|---|---|
OCOYA_API_KEY |
Yes | Ocoya API key — generate from your Ocoya dashboard (Settings → API) |
Quick Start
- Go to aerostack.dev → Add MCP
- Search "Ocoya" and add to your workspace
- Add your
OCOYA_API_KEYin the secrets panel - Start scheduling posts from any AI agent or bot
Example: Schedule a Post
{
"tool": "create_post",
"arguments": {
"workspace_id": "ws_abc123",
"caption": "Excited to announce our new feature! Check it out at example.com",
"social_profile_ids": ["prof_twitter", "prof_linkedin"],
"scheduled_at": "2026-03-20T09:00:00Z"
}
}
Example: Notion → Social Media Flow
Combine with the Notion MCP to automate social publishing:
- Create an AI Endpoint with Notion + Ocoya MCPs attached
- Set a schedule (e.g., every 30 minutes)
- System prompt: "Query Notion DB for approved posts → schedule them via Ocoya"
- Approve posts in Notion, they auto-publish to your socials
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-ocoya \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-OCOYA-API-KEY: your-ocoya-api-key' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "create_post",
"arguments": {
"workspace_id": "your-workspace-id",
"caption": "Hello world!",
"social_profile_ids": ["profile-id-1"]
}
}
}'
terminal Tools (7)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
list_workspaces #1 List all Ocoya workspaces you have access to. Use this first to get a workspace ID for other operations.
list_social_profiles #2 List connected social media profiles (accounts) in a workspace. Returns profile IDs needed for scheduling posts.
create_post #3 Create and optionally schedule a social media post. Provide caption and/or media URLs. If no socialProfileIds are given, post is saved as a draft. If scheduledAt is omitted, post is published immediately.
list_posts #4 List posts in a workspace, optionally filtered by status.
update_post #5 Update a scheduled post — currently supports changing the scheduled time.
delete_post #6 Delete a post and cancel all its schedules.
list_automations #7 List Ocoya automation workflows in a workspace (e.g. daily poster, mention responder).
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-ocoya
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in API Connectors
Browse API Connectors MCPs →Aerostack Registry
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
Algolia
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
Arangodb
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
Ayrshare
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
Basecamp
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
Bigquery
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Frequently asked questions
What is the Ocoya MCP server and what can it do? +
The Ocoya MCP server is hosted on Aerostack and exposes these tools to your AI agent: `list_workspaces`, `list_social_profiles`, `create_post`, `list_posts`, `update_post`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Ocoya MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Ocoya MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Ocoya MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Ocoya MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-ocoya": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-ocoya"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Ocoya MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-ocoya", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-ocoya"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Ocoya MCP require authentication? +
Yes. Ocoya requires authentication. Check the MCP's documentation for the required credentials.