Skip to main content

MCP server for Conceptual Keywords & Creative Performance API

Project description

MCP Conceptual

An MCP (Model Context Protocol) server for the Conceptual Keywords & Creative Performance API. This server provides access to keyword and creative performance data from Google Ads and Meta advertising platforms.

Features

  • Keywords Performance: Get keyword metrics, CAC analysis, and performance data
  • Search Terms: Retrieve search terms that triggered your ads
  • Creative Performance: Access Meta and Google Ads creative performance data
  • Creative Management: Get and update creative status (pause/activate)
  • Rate Limiting: Built-in awareness of API rate limits
  • Error Handling: Comprehensive error handling with helpful messages

Installation

Using uvx (Recommended)

uvx mcp-conceptual

From Source

git clone <repository-url>
cd mcp-conceptual
pip install -e .

Configuration

Environment Variables

Create a .env file in your project root:

# Required
CONCEPTUAL_API_KEY=your_api_key_here

# Optional (defaults to production)
CONCEPTUAL_BASE_URL=https://api.conceptual.com/api

Getting an API Key

  1. Log into your Conceptual account
  2. Go to Account Settings
  3. Generate an API key for your customer account
  4. Set the CONCEPTUAL_API_KEY environment variable

Usage

With Claude Desktop

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "conceptual": {
      "command": "uvx",
      "args": ["mcp-conceptual"],
      "env": {
        "CONCEPTUAL_API_KEY": "your_api_key_here"
      }
    }
  }
}

Standalone

# Run the server
mcp-conceptual

# Or with uvx
uvx mcp-conceptual

Available Tools

Keywords Tools

get_keyword_performance

Get keyword performance data including cost, clicks, conversions, and CAC analysis.

Parameters:

  • start_date (required): Start date (YYYY-MM-DD)
  • end_date (required): End date (YYYY-MM-DD)
  • view_type: keywords, search_terms, manual, or campaign_content (default: keywords)
  • advanced_mode: Include advanced metrics (default: false)
  • limit: Max records to return (1-1000, default: 100)
  • offset: Records to skip for pagination (default: 0)
  • sort_by: Field to sort by (cost, clicks, impressions, conversions, cac, ctr, cpc, conversion_rate)
  • sort_direction: asc or desc (default: desc)

Rate limit: 60 requests per minute

get_search_terms_performance

Get search terms that triggered your ads with performance metrics.

Parameters:

  • start_date (required): Start date (YYYY-MM-DD)
  • end_date (required): End date (YYYY-MM-DD)
  • advanced_mode: Include advanced metrics (default: false)
  • limit: Max records to return (1-1000, default: 100)
  • offset: Records to skip for pagination (default: 0)
  • sort_by: Field to sort by
  • sort_direction: asc or desc (default: desc)

Rate limit: 60 requests per minute
Note: May be slower due to large volume of search terms data

get_manual_keywords_info

Get information about manual keywords functionality.

Parameters:

  • start_date (required): Start date (YYYY-MM-DD)
  • end_date (required): End date (YYYY-MM-DD)

get_campaign_content_info

Get information about campaign content functionality.

Parameters:

  • start_date (required): Start date (YYYY-MM-DD)
  • end_date (required): End date (YYYY-MM-DD)

Creative Tools

get_meta_creative_performance

Get Meta (Facebook/Instagram) creative performance data.

Parameters:

  • start_date (required): Start date (YYYY-MM-DD)
  • end_date (required): End date (YYYY-MM-DD)
  • platform: meta, google, or all (default: all)
  • status: active, paused, or all (default: all)
  • limit: Max records to return (1-500, default: 100)
  • offset: Records to skip for pagination (default: 0)
  • include_images: Include creative image URLs (default: true)
  • sort_by: Field to sort by (spend, impressions, clicks, conversions, cpm, cpc, ctr, conversion_rate)
  • sort_direction: asc or desc (default: desc)

Rate limit: 30 requests per minute

get_google_creative_performance

Get Google Ads creative performance data.

Parameters:

  • start_date (required): Start date (YYYY-MM-DD)
  • end_date (required): End date (YYYY-MM-DD)
  • limit: Max records to return (1-500, default: 100)
  • offset: Records to skip for pagination (default: 0)
  • sort_by: Field to sort by
  • sort_direction: asc or desc (default: desc)

Rate limit: 30 requests per minute

get_creative_status

Get the current status of a specific creative/ad.

Parameters:

  • creative_id (required): Creative/Ad ID

update_creative_status

Update the status of a creative/ad (pause or activate).

Parameters:

  • creative_id (required): Creative/Ad ID
  • status (required): New status (ACTIVE, PAUSED, active, or paused)

Rate limit: 10 requests per minute
Note: Requires Meta OAuth permissions for the customer account

Rate Limits

  • Keywords endpoints: 60 requests per minute
  • Creative endpoints: 30 requests per minute
  • Creative status updates: 10 requests per minute

Data Caching

Data is cached for 120 minutes to ensure optimal performance. Cache expiration times are included in response metadata.

Error Handling

The server handles various error conditions:

  • 401 Unauthorized: Invalid or missing API key
  • 400 Bad Request: Missing platform configuration or invalid parameters
  • 422 Validation Error: Invalid date formats or parameter values
  • 429 Rate Limit: Rate limit exceeded (includes retry suggestions)
  • 500 Server Error: Internal API errors
  • 504 Timeout: Query timeout (for search terms with large datasets)

Development

Setup

git clone <repository-url>
cd mcp-conceptual
pip install -e ".[dev]"

Code Formatting

black src/
isort src/

Type Checking

mypy src/

Testing

pytest

License

MIT License - see LICENSE file for details.

Support

For API support, contact: support@conceptual.com

For issues with this MCP server, please file an issue in the repository.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_conceptual-0.1.3.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_conceptual-0.1.3-py3-none-any.whl (15.8 kB view details)

Uploaded Python 3

File details

Details for the file mcp_conceptual-0.1.3.tar.gz.

File metadata

  • Download URL: mcp_conceptual-0.1.3.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mcp_conceptual-0.1.3.tar.gz
Algorithm Hash digest
SHA256 7bbc489fe92a97d07b0a596eb215483bfb3f3db63bcf5cff2e8b456c2595bea3
MD5 6aa489c201e25d02f18fffcd574185cc
BLAKE2b-256 022064420b39a32b3bcdf9b80d964b3dd65b45f4e6014b7a023d3b090de4656c

See more details on using hashes here.

File details

Details for the file mcp_conceptual-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: mcp_conceptual-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for mcp_conceptual-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b21304fd46b25c740582a7e0a07349d76f68176782f6770a9e2c04b201d1ab26
MD5 127e483559da86cb69e358133499e018
BLAKE2b-256 c750fc71c6147d25b3c177b3ffe564e01f1282f66f9a908498632e7cd9a07710

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page