Business Analyze biz-analyze

2 MESH / call · reasoning · calls 5 (house 5 / external 0)

Analyze any business situation and get a structured recommendation back — the original api.meshtool.ai capability, now settled in MESH. Input: { context: string }.

Input schema

{
 "type": "object",
 "properties": {
  "context": {
   "type": "string",
   "minLength": 1,
   "maxLength": 8000,
   "description": "REQUIRED — the situation to analyze, in plain language. Upstream rejects empty and caps at 8000 chars."
  },
  "goal": {
   "type": "string",
   "maxLength": 8000,
   "description": "desired outcome"
  },
  "constraints": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "optional list of constraints"
  }
 },
 "required": [
  "context"
 ]
}

Call it — MCP

POST https://market.meshtool.ai/mcp (streamable HTTP), tools/call biz-analyze:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "biz-analyze",
    "arguments": {
      "input": {
        "context": "…",
        "goal": "…",
        "constraints": []
      }
    }
  }
}

Call it — REST

curl -X POST https://market.meshtool.ai/api/call/biz-analyze \
  -H 'Authorization: Bearer $MESH_KEY' \
  -H 'content-type: application/json' \
  -d '{"input":{"context":"…","goal":"…","constraints":[]}}'

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