home / mcp / feedmob mcp server
Provides authenticated access to FeedMob data via MCP, enabling queries for clients, partners, campaigns, playbooks, and more.
Configuration
View docs{
"mcpServers": {
"hlee-femini-tokyo-mcp": {
"command": "npx",
"args": [
"feedmob-mcp-server"
],
"env": {
"FEEDMOB_API_TOKEN": "your-token",
"FEEDMOB_API_BASE_URL": "https://assistant.feedmob.ai"
}
}
}
}FeedMob MCP Server enables AI assistants to securely access FeedMob data through the Model Context Protocol. It provides a lightweight runtime that exposes FeedMob APIs to clients like Claude, enabling powerful data-driven interactions while keeping authentication and data access centralized and manageable.
You consume this MCP server by running it as a local process or via an MCP client that communicates through the MCP protocol. Before you start, set your API token so the server can authenticate to FeedMob. You can run the server directly with npx, install it globally, or run it from a local development setup. Use the standard environment variable FEEDMOB_API_TOKEN to supply your token.
Prerequisites: you need Node.js and npm installed on your workstation.
# Set your API token
export FEEDMOB_API_TOKEN="your-api-token-here"
# Run directly with npx
npx feedmob-mcp-serverYou can also install the MCP server globally and run it from anywhere, or set up a local development environment to contribute or test changes.
# Global installation
npm install -g feedmob-mcp-server
# Then run
feedmob-mcp-serverFor development you can clone the project, install dependencies, build, and run the compiled output.
git clone https://github.com/hlee/femini-tokyo-mcp.git
cd femini-tokyo-mcp
npm install
npm run build
node dist/index.jsConfigure the API access and default base URL for the FeedMob internal API.
export FEEDMOB_API_TOKEN="your-api-token-here"
export FEEDMOB_API_BASE_URL="https://assistant.feedmob.ai" # Optional, this is the defaultIf you use Claude on desktop, add the MCP server configuration to Claude's config so it can route queries through the FeedMob MCP server.
{
"mcpServers": {
"feedmob": {
"command": "npx",
"args": ["feedmob-mcp-server"],
"env": {
"FEEDMOB_API_TOKEN": "your-token"
}
}
}
}List clients with optional filters to refine the results.
Retrieve detailed information for a single client by its ID.
List documents associated with a client.
List partners with optional filters to refine the results.
Retrieve detailed information for a single partner by its ID.
List categories for partners.
List documents associated with a partner.
List campaigns with optional filters.
Retrieve details for a specific campaign by ID.
List available playbooks.
Get a playbook with its items.
Get the content of a specific playbook item.
List mobile applications linked to FeedMob.
Retrieve details for a specific mobile app by ID.
List click URLs used for tracking.
Get a click URL by legacy ID.
Fetch daily metrics time-series data.
List organizational pods.