Skip to content

Your AI assistant publishes through Comunicate.top

Comunicate.top runs an MCP (Model Context Protocol) server: any assistant that speaks MCP — Claude, ChatGPT, Cursor, Gemini — can search the catalogue, write drafts, prepare editorial plans and, only if you allow it, order publications. With the same API key as every other integration.

How it works

  1. Issue an API key

    From your account, under Integrations. Pick the permissions: catalogue and articles only for an assistant that prepares material; publications too for one that orders.

  2. Add the server to your assistant

    The address is https://app.comunicate.top/mcp; the key goes in the Authorization header. Configurations for Claude, Cursor and Gemini are below.

  3. Work in plain language

    “Find ten health sites under 60 RON”, “write a draft about…”, “prepare the September editorial plan”. The assistant uses the tools; you see the result in your account.

The money switch

By default an assistant cannot spend: it searches, writes drafts and plans, checks articles, but an order for publication or writing is refused with an explanation. When you want automatic publishing, turn on “AI assistants may order and publish” under Integrations. Turning it on or off stays in the audit log, and every order shows up in Publications like any other.

The key’s permissions still apply on top: a key without “publications · write” cannot order anyway. Two locks, so an assistant’s mistake cannot drain an account.

Connecting

The server uses the stateless Streamable HTTP transport and accepts two kinds of authentication: an API key in the Authorization header, or OAuth 2.1 (standard metadata at /.well-known/oauth-authorization-server; clients that speak OAuth, such as ChatGPT or claude.ai, connect on their own). Address: https://app.comunicate.top/mcp

Claude Code

claude mcp add --transport http comunicate https://app.comunicate.top/mcp --header "Authorization: Bearer bk_live_…"

Claude Desktop / claude.ai

{
  "mcpServers": {
    "comunicate": {
      "type": "http",
      "url": "https://app.comunicate.top/mcp",
      "headers": {
        "Authorization": "Bearer bk_live_…"
      }
    }
  }
}

Cursor

{
  "mcpServers": {
    "comunicate": {
      "url": "https://app.comunicate.top/mcp",
      "headers": {
        "Authorization": "Bearer bk_live_…"
      }
    }
  }
}

Gemini CLI

{
  "mcpServers": {
    "comunicate": {
      "httpUrl": "https://app.comunicate.top/mcp",
      "headers": {
        "Authorization": "Bearer bk_live_…"
      }
    }
  }
}

OpenAI API (Responses / Agents SDK)

{
  "model": "gpt-5",
  "tools": [
    {
      "type": "mcp",
      "server_label": "comunicate",
      "server_url": "https://app.comunicate.top/mcp",
      "headers": {
        "Authorization": "Bearer bk_live_…"
      },
      "require_approval": "never"
    }
  ],
  "input": "…"
}

ChatGPT and OpenAI

ChatGPT’s MCP connector (Settings → Connectors → Create, with Developer mode on) connects through OAuth: address https://app.comunicate.top/mcp, OAuth authentication, then you sign in to your account and pick the organization and permissions. claude.ai connects the same way. Applications built on the OpenAI API (Responses, Agents SDK) use the MCP server directly with the Authorization header. A custom GPT can also connect through Actions, with the OpenAPI specification below and an API key.

API documentation · openapi.json

Available tools

Twenty tools, with the same rules as the Partner API. The marked ones spend money from the account and require the switch to be on.

  • whoami
  • get_balance
  • search_catalog
  • get_site
  • list_campaign_types
  • list_articles
  • get_article
  • create_article
  • update_article
  • check_article_seo
  • check_article_fit
  • list_campaigns
  • create_campaign
  • update_campaign
  • list_publications
  • get_publication
  • order_publicationspends
  • order_writingspends
  • list_writing_orders
  • report_summary

Example requests

  • Find five medical-niche sites with DR above 20 and under 50 RON, tell me which campaign types they accept and what all of them would cost.
  • Write a 700-word draft about solar panels for client X, with a link to their site, and check whether it passes the SEO requirements.
  • Prepare the October editorial plan for brand Y: three articles, 900 RON budget, business sites only.

Zapier, Make and other automations

The same API powers classic automations: the OpenAPI specification imports directly into Zapier (Platform, “Import from OpenAPI”), into Make (custom app) or into any client generator. Events (published, failed, payment confirmed) arrive through the webhooks under Integrations.

API documentation · openapi.json · Open an account and issue your first key

MCP server for AI assistants | Comunicate.top