feedmob-mcp-server
v1.0.0
Published
MCP server for FeedMob Assistant Internal API
Maintainers
Readme
FeedMob MCP Server
MCP (Model Context Protocol) server for the FeedMob Assistant Internal API. Enables AI assistants like Claude to access FeedMob data.
Installation
npm install
npm run buildUsage
Environment Variables
export FEEDMOB_API_TOKEN="your-api-token-here"
export FEEDMOB_API_BASE_URL="https://app.feedmob.com" # Optional, defaults to thisRunning with npx
npx feedmob-mcp-serverClaude for Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"feedmob": {
"command": "node",
"args": ["/path/to/femini_tokyo_mcp/dist/index.js"],
"env": {
"FEEDMOB_API_TOKEN": "your-token"
}
}
}
}Available Tools
| 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 |
Publishing to npm
npm publish