geotab-mcp
Click on "Deploy 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., "@geotab-mcpWhat are the current fault codes for all vehicles?"
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.
geotab-mcp
MCP server that exposes the MyGeotab API as AI-callable tools. Lets Claude query fleet data, device status, trips, tachograph files, fuel, diagnostics, faults, and driver information across multiple customer databases through natural language.
Prerequisites
Node.js 20+
Geotab API credentials (username + password with access to customer databases)
Related MCP server: Geotab ACE MCP Server
Setup
git clone <repo-url>
cd geotab-mcp
npm installConfigure credentials
Copy the example env file and fill in your credentials:
cp .env.example .envGEOTAB_USERNAME=api.user@yourcompany.com
GEOTAB_PASSWORD=your-password
GEOTAB_SERVER=my.geotab.com
GEOTAB_TEST_DATABASE=your_test_databaseMulti-customer setup
Create a geotab.config.json in the project root to map friendly customer names to Geotab databases:
{
"customers": [
{ "name": "Example Customer", "database": "example_db" },
{ "name": "Another Customer", "database": "another_db", "server": "my3.geotab.com" }
]
}One shared username/password (from .env) accesses all databases. The server field is optional — mg-api-js resolves the correct federated server automatically.
When geotab.config.json is absent, the server falls back to single-customer mode using GEOTAB_DATABASE from .env.
Build
npm run buildUsing with Claude
Claude Desktop
Add the server to your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"geotab": {
"command": "node",
"args": ["C:/absolute/path/to/geotab-mcp/dist/index.js"],
"env": {
"GEOTAB_USERNAME": "api.user@yourcompany.com",
"GEOTAB_PASSWORD": "your-password",
"GEOTAB_SERVER": "my.geotab.com"
}
}
}
}You can omit the env block if you have a .env file in the project directory.
Claude Code (CLI)
Add the server to your Claude Code project settings (.claude/settings.json in the project root, or ~/.claude/settings.json for global):
{
"mcpServers": {
"geotab": {
"command": "node",
"args": ["C:/absolute/path/to/geotab-mcp/dist/index.js"],
"env": {
"GEOTAB_USERNAME": "api.user@yourcompany.com",
"GEOTAB_PASSWORD": "your-password",
"GEOTAB_SERVER": "my.geotab.com"
}
}
}
}Or add it interactively from Claude Code with /mcp.
Restart Claude Desktop or Claude Code after adding the config. The server should appear in the available tools list.
Available tools
Every data tool takes a required customer parameter. Call list_orgs first to see available customers.
Config
Tool | Description |
| List configured customers, databases, and auth server |
Devices
Tool | Description |
| Search devices by name, VIN, serial, group |
| Full device detail by ID |
| Live location, speed, driving state, current driver |
| Whether a GO device is in CAN/OBD listen-only mode (passively reads the bus) vs active, or unknown — with the supporting evidence. Select by deviceId, name, or serialNumber |
Trips
Tool | Description |
| Trip summaries with distance, speed, driver |
Tachograph
Tool | Description |
| List tacho files by upload date range |
| Most recent tacho upload per device |
| Download binary data for a tacho file |
Fuel
Tool | Description |
| Fuel level (%) and fuel used (L) over time |
Diagnostics
Tool | Description |
| IOX, NFC, CAN C/D, voltage, comms health |
| Raw StatusData for any diagnostic |
| Discover diagnostic IDs in a database |
Faults
Tool | Description |
| Fault codes / DTCs with severity |
Drivers
Tool | Description |
| Current driver per device |
| Driver login/logout history |
| Driver roster lookup |
Audit
Tool | Description |
| Fleet-wide audit of IOX accessory fitment (e.g. IOX-GOTALK). Classifies each device as fitted, missing, or indeterminate |
Development
npm run typecheck # type-check without emitting
npm run build # compile to dist/
npm test # unit tests (mg-api-js mocked)
npm run test:integration # live tests (requires credentials)
npm run test:all # both
npm start # run the serverThis server cannot be deployed
Maintenance
Related MCP Connectors
Connect Claude to Fathom meeting recordings, transcripts, and summaries
- mcpOAuthcom.crisphive
Field operations on a deterministic solver — run jobs, crews & fleet from Claude or ChatGPT.
GA4, Google Ads and Search Console in Claude. Read-only OAuth, multi-account for agencies.
- platform7nOAuthtech.p7n
Connect Claude to your Platform7n workspaces — chat, links, and tasks. One-click OAuth.
Related MCP Servers
- AlicenseBqualityAmaintenanceEnables Claude Desktop to access Tesla vehicle data through the Tessie API. Users can query their car's location, battery level, mileage, driving history, and charging status using natural language.58MIT
- AlicenseNot gradedqualityCmaintenanceEnables Claude to ask questions about your fleet data via the Geotab ACE AI service, with support for multi-account authentication, async queries, and DuckDB caching for large datasets.10Apache 2.0
- FlicenseCqualityCmaintenanceEnables Claude to interact with GoHighLevel CRM for contact management, messaging, calendar, and sales opportunities via 14 tools.20-
- FlicenseNot gradedqualityBmaintenanceEnables Claude to look up customers, check routes, view appointments, pull service history, and access FieldRoutes data directly in conversation.-