You will learn#
The Attribuly Model Context Protocol (MCP) server seamlessly integrates with Attribuly’s APIs, enabling AI clients to interact with your Attribuly data. This guide will walk you through configuring various MCP clients for both the remote-hosted MCP server (recommended) and the local MCP server.MCP (Model Context Protocol) is an open protocol that helps AI models securely interface with different data sources and tools. You’ll connect Attribuly’s MCP server to an MCP client, i.e., an AI agent like Claude or Cursor, to get assistance with your Attribuly data. Your MCP client can help with a variety of tasks from campaign creation to performance reports. Here are some examples of prompts you can give:Show me the performance of my campaigns from the last 30 days.
Which campaign are performing the best in terms of conversions?
Configuration#
2.
For authentication, please use your API key. For details, refer to the API Authentication Guide.
Claude Code CLI#
Claude Code Desktop#
2.
Open Claude Desktop. Within Settings > Developer > Edit Config, add the following, substituting your API key and MCP server address:
{
"mcpServers": {
"attribuly": {
"type": "http",
"url": "https://data.api.attribuly.com/mcp",
"headers": {
"ApiKey": "your-api-key"
}
}
}
}
4.
Once you have saved all configuration changes, terminate all Claude processes and relaunch Claude to apply the new settings.
5.
Verify the connection by looking for visual indicators and asking a question to test the connection.
Cursor#
2.
Open Cursor. Within Settings > Cursor Settings > Tools & Integrations > Add Custom MCP, add the following, substituting your API key and MCP server address:
{
"mcpServers": {
"attribuly": {
"type": "http",
"url": "https://data.api.attribuly.com/mcp",
"headers": {
"ApiKey": "your-api-key"
}
}
}
}
4.
Once you have saved all configuration changes, terminate all Cursor processes and relaunch Cursor to apply the new settings.
5.
Verify the connection by looking for visual indicators and asking a question to test the connection.
VS Code#
2.
Open VS Code. Within settings (Ctrl + Shift + P > Preferences: Open Settings (JSON)), add the following, substituting your API key and MCP server address:
{
"mcp": {
"servers": {
"attribuly": {
"type": "http",
"url": "https://data.api.attribuly.com/mcp",
"headers": {
"ApiKey": "your-api-key"
}
}
}
}
}
4.
Once you have saved all configuration changes, terminate all VS Code processes and relaunch VS Code to apply the new settings.
5.
Verify the connection by looking for visual indicators and asking a question to test the connection.
| Tool Name | Description |
|---|
| get_all_attribution_data | Get omnichannel attribution report data |
| get_ad_attribution_data | Get ad attribution report data |
| get_product_analysis_data | Get product analysis report data |
| get_influencer_data | Get influencer attribution report data |
| get_link_builder_data | Get custom tracking link attribution report data |
Getting Started#
2.
Get your private API key from Settings > API Keys
3.
Configure your MCP client following the instructions above
4.
Start using your MCP client
Modified at 2026-03-14 07:00:35