MCP server for FeedMob Assistant Internal API
npm install feedmob-mcp-serverMCP (Model Context Protocol) server for the FeedMob Assistant Internal API. Enables AI assistants like Claude to access FeedMob data.
``bash`
npm install
npm run build
`bash`
export FEEDMOB_API_TOKEN="your-api-token-here"
export FEEDMOB_API_BASE_URL="https://app.feedmob.com" # Optional, defaults to this
`bash`
npx feedmob-mcp-server
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
`json`
{
"mcpServers": {
"feedmob": {
"command": "node",
"args": ["/path/to/femini_tokyo_mcp/dist/index.js"],
"env": {
"FEEDMOB_API_TOKEN": "your-token"
}
}
}
}
| Tool | Description |
|------|-------------|
| list_clients | List clients with filters |get_client
| | Get client details by ID |list_client_documents
| | List client documents |list_partners
| | List partners with filters |get_partner
| | Get partner details by ID |list_partner_categories
| | List partner categories |list_partner_documents
| | List partner documents |list_campaigns
| | List campaigns with filters |get_campaign
| | Get campaign details by ID |list_playbooks
| | List playbooks |get_playbook
| | Get playbook with items |get_playbook_item
| | Get playbook item content |list_mobile_apps
| | List mobile apps |get_mobile_app
| | Get mobile app details |list_click_urls
| | List click URLs |get_click_url
| | Get click URL by legacy ID |get_daily_metrics
| | Get daily metrics time-series |list_pods
| | List organizational pods |
`bash``
npm publish