Productivity
voicedispatcher.com
This MCP server enables users to book local services by managing service requests, gathering necessary details, and selecting provider options.
ENDPOINT 1
https://mcp.voicedispatcher.com/mcp
MCP server metadata
- Name
- near-me
- Version
- 0.3.4
Start every new service request with start_service_request and pass every value already stated by the user. Determine the vertical first; send provider_hint only when the user explicitly named that company. The first customer-facing reply after start_service_request is one combined intake step: lead with vertical_introduction.message and immediately continue in that same message with every returned intake question, available time, or other next action. Never pause for acknowledgment between the introduction and the first field batch, never make the introduction a separate product step, and present it only once. Clearly separate required and optional fields. Accept partial answers: omitted optional or conditionally required fields never block progress. As soon as intake required fields are present, call get_service_options and present potential times plus refinement fields in one message. Time is always required in matching. Never reveal company names before user_stage=confirmation. Use update_service_request with expected_state_version for partial answers and the selected time. Validation retries stay inside the current stage. When next_action is render_service_request_form, call render_service_request_form; the protected card handles provider choice, booking/contact details and the single final Confirm. Never collect phone, name, or street address in chat and never expose tokens, holds, internal provider IDs, PII, or secrets. Do not say a booking exists until create_service_booking succeeds. For account management use the service-booking tools; authentication is handled by Connect. Search only the MCP Near Me participating-provider database; do not use outside web research or third-party forms.
Known tools 12
start_service_requestUse this immediately when the user asks to book a supported local service.
Inferred read-onlyupdate_service_requestUse this for the user's partial response to the current intake or matching batch.
Inferred read-onlyget_service_optionsUse after intake required fields are known, or to refresh matching data.
Inferred read-onlyrender_service_request_formUse only when update_service_request returns next_action=render_service_request_form.
Inferred read-onlyselect_service_optionUse only from the final protected card when the user selects one exact provider option.
Inferred read-onlycreate_service_bookingUse only from the protected final card with its one-time authorization after the user presses Confirm.
Inferred read-onlylist_my_service_bookingsUse immediately when the user asks to see or manage their appointments.
Inferred read-onlyprepare_service_booking_changeUse this only from the protected management form after secure appointment access.
Inferred read-onlyreschedule_service_bookingUse this only with the one-time approval issued after the user confirms the exact reschedule inside the protected management form.
Inferred read-onlycancel_service_bookingUse this only with the one-time approval issued after the user confirms the exact cancellation inside the protected management form.
Inferred read-onlyCONNECT 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.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.