Keitaro API MCP Server
What is GodzillaDancer keitaro mcp
Keitaro TDS API MCP Plugin
Description
MCP server for integration with Keitaro TDS API, providing tools to work with campaigns, streams, offers, and other Keitaro entities.
Installation
Installing the plugin in Cursor
- Clone the repository
git clone <repository-url>
cd mcp-keitaro-tds
- Install dependencies
npm install
- Install the package globally
npm install -g .
- Install the plugin in Cursor
node install-cursor-plugin.js
- Restart Cursor
Alternative: Manual configuration in Cursor
You can also manually add the Keitaro MCP server to your Cursor configuration:
- Open the Cursor MCP configuration file:
# On macOS
open ~/.cursor/mcp.json
# On Windows
notepad %USERPROFILE%\.cursor\mcp.json
# On Linux
nano ~/.cursor/mcp.json
- Add the following entry to the "mcpServers" object:
"Keitaro": {
"command": "mcp-keitaro-tds",
"args": []
}
- Save the file and restart Cursor
API Key Configuration
Create an .env
file in the project root with the following parameters:
KEITARO_API_URL=http://your-keitaro-domain.com/admin_api/v1
KEITARO_API_KEY=your-api-key
Usage in Cursor
- Launch Cursor
- Open the command palette (Cmd+P on macOS or Ctrl+P on Windows/Linux)
- Find "Keitaro" and select it
- Now you can use the Keitaro API through Cursor
Available Tools
Campaigns
list_campaigns
- get a list of campaignsget_campaign
- get information about a specific campaigncreate_campaign
- create a new campaignupdate_campaign
- update an existing campaigndelete_campaign
- delete a campaign
Traffic Streams
list_streams
- get a list of traffic streams for a campaignget_stream
- get information about a specific stream
Traffic Sources
list_traffic_sources
- get a list of traffic sourcesget_traffic_source
- get information about a specific traffic source
Offers
list_offers
- get a list of offersget_offer
- get information about a specific offer
Clicks and Conversions
list_clicks
- get a list of clicksget_click
- get information about a specific clicklist_conversions
- get a list of conversionsget_conversion
- get information about a specific conversion
Reports
get_report
- generate a report with specified parameters
Domains
list_domains
- get a list of domainsget_domain
- get information about a specific domain
Usage Examples
Getting a list of campaigns
list_campaigns({
limit: 10,
page: 1,
search: "search query"
})
Creating a new campaign
create_campaign({
name: "New Campaign",
type: "position",
cost_type: "CPC",
cost_value: 1.5,
group_id: 1,
state: "active",
traffic_source_id: 1
})
Getting a report
get_report({
from: "2025-01-01",
to: "2025-01-31",
group: "campaign",
filters: {
campaign_id: 123
}
})
Development
Running in development mode
npm run dev
Testing the MCP server
npm run inspect
Leave a Comment
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
Brave Search MCP
Integrate Brave Search capabilities into Claude through MCP. Enables real-time web searches with privacy-focused results and comprehensive web coverage.
chrisdoc hevy mcp
sylphlab pdf reader mcp
An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.
aashari mcp server atlassian bitbucket
Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.
aashari mcp server atlassian confluence
Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.
prisma prisma
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
Zzzccs123 mcp sentry
mcp sentry for typescript sdk
zhuzhoulin dify mcp server
zhongmingyuan mcp my mac
zhixiaoqiang desktop image manager mcp
MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)
Submit Your MCP Server
Share your MCP server with the community
Submit Now