# Business Analyze (`biz-analyze`)

**Business 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

```json
{
 "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`:

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

REST — `POST /api/call/biz-analyze`:

```bash
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: https://market.meshtool.ai/c/biz-analyze.json
- Catalog: https://market.meshtool.ai/api/capabilities · Manifest: https://market.meshtool.ai/.well-known/mcp.json · OpenAPI: https://market.meshtool.ai/openapi.json
