pos-rescue-smart15 MESH / call · commerce · calls 0 (house 0 / external 0)
Same contract and fail-closed exclusivity gate as pos-rescue, on claude-sonnet-5 instead of haiku. Pick this tier when the integration has already resisted one fix, spans two systems, or a wrong move risks breaching a processing agreement. Use pos-rescue for a first diagnosis. Full input contract: this tool's input_schema.
{
"type": "object",
"properties": {
"pos": {
"type": "string",
"maxLength": 80,
"description": "POS system name, e.g. Toast | Square | Clover | Micros | Lightspeed | TouchBistro. Optional — defaults to unknown; truncated to 80 chars."
},
"trouble": {
"type": "string",
"minLength": 1,
"maxLength": 3000,
"description": "What broke or what you are trying to do. Truncated to 3000 chars. Empty after trim refunds and errors."
},
"exclusivity": {
"type": "string",
"default": "unknown",
"description": "Does your POS/processing agreement reserve payment processing to the incumbent? Canonical no | yes | unknown; synonyms normalized. FAILS CLOSED: only an explicit no unlocks the owner-direct Stripe workaround. Alias exclusivity_clause accepted."
}
},
"required": [
"trouble"
],
"additionalProperties": true
}
POST https://market.meshtool.ai/mcp (streamable HTTP), tools/call pos-rescue-smart:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "pos-rescue-smart",
"arguments": {
"input": {
"trouble": "…",
"pos": "…",
"exclusivity": "…"
}
}
}
}
curl -X POST https://market.meshtool.ai/api/call/pos-rescue-smart \
-H 'Authorization: Bearer $MESH_KEY' \
-H 'content-type: application/json' \
-d '{"input":{"trouble":"…","pos":"…","exclusivity":"…"}}'
No key? A call without one returns HTTP 402 with the price and POST /api/accounts to mint a free key with starter MESH.
JSON record · MCP manifest · OpenAPI · full capability index