servicex-mcp-server
v1.0.2
Published
MCP server for ServiceX — lets Claude discover, price, and book local service providers
Maintainers
Readme
ServiceX MCP Server
Let Claude discover, price, and book local service providers through natural conversation.
Install for Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"servicex": {
"command": "npx",
"args": ["-y", "@servicex/mcp-server"]
}
}
}Config file location:
- Mac:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Restart Claude Desktop after editing.
What you can do
Just talk to Claude naturally:
- "Find me an electrician in Knoxville"
- "What services does Murphy Family Electric offer?"
- "Check availability for a half day electrical service on Monday"
- "Book me in for 9 AM on Tuesday"
Tools
| Tool | Description |
|------|-------------|
| find_providers | Search for service providers by name |
| get_services | Get services, prices, locations, and staff |
| check_availability | Check available time slots for a date |
| book_service | Create a confirmed booking |
Custom API URL
To point at a different ServiceX instance:
{
"mcpServers": {
"servicex": {
"command": "npx",
"args": ["-y", "@servicex/mcp-server"],
"env": {
"SERVICEX_API_URL": "https://your-api-url.com"
}
}
}
}