Meta Pixel Spur MCP Quickstart | Connect in Minutes
Docs / MCP
Quickstart

Set up Spur MCP in 5 minutes

Use this guide to connect any compatible MCP client and validate tool behavior end-to-end.

MCP endpoint

https://api.spurnow.com/mcp

Connection steps

  1. Create an API key for the workspace that the MCP client should access.
  2. Set the MCP URL to the endpoint shown below.
  3. Configure Bearer authentication using your key.
  4. Run tools/list and confirm the expected tool names are returned.
  5. Run one tools/call request and verify success and error behavior.

Codex app settings

  • Transport: Streamable HTTP
  • URL: https://api.spurnow.com/mcp
  • Bearer token env var: use the variable name, not the literal key
  • Accept header: application/json, text/event-stream

Validate with JSON-RPC

Expected tool names from tools/list:

template_create_drafttemplate_submit_for_reviewtemplate_searchtemplate_refreshtemplate_deletetemplate_requirementschannels_listmessage_sendcontact_createcontact_searchcontact_updatecontact_deletesegment_filters_catalogsegment_searchsegment_createsegment_updatesegment_deletebroadcast_createbroadcast_updatebroadcast_launchbroadcast_searchbroadcast_analyticsbroadcast_overview_stats

Request body: tools/list

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list",
  "params": {}
}

Request body: contact_create

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "contact_create",
    "arguments": {
      "firstName": "MCP",
      "lastName": "Tester",
      "number": "919876543210",
      "email": "mcp.tester@example.com"
    }
  }
}