@mandy-feedmob/mcp-server
v1.0.0
Published
MCP server for FeedMob Assistant API - enables AI assistants to interact with clients, partners, campaigns, and more
Maintainers
Readme
feedmob-mcp-server
MCP (Model Context Protocol) server for the FeedMob Assistant API. Enables AI assistants like Claude to interact with clients, partners, campaigns, and other FeedMob resources.
Installation
Using npx (Recommended)
FEEDMOB_API_TOKEN=your_token npx feedmob-mcp-serverGlobal Installation
npm install -g feedmob-mcp-server
FEEDMOB_API_TOKEN=your_token feedmob-mcp-serverConfiguration
Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| FEEDMOB_API_TOKEN | Yes | Your FeedMob Assistant API bearer token |
Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"feedmob": {
"command": "npx",
"args": ["-y", "feedmob-mcp-server"],
"env": {
"FEEDMOB_API_TOKEN": "your_token_here"
}
}
}
}Available Tools
Client Management
list_clients- List/search clients with filtersget_client- Get client details by ID
Partner Management
list_partners- List/search partners with filtersget_partner- Get partner details by IDlist_partner_categories- List all partner categories
Campaign Management
list_campaigns- List/search campaigns with filtersget_campaign- Get campaign details by ID
Mobile Apps
list_mobile_apps- List/search mobile appsget_mobile_app- Get mobile app details
Click URLs
list_click_urls- List all click URLsget_click_url- Get click URL details by legacy ID
Metrics
get_daily_metrics- Get time-series metrics data
Organization
list_pods- List all pods
Playbooks
list_playbooks- List accessible playbooksget_playbook- Get playbook with itemsget_playbook_item- Get playbook item content
Documents
list_client_documents- List client documentslist_partner_documents- List partner documents
Billing (Unstable API)
get_client_billings- Get client billing dataget_vendor_billings- Get vendor billing dataget_vendor_payout_analysis- Get vendor payout analysisget_click_url_email_logs- Get email logs for click URLs
Development
# Install dependencies
npm install
# Build
npm run build
# Run with token
FEEDMOB_API_TOKEN=your_token node build/index.jsLicense
MIT
