loading…
Search for a command to run...
loading…
Enables AI agents to interact with the Shopmonkey REST API to manage shop management data including work orders, customers, vehicles, and inventory. It provides
Enables AI agents to interact with the Shopmonkey REST API to manage shop management data including work orders, customers, vehicles, and inventory. It provides 33 tools across 9 resource groups with built-in support for rate limiting, concurrency control, and multi-location management.
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.
SHOPMONKEY_LOCATION_ID or per-request locationIdgit clone https://github.com/AbbottDevelopments/shopmonkey-mcp-server.git
cd shopmonkey-mcp-server
npm install
npm run build
Copy .env.example to .env and add your Shopmonkey API key:
cp .env.example .env
# Edit .env — set SHOPMONKEY_API_KEY to your key
Start the server:
# stdio (local use with Claude Desktop, Cursor, Claude Code)
npm start
# HTTP (cloud deployment, Claude.ai)
npm run start:http
The server ships two entry points sharing a single tool registry — use whichever matches your deployment target.
node dist/index.js
# or: npm start
Your MCP client spawns this process directly. Used by Claude Desktop, Cursor, and Claude Code. See MCP Client Configuration below.
PORT=3000 node dist/http.js
# or: npm run start:http
The 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:
MCP_AUTH_TOKEN to require Authorization: Bearer <token> on all MCP requests. Open access when unset (local development).GET /health and GET / return {"status":"ok"} for load balancer probes.For cloud deployment instructions, see docs/DEPLOYMENT.md.
| Tool | Description |
|---|---|
list_orders |
List work orders with filters (status, customer, location). Valid statuses: Estimate, RepairOrder, Invoice |
get_order |
Get full work order details |
create_order |
Create a new work order |
update_order |
Update work order fields |
Order deletion is not supported by the Shopmonkey API. See docs/LIMITATIONS.md for details.
| Tool | Description |
|---|---|
search_customers |
Search customers by full-body query |
search_customers_by_email |
Search for a customer by email address |
search_customers_by_phone |
Search for a customer by phone number |
get_customer |
Get full customer profile |
create_customer |
Create a new customer (name and address fields) |
update_customer |
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.
| Tool | Description |
|---|---|
list_vehicles_for_customer |
List all vehicles for a specific customer |
lookup_vehicle_by_vin |
Look up a vehicle by VIN number |
lookup_vehicle_by_plate |
Look up a vehicle by license plate and region |
list_vehicle_owners |
List owners associated with a vehicle |
get_vehicle |
Get full vehicle details |
create_vehicle |
Add a vehicle (optionally linked to a customer) |
update_vehicle |
Update vehicle data |
| Tool | Description |
|---|---|
list_inventory_parts |
List parts inventory |
get_inventory_part |
Get single part details |
list_inventory_tires |
List tire inventory |
search_parts |
Search parts catalog by query |
| Tool | Description |
|---|---|
list_appointments |
List appointments with date and status filters |
get_appointment |
Get full appointment details |
create_appointment |
Book a new appointment |
update_appointment |
Reschedule or update an appointment |
| Tool | Description |
|---|---|
list_payments |
List payments for an order |
get_payment |
Get payment details |
create_payment |
Record a payment (amountCents — integer cents, e.g., $150.50 = 15050) |
All money values use integer cents with
*Centsnaming. Never send decimal dollar amounts.
| Tool | Description |
|---|---|
list_labor |
List labor line items |
list_timeclock |
Technician clock-in/clock-out events |
list_users |
List shop users and technicians |
get_user |
Get user/technician profile |
| Tool | Description |
|---|---|
list_services |
List services on work orders |
list_canned_services |
List pre-built service templates |
get_canned_service |
Get canned service details with line items |
create_canned_service |
Create a new canned service template |
update_canned_service |
Update a canned service |
delete_canned_service |
Delete a canned service template |
list_customer_deferred_services |
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 |
|---|---|---|---|---|
add_canned_service_fee |
add_canned_service_labor |
add_canned_service_part |
add_canned_service_subcontract |
add_canned_service_tire |
update_canned_service_fee |
update_canned_service_labor |
update_canned_service_part |
update_canned_service_subcontract |
update_canned_service_tire |
remove_canned_service_fee |
remove_canned_service_labor |
remove_canned_service_part |
remove_canned_service_subcontract |
remove_canned_service_tire |
| Tool | Description |
|---|---|
list_webhooks |
List all registered webhooks |
get_webhook |
Get webhook details |
create_webhook |
Register a new webhook endpoint with trigger types |
update_webhook |
Update a webhook |
delete_webhook |
Delete a webhook |
Supported triggers: Appointment, Customer, Inspection, Inventory, Message, Order, Payment, PurchaseOrder, User, Vehicle, Vendor
| Tool | Description |
|---|---|
report_revenue_summary |
Revenue totals by status and paid/unpaid split for a date range |
report_appointment_summary |
Appointment counts by confirmation status for a date range |
report_open_estimates |
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.
| Tool | Description |
|---|---|
list_workflow_statuses |
Get pipeline/workflow stages |
list_locations |
List shop locations |
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"
}
}
}
}
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 mcp add shopmonkey -e SHOPMONKEY_API_KEY=your_api_key_here -- node /path/to/shopmonkey-mcp-server/dist/index.js
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.
| Document | Description |
|---|---|
| Architecture | System design, dual transport, tool module pattern, client resilience |
| Capabilities | All 64 tools with use-case descriptions |
| Limitations | Unsupported operations with rationale and workarounds |
| Deployment | Railway + Doppler single-tenant deployment guide |
| Multi-Tenant Future | Future-work exploration for multi-shop deployment |
| Variable | Required | Default | Description |
|---|---|---|---|
SHOPMONKEY_API_KEY |
Yes | — | Shopmonkey API key (Settings > Integration > API Keys) |
SHOPMONKEY_BASE_URL |
No | https://api.shopmonkey.cloud/v3 |
API base URL |
SHOPMONKEY_LOCATION_ID |
No | — | Scope all queries to one location (multi-location shops) |
MCP_AUTH_TOKEN |
Cloud: Yes | — | Bearer token for HTTP transport authentication. Required for cloud deployment — omitting it makes the endpoint public. |
PORT |
No | 3000 |
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.
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.
The server handles common API scenarios:
Retry-After headerAPI-xxxxx, ORM-xxxxx) and human-readable message fieldДобавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"shopmonkey-mcp-server": {
"command": "npx",
"args": []
}
}
}