vexo-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vexo-mcplist the top event names from the last 7 days"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Vexo MCP — Unofficial / Community
A Model Context Protocol server for the Vexo analytics Export API. Ask Claude (or any MCP client) questions about your mobile app's events — event vocabulary, aggregated counts, per-day timelines, sessions, and raw event streams — using your own Vexo login.
Unofficial / community project. Not affiliated with, sponsored by, or endorsed by Vexo. "Vexo" is a trademark of its respective owner and is used here only to describe the service this tool connects to.
What it does (and doesn't)
Vexo's Export API is a single paginated event endpoint — there is no server-side filtering or query language and a hard limit of 5 requests per minute per app. So this connector is deliberately a set of purpose-built aggregation tools, not a general "run any query" interface or a bulk CSV exporter. It downloads events for a date window and aggregates them locally.
Practical consequence: keep date windows tight. A couple of hours or days
returns quickly; a busy week can be dozens of pages and take several minutes
because of the rate limit. The server throttles itself to stay within Vexo's
limit and backs off on 429.
Related MCP server: Mixpanel MCP Server
Tools
Tool | Purpose |
| Top 50 event names in a window — schema discovery. |
| Event counts over a range, optionally grouped by a dimension (any metadata key or top-level field) with cohort + event-name filters. |
| Per-day counts of specified events, optionally grouped — find the day behavior changes. |
| Recent session summaries: duration, screen/event counts, last screen. |
| The most recent raw events for one entity, with full metadata. |
| Totals + top breakdowns (event type, route, OS, device, country, app version). |
A dimension is any top-level event field (deviceId, country,
deviceSystemName, appVersion, route, sessionId, deviceModel, city,
type) or any metadata key (e.g. worker_id, user_id). Set a default
dimension with the group_key config so you don't have to pass it every time.
Installation
Option 1 — Claude Desktop (one-click)
Download
vexo-mcp.mcpbfrom Releases.Open it with Claude Desktop (or Settings → Extensions → Install Extension…).
Fill in your Vexo App ID, email, and password in the extension settings. The password is stored in your OS keychain.
Option 2 — Manual config (npx)
Add to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"vexo": {
"command": "npx",
"args": ["-y", "@kishanssg/vexo-mcp"],
"env": {
"VEXO_APP_ID": "your-app-uuid",
"VEXO_USER": "you@example.com",
"VEXO_PASSWORD": "your-password",
"VEXO_GROUP_KEY": "worker_id",
"VEXO_API_BASE": "https://api.vexo.co",
"VEXO_DEFAULT_LOOKBACK_DAYS": "30"
}
}
}
}VEXO_APP_ID, VEXO_USER, and VEXO_PASSWORD are required; the rest are optional.
Authentication
Vexo's Export API authenticates with email + password only — it exchanges
them for a short-lived token via POST /users/implicit/login. Vexo does not
issue export API keys, so there is no key-auth mode. (The SDK key embedded in an
app for sending events is unrelated and won't work here.) Your credentials are
used solely to obtain that token; they are never logged or bundled.
Example prompts
"Using vexo, list the top event names from 2026-06-01 to 2026-06-07."
"Compare
worker_shift_feed_viewedcounts for workers 54, 111, and 2716 over the last two weeks.""Show a daily timeline of
worker_shift_feed_viewedfor worker 54 from 2026-05-01 to 2026-06-01 — when did it stop?""Give me the 20 most recent sessions for worker 54 and flag the short ones."
"Pull the last 10 raw events for worker 54."
Development
git clone https://github.com/kishanssg/vexo-mcp.git
cd vexo-mcp
npm install
npm run build # compile TypeScript -> build/
npm test # vitest unit tests (no credentials needed)
npm run inspector # exercise tools with the MCP InspectorBuild the installable bundle:
npm run mcpb:build # produces vexo-mcp.mcpbSecurity & privacy
No secrets in the bundle. Credentials come only from your config / environment and (in Claude Desktop) live in your OS keychain.
No data collection. This server talks only to the Vexo API you configure and returns results to your MCP client. See PRIVACY.md.
Read-only. It only reads events via Vexo's Export API; it never writes.
License
MIT — see LICENSE. Unofficial community project; not affiliated with Vexo.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kishanssg/vexo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server