Skip to content
adscapi

mcp

Run the adscapi MCP server over stdio. Point any MCP client at it and an agent gets four tools: platforms, check, verify, track. Platform tokens come from the server process environment.

Usage

shell
adscapi mcp

No flags. The process stays up and speaks MCP on stdin/stdout — you almost never run this by hand; the MCP client launches it.

Wire it into a client

Claude Code:

shell
claude mcp add adscapi -- npx -y adscapi mcp

Cursor, Codex CLI, Gemini CLI, opencode:

jsonc
// .mcp.json
{
  "mcpServers": {
    "adscapi": {
      "command": "npx",
      "args": ["-y", "adscapi", "mcp"]
    }
  }
}

Tools

ToolUse it to
adscapi_platformsList every destination, support level, and required secrets
adscapi_checkSee which platforms are configured right now
adscapi_verifyLive-check that a configured token actually works
adscapi_trackFire one canonical conversion to every configured platform

Environment

The server reads tokens from its own process environment — export them in the shell that launches the client, or set env in the MCP config. Same secret names as adscapi platforms.

Related