Aerostack
electrical_services

Ocoya MCP Server — Hosted Api Connectors Integration

MCP Server language Hosted language Public

Schedule and manage social media posts across all platforms — Facebook, Instagram, X, LinkedIn, TikTok, Pinterest, YouTube — powered by Ocoya.

aerostack @aerostack verified
v0.1.0 MIT Updated May 13, 2026
robot_2

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.

.claude/mcp.json
{
  "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:

+1 more

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.

add_circleAdd to Workspace

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

  1. Go to aerostack.dev → Add MCP
  2. Search "Ocoya" and add to your workspace
  3. Add your OCOYA_API_KEY in the secrets panel
  4. 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:

  1. Create an AI Endpoint with Notion + Ocoya MCPs attached
  2. Set a schedule (e.g., every 30 minutes)
  3. System prompt: "Query Notion DB for approved posts → schedule them via Ocoya"
  4. 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.

terminal
list_workspaces #1

List all Ocoya workspaces you have access to. Use this first to get a workspace ID for other operations.

terminal
list_social_profiles #2

List connected social media profiles (accounts) in a workspace. Returns profile IDs needed for scheduling posts.

terminal
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.

terminal
list_posts #4

List posts in a workspace, optionally filtered by status.

terminal
update_post #5

Update a scheduled post — currently supports changing the scheduled time.

terminal
delete_post #6

Delete a post and cancel all its schedules.

terminal
list_automations #7

List Ocoya automation workflows in a workspace (e.g. daily poster, mention responder).

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category API Connectors
terminal Tools 7

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-ocoya

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in API Connectors

Browse API Connectors MCPs →

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.