Uber External Ads API MCP Server

Uber External Ads API MCP Server

Enables users to manage Uber advertising campaigns through natural language by providing access to Uber's External Ads API. Supports campaign creation, retrieval, updating, and deletion with comprehensive filtering and configuration options.

Category
Visit Server

README

Uber External Ads API MCP Server

An MCP (Model Context Protocol) server that provides access to Uber's External Ads API for campaign management.

Features

  • Get Campaigns: Retrieve campaigns for an ad account with optional filtering
  • Get Campaign: Get details for a specific campaign
  • Create Campaign: Create new advertising campaigns
  • Update Campaign: Modify existing campaigns
  • Delete Campaign: Remove campaigns

Installation

npm install
npm run build

Usage

Development

npm run dev

Production

npm start

Available Tools

get_campaigns

Retrieve campaigns for an ad account.

Parameters:

  • auth_token (required): Bearer token for authentication
  • ad_account_id (required): The ad account UUID
  • filters (optional): Object with filtering options
    • status: Filter by campaign status (ACTIVE, PAUSED, DELETED)
    • limit: Number of campaigns to return (1-100, default: 20)
    • offset: Number of campaigns to skip (default: 0)

get_campaign

Get details for a specific campaign.

Parameters:

  • auth_token (required): Bearer token for authentication
  • ad_account_id (required): The ad account UUID
  • campaign_id (required): The campaign UUID

create_campaign

Create a new campaign.

Parameters:

  • auth_token (required): Bearer token for authentication
  • ad_account_id (required): The ad account UUID
  • campaign_data (required): Campaign configuration object
    • name (required): Campaign name
    • budget_amount (required): Budget amount in USD
    • status: Campaign status (ACTIVE, PAUSED) - default: ACTIVE
    • budget_type: Budget type (DAILY, LIFETIME) - default: DAILY
    • start_time: Campaign start time (ISO 8601)
    • end_time: Campaign end time (ISO 8601)
    • objective: Campaign objective (AWARENESS, CONSIDERATION, CONVERSION) - default: CONVERSION

update_campaign

Update an existing campaign.

Parameters:

  • auth_token (required): Bearer token for authentication
  • ad_account_id (required): The ad account UUID
  • campaign_id (required): The campaign UUID
  • campaign_data (required): Updates to apply
    • name: Campaign name
    • status: Campaign status (ACTIVE, PAUSED)
    • budget_amount: Budget amount in USD
    • end_time: Campaign end time (ISO 8601)

delete_campaign

Delete a campaign.

Parameters:

  • auth_token (required): Bearer token for authentication
  • ad_account_id (required): The ad account UUID
  • campaign_id (required): The campaign UUID

Example Usage

Using the provided curl request as an example:

// Get campaigns
await callTool('get_campaigns', {
  auth_token: 'IA.AQAAAATlHYAkrhJsBvg2h_K7dmXYDF_9LQAe8gEiCkd7Wyd79AB36AmskjmnMMPtDOwrWBgnGuHNb0Esrh2dScncw8weNgx5kjMNtxP88XJSdDzjfdOmcWe3Zvc0rHx-p5ldHqmXvDvUnjndiPqXigz_yg332ek6b_dmR-1KRus',
  ad_account_id: 'd924b89c-09f9-477b-a3ae-5526aa533835',
  filters: {
    status: 'ACTIVE',
    limit: 10
  }
});

Configuration

The server uses the Uber External Ads API base URL: https://api.uber.com/v1/ads

All requests require a valid Bearer token for authentication.

Error Handling

The server provides detailed error messages for:

  • Authentication failures
  • Invalid parameters
  • API errors
  • Network issues

Errors are returned with isError: true and descriptive messages.

Security

  • All authentication tokens are validated
  • Input parameters are validated using Zod schemas
  • API responses are properly formatted and sanitized

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured