MCP server for FeedMob Assistant API - enables AI assistants to interact with clients, partners, campaigns, and more
npm install @mandy-feedmob/mcp-serverMCP (Model Context Protocol) server for the FeedMob Assistant API. Enables AI assistants like Claude to interact with clients, partners, campaigns, and other FeedMob resources.
``bash`
FEEDMOB_API_TOKEN=your_token npx feedmob-mcp-server
`bash`
npm install -g feedmob-mcp-server
FEEDMOB_API_TOKEN=your_token feedmob-mcp-server
| Variable | Required | Description |
|----------|----------|-------------|
| FEEDMOB_API_TOKEN | Yes | Your FeedMob Assistant API bearer token |
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json %APPDATA%\Claude\claude_desktop_config.json
Windows:
`json`
{
"mcpServers": {
"feedmob": {
"command": "npx",
"args": ["-y", "feedmob-mcp-server"],
"env": {
"FEEDMOB_API_TOKEN": "your_token_here"
}
}
}
}
- List/search clients with filters
- get_client - Get client details by ID$3
- list_partners - List/search partners with filters
- get_partner - Get partner details by ID
- list_partner_categories - List all partner categories$3
- list_campaigns - List/search campaigns with filters
- get_campaign - Get campaign details by ID$3
- list_mobile_apps - List/search mobile apps
- get_mobile_app - Get mobile app details$3
- list_click_urls - List all click URLs
- get_click_url - Get click URL details by legacy ID$3
- get_daily_metrics - Get time-series metrics data$3
- list_pods - List all pods$3
- list_playbooks - List accessible playbooks
- get_playbook - Get playbook with items
- get_playbook_item - Get playbook item content$3
- list_client_documents - List client documents
- list_partner_documents - List partner documents$3
- get_client_billings - Get client billing data
- get_vendor_billings - Get vendor billing data
- get_vendor_payout_analysis - Get vendor payout analysis
- get_click_url_email_logs - Get email logs for click URLsDevelopment
`bash
Install dependencies
npm installBuild
npm run buildRun with token
FEEDMOB_API_TOKEN=your_token node build/index.js
``MIT