
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.
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 authenticationad_account_id
(required): The ad account UUIDfilters
(optional): Object with filtering optionsstatus
: 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 authenticationad_account_id
(required): The ad account UUIDcampaign_id
(required): The campaign UUID
create_campaign
Create a new campaign.
Parameters:
auth_token
(required): Bearer token for authenticationad_account_id
(required): The ad account UUIDcampaign_data
(required): Campaign configuration objectname
(required): Campaign namebudget_amount
(required): Budget amount in USDstatus
: Campaign status (ACTIVE, PAUSED) - default: ACTIVEbudget_type
: Budget type (DAILY, LIFETIME) - default: DAILYstart_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 authenticationad_account_id
(required): The ad account UUIDcampaign_id
(required): The campaign UUIDcampaign_data
(required): Updates to applyname
: Campaign namestatus
: Campaign status (ACTIVE, PAUSED)budget_amount
: Budget amount in USDend_time
: Campaign end time (ISO 8601)
delete_campaign
Delete a campaign.
Parameters:
auth_token
(required): Bearer token for authenticationad_account_id
(required): The ad account UUIDcampaign_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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.