INDIVIDUAL MCP TOOL
list_my_service_bookings
Use immediately when the user asks to see or manage their appointments.
LIVE ENDPOINT
https://mcp.voicedispatcher.com/mcp
Connect to this endpoint to inspect the live schema for list_my_service_bookings and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.near-me]
url = "https://mcp.voicedispatcher.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"near-me": {
"type": "http",
"url": "https://mcp.voicedispatcher.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: near-me
Remote MCP URL: https://mcp.voicedispatcher.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"near-me": {
"url": "https://mcp.voicedispatcher.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"near-me": {
"type": "http",
"url": "https://mcp.voicedispatcher.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "near-me",
"transport": "streamable-http",
"url": "https://mcp.voicedispatcher.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
start_service_request— Use this immediately when the user asks to book a supported local service.update_service_request— Use this for the user's partial response to the current intake or matching batch.get_service_options— Use after intake required fields are known, or to refresh matching data.render_service_request_form— Use only when update_service_request returns next_action=render_service_request_form.select_service_option— Use only from the final protected card when the user selects one exact provider option.create_service_booking— Use only from the protected final card with its one-time authorization after the user presses Confirm.complete_account_link— Call after an unauthenticated booking when account_linking.get_my_service_booking— Open an appointment that belongs to the connected customer.