On this page

MCP

Cloud MCP server that exposes the same workspace operations as Public REST. MCP only calls the Public API with the user’s API key — it does not hold Gmail/Maps provider secrets.

Host: https://mcp.notiq.io

Canonical docs: https://docs.notiq.io. White-label vanity MCP must not advertise NotiQ docs.

Auth (resolution order)

MCP accepts any of:

  1. X-API-Key: sk_live_…
  2. Authorization: Bearer sk_live_…
  3. Authorization: Bearer mcp_at_… — OAuth access token from the consent flow
ClientTypical method
CursorX-API-Key in MCP client headers
Claude / ChatGPTOAuth — paste sk_… on the consent page (see Connect Claude / ChatGPT)

Rules:

  • Discovery / initialize / tools/list may omit a key; tools/call requires one.
  • Outbound REST always uses X-API-Key only (never Bearer, never mcp_at_).
  • Never ask the user to paste a key into chat.

Tools ↔ REST (1:1)

MCP toolREST
get_creditsGET /credits
list_accountsGET /accounts
list_campaignsGET /campaigns
create_campaignPOST /campaigns
get_campaignGET /campaigns/:id
start_campaignPOST /campaigns/:id/start
pause_campaignPOST /campaigns/:id/pause
list_leadsGET /campaigns/:id/leads
get_leadGET /campaigns/:id/leads/:leadId
add_leadPOST /campaigns/:id/leads
update_leadPATCH /campaigns/:id/leads/:leadId
send_messagePOST /inbox/messages

Argument schemas live on MCP tools/list after connect.

Credits & safety (for agents)

  • Only add_lead costs 1 credit at call time.
  • Maps create_campaign discovery debits 1 credit per email lead found asynchronously.
  • Confirm with the user before send_message or start_campaign (real Gmail, irreversible).
  • Start with list_accounts and list_campaigns for ids; paginate with nextCursor.

Discovery endpoints (no auth)

PathRole
/healthLiveness + whether Public API base is configured
/, /.well-known/mcp.jsonSlim discovery JSON (tool names + blurbs)
/.well-known/oauth-authorization-serverOAuth AS metadata
/.well-known/oauth-protected-resourceOAuth resource metadata
/llms.txtShort machine-readable summary
/mcpStreamable HTTP MCP endpoint
/authorize, /token, /registerOAuth / DCR (Claude/ChatGPT style clients)

Connection tip (Cursor)

{
  "mcpServers": {
    "notiq": {
      "url": "https://mcp.notiq.io/mcp",
      "headers": {
        "X-API-Key": "sk_live_…"
      }
    }
  }
}

Create the key at /api-mcp.