Skip to content

Introduction to OpenQuok MCP

Connect Cursor, Claude Code, Codex, and other MCP (Model Context Protocol) clients to OpenQuok.

4 min read

Connect your agent today

Draft from chat, review in your calendar, and publish only what you approve.

Start for $0

What is OpenQuok MCP?

OpenQuok exposes a hosted MCP server so AI clients can list connected channels, schedule and manage posts, configure plugs, and read analytics without installing the CLI skill.

Use the same opo_ programmatic access token you generate under DevelopersAccess.

MCP documentation

Connect a native MCP client, then browse examples, tool reference, and per-client setup guides.

How it works

The server registers tools that AI clients discover at connect time. The agent reads each tool’s schema, then calls them on your behalf against the authenticated workspace.

A typical workflow:

  1. ListgroupList (optional) then integrationList to find channel UUIDs; integrationSchema for platform rules.
  2. ScheduleschedulePostTool to draft, schedule, or publish now; uploadFromUrl when you need media ids before scheduling.
  3. ManagepostsList, postsStatus, postsReschedule, postsDelete, postsReviewTodo; postsMissing then postsConnect when release_id is missing.
  4. AnalyticsanalyticsPlatform or analyticsPost with days 7, 30, or 90.
  5. PlugsplugsCatalog, plugsList, plugsUpsert for global like-threshold rules; cross-account comments on create go in schedulePostTool settings.

All of this can happen when you ask your agent something like:

Schedule a post to X for tomorrow at 10am: Excited to announce our new feature!

Endpoints

EndpointAuthPurpose
GET/POST /mcpAuthorization: Bearer opo_…Streamable HTTP MCP
GET/POST /mcp/:tokenAPI key in URL pathClients that cannot set headers
OPTIONS on bothCORS *Browser-based MCP clients

Base URL

EnvironmentMCP URL
OpenQuok Cloudhttps://api.openquok.com/mcp
Self-hostedYour BACKEND_DOMAIN_URL origin + /mcp

Authentication

Send your workspace programmatic token as a Bearer credential:

curl -H "Authorization: Bearer opo_your_programmatic_token" 
  https://api.openquok.com/mcp

If your client cannot set headers, append the token to the path:

https://api.openquok.com/mcp/opo_your_programmatic_token

OAuth2 access tokens from third-party apps also use the opo_ prefix and work the same way.

Available tools

GroupToolPurpose
ChannelsgroupListList channel groups (customers)
ChannelsintegrationListList connected social channels; optionally filter by group
ChannelsintegrationSchemaCharacter limits, compose settings, and allow-listed provider tools
ChannelstriggerToolInvoke an allow-listed provider method on a connected channel
SchedulingschedulePostToolDraft, schedule, or publish-now posts; per-channel settings for plugs
SchedulinguploadFromUrlFetch a public HTTPS URL into workspace media
PostspostsListList posts in a date window
PostspostsFindSlotSuggest a free schedule slot
PostspostsStatusFlip draft ↔ scheduled at the stored time
PostspostsRescheduleMove post group to a new publish time
PostspostsReviewTodoSet or update a review-todo note
PostspostsDeleteDelete a post row
PostspostsMissingList candidates when release_id is missing
PostspostsConnectLink a post to a provider release_id
AnalyticsanalyticsPlatformPlatform-level metrics for a channel (days 7, 30, or 90)
AnalyticsanalyticsPostPer-post metrics for a published row
PlugsplugsCatalogList global plug types and field names
PlugsplugsListList saved global plug rules on a channel
PlugsplugsUpsertCreate or update a global plug rule
PlugsplugsActivateEnable or disable a saved global plug
PlugsplugsDeleteDelete a saved global plug

Image and video generation MCP tools are not available yet. Local file upload and CLI device login stay on the openquok-core CLI skill.

Verify connection

After configuring your client, ask your agent:

List my connected social media accounts

If authentication succeeds, the agent calls integrationList and returns your workspace channels.

Other MCP sections plus the public API and CLI.

Search documentation
Find a docs page
Discord Support