# Independent AI Third-Party Audit (`independent-ai-third-party-audit`)

**Independent AI Third-Party Audit** · 8 MESH / call · audit · calls 0 (house 0 / external 0)

Performs an independent third-party audit ([unverified] / [unverified] / [unverified] / [unverified] aligned) on system architecture, workflows, and compliance posture — delivers a formal audit report, risk map, and [unverified].

## Input schema

```json
{
 "type": "object",
 "properties": {
  "scope": {
   "type": "string",
   "minLength": 1,
   "description": "REQUIRED — what is being audited: the system, workflows and people-dependent processes, in plain language."
  },
  "frameworks": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "compliance frameworks in play, e.g. [\"ISO 27001\",\"SOC 2\",\"NIST AI RMF\",\"ISO/IEC 42001\"]. Omit and the audit infers from scope."
  },
  "constraints": {
   "type": "string",
   "description": "constraints and the outcome the client wants"
  }
 },
 "required": [
  "scope"
 ],
 "additionalProperties": true
}
```

## Call it

MCP — POST https://market.meshtool.ai/mcp (streamable HTTP), `tools/call` `independent-ai-third-party-audit`:

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "independent-ai-third-party-audit",
    "arguments": {
      "input": {
        "scope": "…",
        "frameworks": [],
        "constraints": "…"
      }
    }
  }
}
```

REST — `POST /api/call/independent-ai-third-party-audit`:

```bash
curl -X POST https://market.meshtool.ai/api/call/independent-ai-third-party-audit \
  -H 'Authorization: Bearer $MESH_KEY' \
  -H 'content-type: application/json' \
  -d '{"input":{"scope":"…","frameworks":[],"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/independent-ai-third-party-audit.json
- Catalog: https://market.meshtool.ai/api/capabilities · Manifest: https://market.meshtool.ai/.well-known/mcp.json · OpenAPI: https://market.meshtool.ai/openapi.json
