MCP Server

Tools Reference

All available MCP tools, organized by category. Select a category to see the full tool documentation.


Programmatic Access

The MCP server exposes its tool definitions as a JSON endpoint — no authentication required. You can query it directly to get the current list of tools, their descriptions, and input schemas.

GET https://mcp.splattr.ai/docs

The response is a JSON object with a tools array and a categories array. Each tool entry includes:

{
  "tools": [
    {
      "name": "list_campaigns",
      "description": "List all your campaigns with status and profile counts.",
      "category": "Campaigns",
      "async": false,
      "parameters": {
        "type": "object",
        "properties": {},
        "required": []
      }
    }
  ],
  "categories": [
    {
      "label": "Campaigns",
      "slug": "campaigns",
      "description": "Create, train, rename, and archive campaigns."
    }
  ]
}

This page is itself a live reflection of that endpoint — it re-fetches every 60 seconds, so new tools and categories appear automatically without any manual documentation update.