MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
© 2025 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Taboola MCP Connector MCP
Taboola MCP Connector MCP Logo

Taboola MCP Connector MCP

Model Context Protocol Integration

Overview

Read information from your Taboola Account"

# Taboola_MCP

Read information from your Taboola Account

Installation Instructions


README: https://github.com/matlafu/taboola_mcp

Taboola MCP Connector

An MCP (Model Context Protocol) tool that connects Taboola Advertising API with AI assistants like Claude (in Cursor, Claude Desktop, etc.), allowing you to analyze your campaign data through natural language conversations.

Taboola Logo

Features

  • Natural Language Querying: Ask questions about your Taboola campaigns in plain English
  • Campaign Performance Analysis: Get summaries, trends, and insights about your advertising performance
  • Account Management: View all your accounts and campaigns in one place
  • Data Visualization: See performance trends with simple ASCII charts right in your chat interface
  • Comprehensive Insights: Get actionable recommendations based on your campaign data

Setup

Prerequisites

  • Python 3.8+ installed
  • A Taboola account with API access
  • Valid Taboola API credentials (client ID and client secret)

Installation

  1. Clone or download this repository and install dependencies

  2. Install dependencies

    pip install -r requirements.txt
    
  3. Set up your environment variables

    Create a .env file in the root directory with your Taboola API credentials:

    TABOOLA_CLIENT_ID=your_client_id
    TABOOLA_CLIENT_SECRET=your_client_secret
    
  4. Test the connector

    Run the script to verify it connects to Taboola correctly:

    python taboola_connector.py
    

    You should see logs indicating successful authentication and account loading.

Using with Cursor

  1. Add the connector to Cursor's MCP configuration

    Open or create .cursor/mcp.json in your user directory and add the following entry:

    {
      "mcpServers": {
        "Taboola_Connector": {
          "command": "FULL/PATH/TO/YOUR/DIRECTORY/taboola_mcp/.venv/Scripts/python",
          "args": [
            "FULL/PATH/TO/YOUR/DIRECTORY/taboola_mcp/taboola_connector.py"
          ]
        }
      }
    }
    
  2. Restart Cursor

    Close and reopen Cursor to load the updated MCP configuration.

  3. Verify the connection

    In Cursor's chat, ask a simple question like "List my Taboola accounts" to verify the connection works.

Available Tools

The connector provides the following tools for interacting with Taboola:

Tool NameDescriptionExample Query
list_taboola_accountsLists all accessible Taboola accounts"Show me all my Taboola accounts"
taboola_account_overviewProvides a comprehensive account overview"Give me an overview of account wattfoxgmbh-network"
get_taboola_account_currencyRetrieves the account's currency code"What currency is my Taboola account using?"
list_taboola_campaignsLists all campaigns in an account"List all campaigns in my wattfoxgmbh-network account"
get_taboola_campaign_summaryGets performance summary for campaigns"Summarize campaign performance for April"
get_taboola_campaign_detailsGets detailed info about a specific campaign"Show me details for campaign 44471496"
analyze_taboola_performanceAnalyzes campaign performance with detailed metrics"Analyze my campaign performance from April 1 to April 23"
get_taboola_creativesLists all creative assets in an account"Show me all creatives in my Taboola account"
get_taboola_creative_detailsGets detailed info about a specific creative"Show details for creative asset 123456"
analyze_taboola_creative_performanceAnalyzes creative performance with metrics"Which creatives performed best last month?"
get_taboola_adsLists all ads or ads for a specific campaign"Show me all ads in campaign 44471496"
download_taboola_creativeDownloads a creative asset from its URL"Download the creative at https://example.com/image.jpg"

Example Queries

You can ask questions in natural language like:

  • "Show me my Taboola campaign performance for the last 30 days."
  • "What were my top performing campaigns last month?"
  • "List all my active Taboola campaigns."
  • "Give me a summary of my account performance with charts."
  • "Analyze my campaign data from June 1 to June 30."
  • "Which campaigns had the highest CTR last week?"

Troubleshooting

Connection Issues

  • "TaboolaConnector is not available": Check that your .env file exists with correct credentials.
  • Python Command Not Found: Make sure the Python path in .cursor/mcp.json is correctly specified.
  • No tools available: Ensure the MCP server is running correctly by checking logs in taboola_mcp.log.

Authentication Errors

  • Bad client credentials: Verify your TABOOLA_CLIENT_ID and TABOOLA_CLIENT_SECRET are correct.
  • No accounts found: Check that your API credentials have access to the accounts you're trying to query.

Path Issues

  • If you see errors about files not found, make sure all paths in your configuration are absolute paths (not relative).

Technical Details

The connector communicates with the Taboola API to retrieve campaign data, and exposes this data through MCP tools. This allows AI assistants to query and analyze your advertising data.

The connector follows these steps:

  1. Authenticate with Taboola API
  2. Fetch available accounts
  3. Provide tools to query campaign data
  4. Process and format the data for easy consumption by AI assistants

Contributing

If you'd like to contribute to this project, found a bug or an issue, please open an issue or submit a pull request :)

License

MIT License

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.