Shopmonkey MCP Server
Shopmonkey MCP Server
A Model Context Protocol (MCP) server that wraps the Shopmonkey REST API (v3), enabling AI agents and LLMs to interact with shop management data — work orders, customers, vehicles, inventory, appointments, payments, labor, canned services, webhooks, and more.
Features
64 tools across 11 resource groups covering the Shopmonkey API
Dual transport — stdio for local/desktop use, Streamable HTTP for cloud deployment
Shopmonkey API key authentication (Bearer token to Shopmonkey REST API)
Automatic retry with exponential backoff on rate limits (429) and server errors (5xx)
Request concurrency control (max 5 simultaneous API calls)
30-second request timeout per call
Multi-location support via
SHOPMONKEY_LOCATION_IDor per-requestlocationIdDescriptive error messages surfacing Shopmonkey error codes and messages
HTTP transport includes bearer auth, health check endpoint, and graceful shutdown
Works with Claude Desktop, Cursor, Claude Code, Claude.ai, and any MCP-compatible client
Quick Start
git clone https://github.com/AbbottDevelopments/shopmonkey-mcp-server.git
cd shopmonkey-mcp-server
npm install
npm run buildCopy .env.example to .env and add your Shopmonkey API key:
cp .env.example .env
# Edit .env — set SHOPMONKEY_API_KEY to your keyStart the server:
# stdio (local use with Claude Desktop, Cursor, Claude Code)
npm start
# HTTP (cloud deployment, Claude.ai)
npm run start:httpTransports
The server ships two entry points sharing a single tool registry — use whichever matches your deployment target.
stdio (local use)
node dist/index.js
# or: npm startYour MCP client spawns this process directly. Used by Claude Desktop, Cursor, and Claude Code. See MCP Client Configuration below.
Streamable HTTP (cloud deployment)
PORT=3000 node dist/http.js
# or: npm run start:httpThe HTTP server listens on PORT (default 3000) and handles MCP requests at /. Required for cloud deployment (Railway, Render) and for connecting to Claude.ai.
HTTP features:
Authentication — Set
MCP_AUTH_TOKENto requireAuthorization: Bearer <token>on all MCP requests. Open access when unset (local development).Health check —
GET /healthandGET /return{"status":"ok"}for load balancer probes.Graceful shutdown — Clean exit on SIGTERM/SIGINT with a 5-second timeout.
For cloud deployment instructions, see docs/DEPLOYMENT.md.
Tool Reference
Work Orders (4 tools)
Tool | Description |
| List work orders with filters (status, customer, location). Valid statuses: |
| Get full work order details |
| Create a new work order |
| Update work order fields |
Order deletion is not supported by the Shopmonkey API. See docs/LIMITATIONS.md for details.
Customers (6 tools)
Tool | Description |
| Search customers by full-body query |
| Search for a customer by email address |
| Search for a customer by phone number |
| Get full customer profile |
| Create a new customer (name and address fields) |
| Update customer information |
Email and phone are sub-resources in Shopmonkey. After creating a customer, use
POST /v3/customer/:id/emailand/phone_numberto attach contact info. See docs/LIMITATIONS.md.
Vehicles (7 tools)
Tool | Description |
| List all vehicles for a specific customer |
| Look up a vehicle by VIN number |
| Look up a vehicle by license plate and region |
| List owners associated with a vehicle |
| Get full vehicle details |
| Add a vehicle (optionally linked to a customer) |
| Update vehicle data |
Inventory & Parts (4 tools)
Tool | Description |
| List parts inventory |
| Get single part details |
| List tire inventory |
| Search parts catalog by query |
Appointments (4 tools)
Tool | Description |
| List appointments with date and status filters |
| Get full appointment details |
| Book a new appointment |
| Reschedule or update an appointment |
Payments (3 tools)
Tool | Description |
| List payments for an order |
| Get payment details |
| Record a payment ( |
All money values use integer cents with
*Centsnaming. Never send decimal dollar amounts.
Technicians & Labor (4 tools)
Tool | Description |
| List labor line items |
| Technician clock-in/clock-out events |
| List shop users and technicians |
| Get user/technician profile |
Services & Canned Services (22 tools)
Tool | Description |
| List services on work orders |
| List pre-built service templates |
| Get canned service details with line items |
| Create a new canned service template |
| Update a canned service |
| Delete a canned service template |
| List deferred (recommended but not yet performed) services |
Canned service line items — 5 types (fee, labor, part, subcontract, tire) with add/update/remove operations:
Fee | Labor | Part | Subcontract | Tire |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Webhooks (5 tools)
Tool | Description |
| List all registered webhooks |
| Get webhook details |
| Register a new webhook endpoint with trigger types |
| Update a webhook |
| Delete a webhook |
Supported triggers: Appointment, Customer, Inspection, Inventory, Message, Order, Payment, PurchaseOrder, User, Vehicle, Vendor
Reports — Composite (3 tools)
Tool | Description |
| Revenue totals by status and paid/unpaid split for a date range |
| Appointment counts by confirmation status for a date range |
| Open unauthorized estimates with age-in-days calculation |
Reports are composited from list endpoints (max 100 records per report). Use tighter date ranges for larger shops.
Workflow & Locations (2 tools)
Tool | Description |
| Get pipeline/workflow stages |
| List shop locations |
MCP Client Configuration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"shopmonkey": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "/path/to/shopmonkey-mcp-server",
"env": {
"SHOPMONKEY_API_KEY": "your_api_key_here"
}
}
}
}Cursor
Add to your Cursor MCP settings:
{
"mcpServers": {
"shopmonkey": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "/path/to/shopmonkey-mcp-server",
"env": {
"SHOPMONKEY_API_KEY": "your_api_key_here"
}
}
}
}Claude Code
claude mcp add shopmonkey -e SHOPMONKEY_API_KEY=your_api_key_here -- node /path/to/shopmonkey-mcp-server/dist/index.jsClaude.ai (HTTP transport)
Deploy dist/http.js to Railway or Render with SHOPMONKEY_API_KEY and MCP_AUTH_TOKEN set as environment variables. See docs/DEPLOYMENT.md for the full guide.
Documentation
Document | Description |
System design, dual transport, tool module pattern, client resilience | |
All 64 tools with use-case descriptions | |
Unsupported operations with rationale and workarounds | |
Railway + Doppler single-tenant deployment guide | |
Future-work exploration for multi-shop deployment |
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Shopmonkey API key (Settings > Integration > API Keys) |
| No |
| API base URL |
| No | — | Scope all queries to one location (multi-location shops) |
| Cloud: Yes | — | Bearer token for HTTP transport authentication. Required for cloud deployment — omitting it makes the endpoint public. |
| No |
| HTTP transport listening port |
The server automatically loads .env via dotenv if present. You can also pass variables through your shell or MCP client config.
Development
npm run build # Compile TypeScript
npm run dev # Watch mode (tsc --watch)
npm start # Start stdio server
npm run start:http # Start HTTP server
npm test # Run test suite (requires build first)The test suite includes 186 tests across 9 test files covering mock API behavior, MCP protocol compliance, error paths, and transport validation.
Error Handling
The server handles common API scenarios:
Missing API key — Descriptive error with setup instructions
Rate limiting (429) — Automatic retry with exponential backoff (up to 3 attempts), respects
Retry-AfterheaderServer errors (500, 502, 503, 504) — Automatic retry with backoff
Request timeout — 30-second abort with clear error message
Network failures — Retry with backoff, readable error messages
API errors — Surfaces Shopmonkey error codes (
API-xxxxx,ORM-xxxxx) and human-readablemessagefield
API Reference
License
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/AbbottDevelopments/shopmonkey-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server