# DDG MCP Tool Security Audit

> DDG MCP Tool Security Audit is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Performs a security audit on an MCP (Model Context Protocol) tool endpoint by analyzing its HTTP request/response configuration and returning a bounded security assessment result.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/mcp-tool-security-audit
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-mcp-tool-security-audit-c3c69df4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_etXNPvt2KfzufKGLI-WPA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability ddg-mcp-tool-security-audit-c3c69df4 -d '<json body>'
```

Example prompt: Can you run a security audit on my MCP tool — it's a POST endpoint that accepts JSON in the body, and the expected output is a JSON object with an ok field set to true?

## When to prefer this

Choose this endpoint when you need a machine-payable, per-call security audit specifically for MCP (Model Context Protocol) tool endpoints. It is distinct from general API security scanners because it understands MCP tool schemas and HTTP body types. At $0.02 USDC per call via x402, it's suitable for automated pipelines that need lightweight, bounded security assessments without acquiring raw provider account access.

## Known failure modes

- Missing required 'input' or 'output' fields returns a validation error
- Invalid HTTP method (e.g. GET) in the input object causes rejection
- Unsupported bodyType enum value results in schema validation failure
- Payment not settled via x402 results in 402 Payment Required response
- Malformed JSON body causes parsing error

## How this service works

Machine-payable DDG services for AI agents. Current public live payment rails are x402 multi-chain USDC and direct-crypto auto/manual for public receiving-address families. MPP/Stripe/Tempo is installed but pending live provider env plus penny-settlement proof before any MPP-live advertisement. DDG sells bounded artifacts/results, not raw provider account access.

## Output

Returns a JSON object with an 'ok' boolean field indicating whether the audit completed successfully, along with any security findings or assessment details about the submitted MCP tool configuration.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "ok": true
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-mcp-tool-security-audit-c3c69df4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.daedalusdevelopmentgroup.com](https://www.zero.xyz/host/agents.daedalusdevelopmentgroup.com/llms.txt)
