ZEVO Host MCP Server
OfficialClick 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., "@ZEVO Host MCP Serverlist my active bookings"
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.
ZEVO Host MCP Server
Give your AI agent direct, read-only access to your ZEVO financial data.
This is a small Model Context Protocol (MCP) server. An MCP server advertises a set of tools to an AI agent; the agent reads their descriptions, decides which to call, and this server executes the matching request against the ZEVO Client API using your API key. Drop in your key, register it with your agent, and ask questions like "which of my vehicles are out on a trip right now?" or "show my wallet transactions for this month."
It runs locally over stdio and is read-only — no payouts, no writes.
Tools
Tool | What it returns |
| The authenticated account and its wallet |
| Vehicles on your account (VIN, listing details, charge %, ...) |
| Bookings (trip records): status, VIN, pricing, timing |
| Only bookings where a renter currently has the vehicle |
| Pre/post-trip inspection records with photos and damage tags |
| Itemized charges billed to renters (amounts in cents) |
| Receipts for one vehicle ( |
| Receipts for one booking ( |
| Wallet ledger — best for statements & payout reconciliation |
| Wallet transactions for one Tesla by VIN |
List tools return up to 10 records at a time; the agent pages with skip.
Related MCP server: VAST DB MCP Server
Getting an API key
You need a ZEVO Client API key. It is sent as the x-api-key header and is scoped to your account,
so tools only ever return your own data. Contact ZEVO (or use the host dashboard, if available) to
issue a key for your account.
Quickstart
Requires Node.js 18+.
npm install
npm run buildVerify it locally with the MCP Inspector:
ZEVO_API_KEY=your_key npm run inspectConfigure your agent
Claude Desktop / Claude Code
Add to your claude_desktop_config.json (Claude Desktop) or MCP config:
{
"mcpServers": {
"zevo-host": {
"command": "npx",
"args": ["-y", "zevo-host-mcp"],
"env": { "ZEVO_API_KEY": "YOUR_KEY" }
}
}
}Or, if running from a local checkout:
{
"mcpServers": {
"zevo-host": {
"command": "node",
"args": ["/absolute/path/to/zevo-host-mcp/dist/index.js"],
"env": { "ZEVO_API_KEY": "YOUR_KEY" }
}
}
}Cursor
Add the same block to ~/.cursor/mcp.json (or the project's .cursor/mcp.json).
Configuration
Env var | Required | Default | Description |
| yes | — | Your Client API key (sent as |
| no |
| Override for staging/local |
Adding an endpoint
Append one entry to the TOOLS array in src/tools.ts — name, description, path,
and a small zod schema for its params. Nothing else needs to change.
License
MIT
This server cannot be installed
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/zevocorp/zevo-host-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server