INDIVIDUAL MCP TOOL
validate_cart
Validate a proposed cart and calculate authoritative lines, discounts, fees, tax and total without creating an order.
LIVE ENDPOINT
https://app.getservd.me/api/v1/agent/mcp
Connect to this endpoint to inspect the live schema for validate_cart 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.servd-agent-ordering]
url = "https://app.getservd.me/api/v1/agent/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"servd-agent-ordering": {
"type": "http",
"url": "https://app.getservd.me/api/v1/agent/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: servd-agent-ordering
Remote MCP URL: https://app.getservd.me/api/v1/agent/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": {
"servd-agent-ordering": {
"url": "https://app.getservd.me/api/v1/agent/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"servd-agent-ordering": {
"type": "http",
"url": "https://app.getservd.me/api/v1/agent/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "servd-agent-ordering",
"transport": "streamable-http",
"url": "https://app.getservd.me/api/v1/agent/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
find_venues— Find restaurants on Servd.get_venue— Get one venue’s opening hours, current open state, pickup and delivery availability, published policies, and available agent-order payment mode.get_menu— Get a venue’s full live menu.place_order— Create a REAL restaurant order only after showing the latest validate_cart result and receiving explicit diner confirmation.check_order— Check payment and fulfillment state for an order created by place_order.