admitad-mcp
Enables AI assistants to browse Admitad affiliate programs, discover product feeds, and search products directly from chat.
README
admitad-mcp
MCP server for the Admitad affiliate network. Lets Claude and other MCP-compatible AI assistants browse partner programs, discover product feeds, and search products — without leaving the chat.
Tools
| Tool | Description |
|---|---|
authenticate |
Get an OAuth2 token using your client credentials |
get_me |
Return current account info (name, ID, balance) |
list_campaigns |
List available affiliate programs (filter by status) |
get_campaign_feeds |
Get product feed URLs for a specific campaign |
download_feed |
Download and parse a YML/CSV product feed |
search_products |
Search products in a feed by name, vendor, or any field |
list_categories |
List product categories in a campaign |
get_coupons |
Get available promo codes (all campaigns or filtered) |
Requirements
- Python 3.10+
- Admitad publisher account with API access
client_idandclient_secretfrom Admitad Developers
Setup
- Clone the repo and install dependencies:
cd admitad-mcp
python -m venv .venv
source .venv/bin/activate
pip install -e .
- Copy
.env.exampleto.envand fill in your credentials:
cp .env.example .env
ADMITAD_CLIENT_ID=your_client_id_here
ADMITAD_CLIENT_SECRET=your_client_secret_here
- Register the server in your Claude Code config (
~/.claude.json):
"admitad": {
"type": "stdio",
"command": "/path/to/admitad-mcp/.venv/bin/python",
"args": ["/path/to/admitad-mcp/server.py"],
"env": {
"ADMITAD_CLIENT_ID": "your_client_id_here",
"ADMITAD_CLIENT_SECRET": "your_client_secret_here"
}
}
Usage examples
authenticate → then ask Claude:
"Show me all active campaigns in the fashion category"
"Find Nike sneakers across all feeds"
"Get promo codes for campaign 12345"
Required OAuth scopes
The server requests the following scopes automatically:
advcampaigns advcampaigns_for_website websites public_data private_data
Make sure all five are enabled for your application in the Admitad developer portal.
License
MIT
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.