MCP Server
Setup & Configuration
Connect to the AIARCO MCP Server from Claude Code, VS Code, Cursor, or any MCP-compatible client.
Connect your AI assistant to the AIARCO MCP Server in under 2 minutes. No installation required — the server is fully hosted.
Prerequisites
- A channel API key from publishers.ads.aiarco.com (starts with
aiarco_) - An MCP-compatible AI client — Claude Code, VS Code Copilot, Cursor, Windsurf, or similar
Server URL
https://mcp.aiarco.com/mcp
This is the only endpoint you need. It supports Streamable HTTP transport with JSON-RPC 2.0 messaging.
Connect Your Client
Claude Code
Run this command in your terminal:
claude mcp add --transport http aiarco https://mcp.aiarco.com/mcpVS Code (Copilot)
Add to your .vscode/mcp.json:
{
"servers": {
"aiarco": {
"type": "http",
"url": "https://mcp.aiarco.com/mcp"
}
}
}Cursor / Windsurf
Add to your MCP configuration file (.cursor/mcp.json or equivalent):
{
"mcpServers": {
"aiarco": {
"url": "https://mcp.aiarco.com/mcp"
}
}
}Any MCP Client
Use these connection details for any MCP-compatible client:
Endpoint: https://mcp.aiarco.com/mcp
Transport: Streamable HTTP
Format: JSON-RPC 2.0
Connection Lifecycle
- Initialize — Your client sends an
initializerequest to negotiate capabilities - Discover — The server responds with available tools via
tools/list - Invoke — Your client calls tools like
broadcast_signalandget_offersas needed - Track — Report impressions with
track_impressionsafter displaying offers
Verify Connection
Test your connection with the MCP Inspector:
npx -y @modelcontextprotocol/inspectorEnter https://mcp.aiarco.com/mcp as the endpoint. You should see the available tools listed.