{
  "$schema": "https://static.modelcontextprotocol.io/schemas/mcp-server-card/v1.json",
  "version": "1.0",
  "protocolVersion": "2025-06-18",
  "serverInfo": {
    "name": "elpa-space-agent-tools",
    "title": "ELPA SPACE Agent Tools",
    "version": "2026.06.09"
  },
  "description": "Remote MCP-compatible interface for x402 v2-payable deterministic utilities that help agents save tokens, verify patches, repair structured output, and prepare agentic commerce surfaces.",
  "iconUrl": "https://elpa.space/logo.svg",
  "documentationUrl": "https://elpa.space/agentic-web/",
  "transport": {
    "type": "streamable-http",
    "endpoint": "/api/mcp"
  },
  "capabilities": {
    "tools": {
      "listChanged": true
    },
    "resources": {
      "listChanged": true
    }
  },
  "authentication": {
    "required": false,
    "schemes": [
      "none",
      "x402-v2",
      "legacy-tx-hash"
    ]
  },
  "instructions": "Call tools/list for public schemas. Call tools/call with a tool name and arguments. Paid calls return HTTP 402 with PAYMENT-REQUIRED. Retry with PAYMENT-SIGNATURE (preferred x402 v2) or X-PAYMENT. Legacy x402-tx-hash remains available only for manual testing.",
  "resources": [
    {
      "name": "agent_tools_catalog",
      "title": "ELPA Agent Tools Catalog",
      "uri": "https://elpa.space/agent-tools.json",
      "description": "Plain JSON catalog containing all payable tool endpoints.",
      "mimeType": "application/json"
    },
    {
      "name": "agent_card",
      "title": "ELPA A2A Agent Card",
      "uri": "https://elpa.space/.well-known/agent-card.json",
      "description": "A2A-style discovery document for ELPA's remote agent tools.",
      "mimeType": "application/json"
    },
    {
      "name": "ucp_profile",
      "title": "ELPA UCP Profile",
      "uri": "https://elpa.space/.well-known/ucp",
      "description": "Experimental UCP profile for digital agent services.",
      "mimeType": "application/json"
    }
  ],
  "tools": [
    {
      "name": "context-compress",
      "title": "Context Compress",
      "description": "Compress verbose logs, traces, and repeated output into a smaller context block before the agent retries a task. Price: 0.005 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "text"
        ],
        "properties": {
          "text": {
            "type": "string",
            "description": "Raw log, transcript, or context block."
          },
          "maxLength": {
            "type": "integer",
            "minimum": 200,
            "maximum": 12000,
            "default": 2000
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "compressedText": {
            "type": "string"
          },
          "originalLength": {
            "type": "integer"
          },
          "compressedLength": {
            "type": "integer"
          },
          "compressionRatio": {
            "type": "number"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Token Economy",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/context-compress/",
        "elpa/page": "https://elpa.space/agent-tools/#context-compress",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-context-compressor",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.005,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "patch-verify",
      "title": "Patch Verify",
      "description": "Check whether a proposed replacement has exactly one matching target block before an agent edits a file. Price: 0.010 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "originalContent",
          "targetContent",
          "replacementContent"
        ],
        "properties": {
          "originalContent": {
            "type": "string"
          },
          "targetContent": {
            "type": "string"
          },
          "replacementContent": {
            "type": "string"
          },
          "allowMultiple": {
            "type": "boolean",
            "default": false
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "updatedContent": {
            "type": "string"
          },
          "occurrences": {
            "type": "integer"
          },
          "error": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Code Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/patch-verify/",
        "elpa/page": "https://elpa.space/agent-tools/#patch-verify",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-safe-patch-verifier",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.01,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "json-repair",
      "title": "JSON Repair",
      "description": "Repair common LLM JSON failures: markdown fences, trailing commas, and unclosed arrays or objects. Price: 0.003 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "rawText"
        ],
        "properties": {
          "rawText": {
            "type": "string",
            "description": "Malformed JSON text, optionally wrapped in markdown fences."
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "parsed": {},
          "repaired": {
            "type": "boolean"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Structured Output",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/json-repair/",
        "elpa/page": "https://elpa.space/agent-tools/#json-repair",
        "elpa/rawBlueprint": "https://elpa.space/raw/json-lax-parser",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.003,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "shell-guard",
      "title": "Shell Guard",
      "description": "Classify risky shell commands and clamp execution options before an agent launches a local process. Price: 0.005 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "command"
        ],
        "properties": {
          "command": {
            "type": "string"
          },
          "timeoutMs": {
            "type": "integer",
            "default": 30000
          },
          "maxBufferMb": {
            "type": "integer",
            "default": 50
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "safe": {
            "type": "boolean"
          },
          "nodeOptions": {
            "type": "object"
          },
          "wrappedCommand": {
            "type": "string"
          },
          "warnings": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Command Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/shell-guard/",
        "elpa/page": "https://elpa.space/agent-tools/#shell-guard",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-command-timeout-guard",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.005,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "lint-error-heal",
      "title": "Lint Error Heal",
      "description": "Parse TypeScript, Astro, and linter output into structured diagnostics that another agent can patch. Price: 0.010 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "errorLog"
        ],
        "properties": {
          "errorLog": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "diagnostics": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "file": {
                  "type": "string"
                },
                "line": {
                  "type": "integer"
                },
                "column": {
                  "type": "integer"
                },
                "code": {
                  "type": "string"
                },
                "message": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Repair Planning",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/lint-error-heal/",
        "elpa/page": "https://elpa.space/agent-tools/#lint-error-heal",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-lint-error-healer",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.01,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "dependency-plan",
      "title": "Dependency Plan",
      "description": "Extract missing npm dependencies from source code and return a cautious install command with typosquat warnings. Price: 0.015 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "code"
        ],
        "properties": {
          "code": {
            "type": "string"
          },
          "existingDependencies": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "default": []
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "missingDependencies": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "installCommands": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "safeToInstall": {
            "type": "boolean"
          },
          "warnings": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Install Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/dependency-plan/",
        "elpa/page": "https://elpa.space/agent-tools/#dependency-plan",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-dependency-safe-installer",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.015,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "syntax-validate",
      "title": "Syntax Validate",
      "description": "Compile-check JavaScript or TypeScript-like code without executing it before an agent commits a patch. Price: 0.008 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "code"
        ],
        "properties": {
          "code": {
            "type": "string"
          },
          "filename": {
            "type": "string",
            "default": "script.js"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "isValid": {
            "type": "boolean"
          },
          "reason": {
            "type": "string"
          },
          "details": {
            "type": "object"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Code Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/syntax-validate/",
        "elpa/page": "https://elpa.space/agent-tools/#syntax-validate",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-ast-syntax-validator",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.008,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "complexity-score",
      "title": "Complexity Score",
      "description": "Estimate branch complexity from a source block and return a simple grade for agent triage. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "code"
        ],
        "properties": {
          "code": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "complexity": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Code Review",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/complexity-score/",
        "elpa/page": "https://elpa.space/agent-tools/#complexity-score",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-ast-complexity-analyzer",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "token-budget",
      "title": "Token Budget",
      "description": "Strip comments, collapse whitespace, and enforce a hard character budget with middle truncation. Price: 0.004 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "content"
        ],
        "properties": {
          "content": {
            "type": "string"
          },
          "maxCharacters": {
            "type": "integer",
            "default": 1000
          },
          "stripComments": {
            "type": "boolean",
            "default": true
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "optimized": {
            "type": "string"
          },
          "originalSize": {
            "type": "integer"
          },
          "optimizedSize": {
            "type": "integer"
          },
          "savingsPercent": {
            "type": "integer"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Token Economy",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/token-budget/",
        "elpa/page": "https://elpa.space/agent-tools/#token-budget",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-token-budget-optimizer",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.004,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "env-validate",
      "title": "Env Validate",
      "description": "Compare .env content against an example file and flag missing keys, empty keys, and public secret leaks. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "envContent",
          "envExampleContent"
        ],
        "properties": {
          "envContent": {
            "type": "string"
          },
          "envExampleContent": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "isValid": {
            "type": "boolean"
          },
          "missingKeys": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "emptyKeys": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "leaks": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "warnings": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Config Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/env-validate/",
        "elpa/page": "https://elpa.space/agent-tools/#env-validate",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-env-validator",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "retry-backoff",
      "title": "Retry Backoff",
      "description": "Calculate exponential retry delays with optional jitter for 429 and transient API failures. Price: 0.002 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "attempt"
        ],
        "properties": {
          "attempt": {
            "type": "integer"
          },
          "baseDelayMs": {
            "type": "integer",
            "default": 1000
          },
          "maxDelayMs": {
            "type": "integer",
            "default": 16000
          },
          "enableJitter": {
            "type": "boolean",
            "default": true
          },
          "mockRandom": {
            "type": "number"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "attempt": {
            "type": "integer"
          },
          "retryDelayMs": {
            "type": "integer"
          },
          "maxRangeMs": {
            "type": "integer"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Network Stability",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/retry-backoff/",
        "elpa/page": "https://elpa.space/agent-tools/#retry-backoff",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-rate-limit-backoff",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.002,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "git-transaction",
      "title": "Git Transaction",
      "description": "Generate cautious backup and rollback command plans for dirty git workspaces. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "action"
        ],
        "properties": {
          "action": {
            "type": "string",
            "enum": [
              "backup",
              "rollback"
            ]
          },
          "statusOutput": {
            "type": "string"
          },
          "commitMessage": {
            "type": "string"
          },
          "backupBranch": {
            "type": "string"
          },
          "timestamp": {
            "type": "integer"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "requiresBackup": {
            "type": "boolean"
          },
          "branchName": {
            "type": "string"
          },
          "commands": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "error": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Workspace Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/git-transaction/",
        "elpa/page": "https://elpa.space/agent-tools/#git-transaction",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-git-transaction-guard",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "conflict-resolve",
      "title": "Conflict Resolve",
      "description": "Resolve simple git conflict-marker blocks using ours, theirs, or concat strategy. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "content"
        ],
        "properties": {
          "content": {
            "type": "string"
          },
          "strategy": {
            "type": "string",
            "enum": [
              "ours",
              "theirs",
              "concat"
            ],
            "default": "ours"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "resolvedContent": {
            "type": "string"
          },
          "hadConflicts": {
            "type": "boolean"
          },
          "error": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Workspace Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/conflict-resolve/",
        "elpa/page": "https://elpa.space/agent-tools/#conflict-resolve",
        "elpa/rawBlueprint": "https://elpa.space/raw/agent-git-conflict-resolver",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "action-guard",
      "title": "Action Guard",
      "description": "Scan model-generated code or shell scripts for destructive commands, credential access, and unsafe runtimes. Price: 0.015 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "code"
        ],
        "properties": {
          "code": {
            "type": "string"
          },
          "language": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "isSafe": {
            "type": "boolean"
          },
          "blockedPatterns": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "securityLevel": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Command Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/action-guard/",
        "elpa/page": "https://elpa.space/agent-tools/#action-guard",
        "elpa/rawBlueprint": "https://elpa.space/raw/secure-model-action-guard",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.015,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "toxicity-check",
      "title": "Toxicity Check",
      "description": "Classify simple English and Russian toxicity/profanity patterns in text before an agent posts or stores output. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "text"
        ],
        "properties": {
          "text": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "isToxic": {
            "type": "boolean"
          },
          "score": {
            "type": "number"
          },
          "flaggedCategories": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Content Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/toxicity-check/",
        "elpa/page": "https://elpa.space/agent-tools/#toxicity-check",
        "elpa/rawBlueprint": "https://elpa.space/raw/toxic-content-moderation-filter",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "csv-phone-clean",
      "title": "CSV Phone Clean",
      "description": "Extract and normalize phone numbers from CSV text into E.164-like strings with validation flags. Price: 0.008 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "csvText"
        ],
        "properties": {
          "csvText": {
            "type": "string",
            "format": "csv",
            "description": "CSV text with a phone column."
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "raw": {
                  "type": "string"
                },
                "clean": {
                  "type": "string"
                },
                "isValid": {
                  "type": "boolean"
                }
              }
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Data Cleaning",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/csv-phone-clean/",
        "elpa/page": "https://elpa.space/agent-tools/#csv-phone-clean",
        "elpa/rawBlueprint": "https://elpa.space/raw/secure-csv-phone-sanitizer",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.008,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "cost-estimate",
      "title": "Cost Estimate",
      "description": "Estimate model call costs from input and output token counts using a small configurable rate table. Price: 0.002 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "inputPricePerMillion",
          "outputPricePerMillion"
        ],
        "properties": {
          "model": {
            "type": "string",
            "default": "custom"
          },
          "inputTokens": {
            "type": "integer",
            "default": 0
          },
          "outputTokens": {
            "type": "integer",
            "default": 0
          },
          "inputPricePerMillion": {
            "type": "number"
          },
          "outputPricePerMillion": {
            "type": "number"
          },
          "rates": {
            "type": "object"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "model": {
            "type": "string"
          },
          "inputCost": {
            "type": "number"
          },
          "outputCost": {
            "type": "number"
          },
          "totalCost": {
            "type": "number"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Token Economy",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/cost-estimate/",
        "elpa/page": "https://elpa.space/agent-tools/#cost-estimate",
        "elpa/rawBlueprint": "https://elpa.space/raw/openai-cost-estimator",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.002,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "agent-web-readiness-audit",
      "title": "Agent Web Readiness Audit",
      "description": "Score a page or service for AI Search, browser-agent usability, x402 payment discovery, MCP, A2A, and UCP readiness. Price: 0.005 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "url"
        ],
        "properties": {
          "url": {
            "type": "string",
            "description": "Canonical page or service URL being audited."
          },
          "html": {
            "type": "string",
            "description": "Rendered or source HTML to inspect."
          },
          "robotsTxt": {
            "type": "string",
            "description": "robots.txt content when available."
          },
          "headers": {
            "type": "object",
            "description": "HTTP response headers as key/value pairs."
          },
          "discoveredUrls": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Known discovery URLs found by the calling agent."
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "channelReadiness": {
            "type": "object"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string"
                },
                "status": {
                  "type": "string"
                },
                "severity": {
                  "type": "string"
                },
                "message": {
                  "type": "string"
                }
              }
            }
          },
          "recommendedEndpoints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Web",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/agent-web-readiness-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#agent-web-readiness-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/the-ai-readable-website-stack",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.005,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "x402-bazaar-metadata-lint",
      "title": "x402 Bazaar Metadata Lint",
      "description": "Validate an x402 v2 payment requirement and Bazaar-facing resource metadata before agents discover or buy it. Price: 0.005 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "paymentRequired"
        ],
        "properties": {
          "paymentRequired": {
            "type": "object",
            "description": "Decoded PAYMENT-REQUIRED or x402 payment requirement JSON."
          },
          "resourceUrl": {
            "type": "string",
            "description": "Canonical resource URL when not embedded in paymentRequired.resource.url."
          },
          "inputSchema": {
            "type": "object"
          },
          "outputSchema": {
            "type": "object"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "score": {
            "type": "integer"
          },
          "status": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "missingFields": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "normalizedBazaarHints": {
            "type": "object"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Web",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/x402-bazaar-metadata-lint/",
        "elpa/page": "https://elpa.space/agent-tools/#x402-bazaar-metadata-lint",
        "elpa/rawBlueprint": "https://elpa.space/raw/the-ai-readable-website-stack",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.005,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "mcp-server-card-audit",
      "title": "MCP Server Card Audit",
      "description": "Score an MCP server card for discovery completeness, callable tools, schema clarity, transport metadata, and paid-tool readiness. Price: 0.005 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "serverCard"
        ],
        "properties": {
          "serverCard": {
            "type": "object"
          },
          "endpointUrl": {
            "type": "string"
          },
          "expectedTools": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "recommendedFields": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "toolCoverage": {
            "type": "object"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Web",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/mcp-server-card-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#mcp-server-card-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/model-context-protocol-mcp-agentic-tooling-standard",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.005,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "agent-discovery-gap-report",
      "title": "Agent Discovery Gap Report",
      "description": "Compare a site against agent-readable discovery surfaces: Agent Card, MCP, UCP, OfferCatalog, robots, llms.txt, raw context, and paid endpoints. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "url"
        ],
        "properties": {
          "url": {
            "type": "string"
          },
          "agentCard": {
            "type": "object"
          },
          "mcpServerCard": {
            "type": "object"
          },
          "ucpProfile": {
            "type": "object"
          },
          "offerCatalog": {
            "type": "object"
          },
          "robotsTxt": {
            "type": "string"
          },
          "llmsTxt": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "score": {
            "type": "integer"
          },
          "missingSurfaces": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "priorityFixes": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "crawlPlan": {
            "type": "array",
            "items": {
              "type": "object"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Web",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/agent-discovery-gap-report/",
        "elpa/page": "https://elpa.space/agent-tools/#agent-discovery-gap-report",
        "elpa/rawBlueprint": "https://elpa.space/raw/the-ai-readable-website-stack",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "llms-raw-context-audit",
      "title": "LLMs Raw Context Audit",
      "description": "Audit llms.txt and raw text endpoints for token shape, canonical source hints, section quality, and context-buying usefulness. Price: 0.004 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "llmsTxt"
        ],
        "properties": {
          "url": {
            "type": "string"
          },
          "llmsTxt": {
            "type": "string"
          },
          "rawText": {
            "type": "string"
          },
          "maxRecommendedBytes": {
            "type": "integer",
            "default": 120000
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "score": {
            "type": "integer"
          },
          "tokenShape": {
            "type": "object"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "suggestedSections": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "compressionHints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Web",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/llms-raw-context-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#llms-raw-context-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/llms-txt-generator-config",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.004,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "ai-crawler-policy-audit",
      "title": "AI Crawler Policy Audit",
      "description": "Score crawler policies for AI search, user-triggered fetchers, training bots, and paid-agent allowlists. Price: 0.004 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Web",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/ai-crawler-policy-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#ai-crawler-policy-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/robots-txt-anti-crawler-rules",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.004,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "schema-offer-catalog-audit",
      "title": "Schema Offer Catalog Audit",
      "description": "Check Schema.org OfferCatalog, SoftwareApplication, Product, Dataset, and Action metadata for machine buyers. Price: 0.005 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Web",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/schema-offer-catalog-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#schema-offer-catalog-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/the-ai-readable-website-stack",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.005,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "agent-paywall-pricing-advisor",
      "title": "Agent Paywall Pricing Advisor",
      "description": "Suggest x402 micropayment tiers from latency, token savings, buyer urgency, and result uniqueness. Price: 0.008 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Commerce",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/agent-paywall-pricing-advisor/",
        "elpa/page": "https://elpa.space/agent-tools/#agent-paywall-pricing-advisor",
        "elpa/rawBlueprint": "https://elpa.space/raw/l402-micropayment-paywall-cryptographic-defense-ai-crawlers",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.008,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "mcp-tool-schema-lint",
      "title": "MCP Tool Schema Lint",
      "description": "Lint MCP tool names, descriptions, input schemas, output contracts, and error semantics for reliable agent use. Price: 0.004 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Web",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/mcp-tool-schema-lint/",
        "elpa/page": "https://elpa.space/agent-tools/#mcp-tool-schema-lint",
        "elpa/rawBlueprint": "https://elpa.space/raw/model-context-protocol-mcp-agentic-tooling-standard",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.004,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "dataset-quality-score",
      "title": "Dataset Quality Score",
      "description": "Score a dataset description for freshness, coverage, columns, provenance, missingness, and buyer-ready documentation. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Data Intelligence",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/dataset-quality-score/",
        "elpa/page": "https://elpa.space/agent-tools/#dataset-quality-score",
        "elpa/rawBlueprint": "https://elpa.space/raw/read-csv-data-mcp",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "csv-schema-drift-check",
      "title": "CSV Schema Drift Check",
      "description": "Compare expected and observed CSV columns, types, row counts, null rates, and breaking changes. Price: 0.004 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Data Intelligence",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/csv-schema-drift-check/",
        "elpa/page": "https://elpa.space/agent-tools/#csv-schema-drift-check",
        "elpa/rawBlueprint": "https://elpa.space/raw/read-csv-data-mcp",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.004,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "api-response-contract-audit",
      "title": "API Response Contract Audit",
      "description": "Review API response examples for stable fields, typed errors, pagination, rate-limit hints, and agent-friendly contracts. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Developer APIs",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/api-response-contract-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#api-response-contract-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/json-output-enforcer",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "pii-redaction-plan",
      "title": "PII Redaction Plan",
      "description": "Identify likely personal data in a sample and recommend deterministic redaction rules before sharing context with agents. Price: 0.007 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Data Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/pii-redaction-plan/",
        "elpa/page": "https://elpa.space/agent-tools/#pii-redaction-plan",
        "elpa/rawBlueprint": "https://elpa.space/raw/pii-redaction-filter-prompt",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.007,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "unit-economics-snapshot",
      "title": "Unit Economics Snapshot",
      "description": "Summarize revenue, gross margin, payment fees, compute cost, refund risk, and contribution margin from compact inputs. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Economy",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/unit-economics-snapshot/",
        "elpa/page": "https://elpa.space/agent-tools/#unit-economics-snapshot",
        "elpa/rawBlueprint": "https://elpa.space/raw/ai-token-economics-2026",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "ltv-cac-sanity-check",
      "title": "LTV CAC Sanity Check",
      "description": "Check whether stated acquisition cost, conversion, retention, gross margin, and payback assumptions are plausible. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Economy",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/ltv-cac-sanity-check/",
        "elpa/page": "https://elpa.space/agent-tools/#ltv-cac-sanity-check",
        "elpa/rawBlueprint": "https://elpa.space/raw/ai-token-economics-2026",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "pricing-page-conversion-audit",
      "title": "Pricing Page Conversion Audit",
      "description": "Review pricing copy, plan structure, proof, friction, and buyer intent match for human and agent visitors. Price: 0.008 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Growth",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/pricing-page-conversion-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#pricing-page-conversion-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/seo-content-audit-pipeline",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.008,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "market-basket-margin-scan",
      "title": "Market Basket Margin Scan",
      "description": "Analyze a small basket of SKUs for gross margin, bundle candidates, price anomalies, and low-margin risk. Price: 0.010 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Commerce",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/market-basket-margin-scan/",
        "elpa/page": "https://elpa.space/agent-tools/#market-basket-margin-scan",
        "elpa/rawBlueprint": "https://elpa.space/raw/openai-cost-estimator",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.01,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "fx-exposure-brief",
      "title": "FX Exposure Brief",
      "description": "Summarize currency exposure from revenue, costs, settlement currency, geography, and payout timing. Price: 0.010 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Economy",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/fx-exposure-brief/",
        "elpa/page": "https://elpa.space/agent-tools/#fx-exposure-brief",
        "elpa/rawBlueprint": "https://elpa.space/raw/ai-token-economics-2026",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.01,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "crypto-tokenomics-risk-scan",
      "title": "Crypto Tokenomics Risk Scan",
      "description": "Scan token supply, unlocks, incentives, concentration, utility, and narrative risk from a compact project brief. Price: 0.015 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Crypto Intelligence",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/crypto-tokenomics-risk-scan/",
        "elpa/page": "https://elpa.space/agent-tools/#crypto-tokenomics-risk-scan",
        "elpa/rawBlueprint": "https://elpa.space/raw/deepseek-v4-pro-disruption-proprietary-token-market",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.015,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "onchain-wallet-label-brief",
      "title": "Onchain Wallet Label Brief",
      "description": "Turn wallet activity notes into a cautious label brief with confidence, counterparties, and evidence gaps. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Crypto Intelligence",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/onchain-wallet-label-brief/",
        "elpa/page": "https://elpa.space/agent-tools/#onchain-wallet-label-brief",
        "elpa/rawBlueprint": "https://elpa.space/raw/wallet-signature-auth-middleware",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "grant-rfp-fit-score",
      "title": "Grant RFP Fit Score",
      "description": "Score a project brief against grant or RFP requirements, eligibility, evidence, budget, and proposal gaps. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Business Development",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/grant-rfp-fit-score/",
        "elpa/page": "https://elpa.space/agent-tools/#grant-rfp-fit-score",
        "elpa/rawBlueprint": "https://elpa.space/raw/enterprise-agent-stack-before-buying-ai-agents",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "competitor-positioning-map",
      "title": "Competitor Positioning Map",
      "description": "Map competitors by buyer, promise, proof, pricing model, moat, and weak spots from compact descriptions. Price: 0.010 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Market Research",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/competitor-positioning-map/",
        "elpa/page": "https://elpa.space/agent-tools/#competitor-positioning-map",
        "elpa/rawBlueprint": "https://elpa.space/raw/generative-engine-optimization-geo-guide",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.01,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "marketplace-offer-fit-score",
      "title": "Marketplace Offer Fit Score",
      "description": "Score whether an API/tool offer is likely to sell in a machine-buyer marketplace based on urgency, repeatability, uniqueness, and proof. Price: 0.008 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Agentic Commerce",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/marketplace-offer-fit-score/",
        "elpa/page": "https://elpa.space/agent-tools/#marketplace-offer-fit-score",
        "elpa/rawBlueprint": "https://elpa.space/raw/what-website-developers-should-build-after-agentic-search",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.008,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "seo-geo-snippet-optimizer",
      "title": "SEO GEO Snippet Optimizer",
      "description": "Rewrite page signals into answer-engine-friendly title, summary, facts, citations, and machine action hints. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Growth",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/seo-geo-snippet-optimizer/",
        "elpa/page": "https://elpa.space/agent-tools/#seo-geo-snippet-optimizer",
        "elpa/rawBlueprint": "https://elpa.space/raw/generative-engine-optimization-geo-guide",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "product-feed-quality-audit",
      "title": "Product Feed Quality Audit",
      "description": "Score product feeds for identifiers, titles, descriptions, prices, stock, images, schema, and marketplace readiness. Price: 0.007 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Commerce",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/product-feed-quality-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#product-feed-quality-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/seo-content-audit-pipeline",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.007,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "landing-page-intent-match",
      "title": "Landing Page Intent Match",
      "description": "Compare target query, buyer intent, hero copy, proof, CTA, and page structure for conversion alignment. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Growth",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/landing-page-intent-match/",
        "elpa/page": "https://elpa.space/agent-tools/#landing-page-intent-match",
        "elpa/rawBlueprint": "https://elpa.space/raw/seo-content-audit-pipeline",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "policy-gap-scan",
      "title": "Policy Gap Scan",
      "description": "Compare a policy draft against required topics, operational controls, owner fields, and update cadence. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Compliance",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/policy-gap-scan/",
        "elpa/page": "https://elpa.space/agent-tools/#policy-gap-scan",
        "elpa/rawBlueprint": "https://elpa.space/raw/state-level-ai-compliance-fragmentation",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "vendor-risk-questionnaire-summarize",
      "title": "Vendor Risk Questionnaire Summarize",
      "description": "Summarize vendor answers into risk flags, missing evidence, control owners, and follow-up questions. Price: 0.014 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Compliance",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/vendor-risk-questionnaire-summarize/",
        "elpa/page": "https://elpa.space/agent-tools/#vendor-risk-questionnaire-summarize",
        "elpa/rawBlueprint": "https://elpa.space/raw/enterprise-agent-stack-before-buying-ai-agents",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.014,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "contract-clause-risk-map",
      "title": "Contract Clause Risk Map",
      "description": "Map contract clauses into commercial, privacy, IP, liability, renewal, and termination risk buckets. Price: 0.015 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Compliance",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/contract-clause-risk-map/",
        "elpa/page": "https://elpa.space/agent-tools/#contract-clause-risk-map",
        "elpa/rawBlueprint": "https://elpa.space/raw/state-level-ai-compliance-fragmentation",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.015,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "gdpr-cookie-copy-audit",
      "title": "GDPR Cookie Copy Audit",
      "description": "Review cookie/banner copy for consent clarity, purpose categories, reject parity, and tracking disclosure gaps. Price: 0.010 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Compliance",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/gdpr-cookie-copy-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#gdpr-cookie-copy-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/state-level-ai-compliance-fragmentation",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.01,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "incident-postmortem-draft",
      "title": "Incident Postmortem Draft",
      "description": "Turn incident notes into timeline, impact, root-cause hypotheses, contributing factors, and corrective actions. Price: 0.008 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Operations",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/incident-postmortem-draft/",
        "elpa/page": "https://elpa.space/agent-tools/#incident-postmortem-draft",
        "elpa/rawBlueprint": "https://elpa.space/raw/log-summarization-blueprint",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.008,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "hiring-scorecard-builder",
      "title": "Hiring Scorecard Builder",
      "description": "Convert a role brief into structured competencies, interview signals, evaluation weights, and red flags. Price: 0.007 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Operations",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/hiring-scorecard-builder/",
        "elpa/page": "https://elpa.space/agent-tools/#hiring-scorecard-builder",
        "elpa/rawBlueprint": "https://elpa.space/raw/resume-screener-agent-dag",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.007,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "support-ticket-priority-triage",
      "title": "Support Ticket Priority Triage",
      "description": "Classify support tickets by urgency, revenue impact, abuse risk, missing data, and next action. Price: 0.005 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Operations",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/support-ticket-priority-triage/",
        "elpa/page": "https://elpa.space/agent-tools/#support-ticket-priority-triage",
        "elpa/rawBlueprint": "https://elpa.space/raw/sentiment-analysis-classifier",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.005,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "churn-risk-signal-audit",
      "title": "Churn Risk Signal Audit",
      "description": "Review account notes for usage decline, unresolved support, price friction, champion loss, and expansion blockers. Price: 0.009 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Growth",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/churn-risk-signal-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#churn-risk-signal-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/sentiment-analysis-classifier",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.009,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "real-estate-listing-quality-score",
      "title": "Real Estate Listing Quality Score",
      "description": "Score property listing text for location clarity, amenities, photos, price context, compliance, and buyer-agent usefulness. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Industry: Real Estate",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/real-estate-listing-quality-score/",
        "elpa/page": "https://elpa.space/agent-tools/#real-estate-listing-quality-score",
        "elpa/rawBlueprint": "https://elpa.space/raw/seo-content-audit-pipeline",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "travel-itinerary-risk-check",
      "title": "Travel Itinerary Risk Check",
      "description": "Check itinerary notes for timing conflicts, transfer risk, visa/document gaps, weather sensitivity, and backup needs. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Industry: Travel",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/travel-itinerary-risk-check/",
        "elpa/page": "https://elpa.space/agent-tools/#travel-itinerary-risk-check",
        "elpa/rawBlueprint": "https://elpa.space/raw/social-media-scheduler-agent",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "healthcare-content-safety-audit",
      "title": "Healthcare Content Safety Audit",
      "description": "Review health content for unsafe claims, missing disclaimers, emergency guidance gaps, and evidence language. Price: 0.014 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Industry: Healthcare",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/healthcare-content-safety-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#healthcare-content-safety-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/toxic-content-moderation-filter",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.014,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "education-course-outline-audit",
      "title": "Education Course Outline Audit",
      "description": "Score course outlines for learning objectives, prerequisites, sequence, assessments, practice loops, and accessibility. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Industry: Education",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/education-course-outline-audit/",
        "elpa/page": "https://elpa.space/agent-tools/#education-course-outline-audit",
        "elpa/rawBlueprint": "https://elpa.space/raw/prompt-engineering-basics",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "energy-load-shift-opportunity",
      "title": "Energy Load Shift Opportunity",
      "description": "Summarize flexible compute, tariff windows, battery/storage notes, and operational constraints into load-shift opportunities. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Industry: Energy",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/energy-load-shift-opportunity/",
        "elpa/page": "https://elpa.space/agent-tools/#energy-load-shift-opportunity",
        "elpa/rawBlueprint": "https://elpa.space/raw/speed-to-power-ai-datacenter-grid-logistics",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "logistics-route-risk-brief",
      "title": "Logistics Route Risk Brief",
      "description": "Review route notes for delay risk, handoff count, customs, cold-chain, fragile goods, and contingency needs. Price: 0.009 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Industry: Logistics",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/logistics-route-risk-brief/",
        "elpa/page": "https://elpa.space/agent-tools/#logistics-route-risk-brief",
        "elpa/rawBlueprint": "https://elpa.space/raw/enterprise-agent-stack-before-buying-ai-agents",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.009,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "manufacturing-bom-risk-scan",
      "title": "Manufacturing BOM Risk Scan",
      "description": "Scan a bill-of-materials summary for single-source parts, lead-time risk, cost concentration, and compliance gaps. Price: 0.011 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Industry: Manufacturing",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/manufacturing-bom-risk-scan/",
        "elpa/page": "https://elpa.space/agent-tools/#manufacturing-bom-risk-scan",
        "elpa/rawBlueprint": "https://elpa.space/raw/read-csv-data-mcp",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.011,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "restaurant-menu-margin-hints",
      "title": "Restaurant Menu Margin Hints",
      "description": "Review menu items for pricing gaps, ingredient cost pressure, upsell candidates, and confusing descriptions. Price: 0.006 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Industry: Hospitality",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/restaurant-menu-margin-hints/",
        "elpa/page": "https://elpa.space/agent-tools/#restaurant-menu-margin-hints",
        "elpa/rawBlueprint": "https://elpa.space/raw/seo-content-audit-pipeline",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.006,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "app-store-review-miner",
      "title": "App Store Review Miner",
      "description": "Extract themes, bugs, feature requests, sentiment, and revenue-risk signals from compact review samples. Price: 0.007 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Product Intelligence",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/app-store-review-miner/",
        "elpa/page": "https://elpa.space/agent-tools/#app-store-review-miner",
        "elpa/rawBlueprint": "https://elpa.space/raw/sentiment-analysis-classifier",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.007,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "research-paper-claim-map",
      "title": "Research Paper Claim Map",
      "description": "Map abstract or notes into claims, evidence type, limitations, replication needs, and citation targets. Price: 0.009 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Research",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/research-paper-claim-map/",
        "elpa/page": "https://elpa.space/agent-tools/#research-paper-claim-map",
        "elpa/rawBlueprint": "https://elpa.space/raw/news-verification-agent-graph",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.009,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "procurement-bid-comparison",
      "title": "Procurement Bid Comparison",
      "description": "Compare bids by price, delivery, risk, warranty, compliance, vendor history, and missing assumptions. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Business Development",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/procurement-bid-comparison/",
        "elpa/page": "https://elpa.space/agent-tools/#procurement-bid-comparison",
        "elpa/rawBlueprint": "https://elpa.space/raw/enterprise-agent-stack-before-buying-ai-agents",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "local-services-lead-quality",
      "title": "Local Services Lead Quality",
      "description": "Score a local-service lead for intent, budget, urgency, geography, contact quality, and next response. Price: 0.005 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "Company, page, API, document, product, dataset, or decision being scored."
          },
          "context": {
            "type": "string",
            "description": "Compact notes, extracted text, rows summary, page copy, or structured brief."
          },
          "url": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Optional structured facts, metrics, rows, or extracted fields."
          },
          "signals": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "goal": {
            "type": "string",
            "description": "Decision the buying agent wants to make."
          },
          "constraints": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "timeframe": {
            "type": "string"
          },
          "market": {
            "type": "string"
          },
          "currency": {
            "type": "string"
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tool": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "score": {
            "type": "integer"
          },
          "grade": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          },
          "findings": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "priorityActions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missingInputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "machineActions": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "evidenceRequests": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "monetizationAngle": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Local Commerce",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/local-services-lead-quality/",
        "elpa/page": "https://elpa.space/agent-tools/#local-services-lead-quality",
        "elpa/rawBlueprint": "https://elpa.space/raw/named-entity-extraction-rules",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.005,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    },
    {
      "name": "stripe-signature",
      "title": "Stripe Signature",
      "description": "Verify Stripe webhook signatures with HMAC SHA-256 and timestamp tolerance checks. Price: 0.012 USDC on eip155:8453 USDC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "rawBody",
          "signatureHeader",
          "webhookSecret"
        ],
        "properties": {
          "rawBody": {
            "type": "string"
          },
          "signatureHeader": {
            "type": "string"
          },
          "webhookSecret": {
            "type": "string"
          },
          "toleranceSeconds": {
            "type": "integer",
            "default": 300
          }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "isValid": {
            "type": "boolean"
          },
          "timestamp": {
            "type": "integer"
          },
          "reason": {
            "type": "string"
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": false,
        "openWorldHint": false
      },
      "_meta": {
        "elpa/category": "Webhook Safety",
        "elpa/endpoint": "https://elpa.space/api/v1/agent-tools/stripe-signature/",
        "elpa/page": "https://elpa.space/agent-tools/#stripe-signature",
        "elpa/rawBlueprint": "https://elpa.space/raw/stripe-webhook-signature-verifier",
        "elpa/x402": {
          "version": 2,
          "scheme": "exact",
          "priceUSDC": 0.012,
          "network": "eip155:8453",
          "currency": "USDC",
          "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
          "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
          "paymentHeaders": [
            "PAYMENT-SIGNATURE",
            "X-PAYMENT",
            "x402-tx-hash (legacy)"
          ]
        }
      }
    }
  ],
  "prompts": [],
  "_meta": {
    "updatedAt": "2026-06-09",
    "payment": {
      "protocol": "x402",
      "implementation": "x402 v2 exact EVM facilitator with legacy Base USDC transaction-hash fallback",
      "network": "Base",
      "networkCaip2": "eip155:8453",
      "currency": "USDC",
      "tokenContract": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
      "recipientAddress": "0xd9d6ae1d5a2128fea511460fac8e4dea58baf153",
      "paymentHeaders": [
        "PAYMENT-SIGNATURE",
        "X-PAYMENT",
        "x402-tx-hash (legacy)"
      ],
      "challengeHeader": "PAYMENT-REQUIRED",
      "responseHeader": "PAYMENT-RESPONSE",
      "facilitatorEnv": [
        "X402_FACILITATOR_URL",
        "X402_FACILITATOR_AUTHORIZATION"
      ],
      "maxTimeoutSeconds": 120
    },
    "discovery": [
      {
        "label": "A2A Agent Card",
        "path": "/.well-known/agent-card.json",
        "url": "https://elpa.space/.well-known/agent-card.json",
        "kind": "agent-card",
        "description": "Public A2A-style card that describes ELPA as a payable remote agent/tool market."
      },
      {
        "label": "MCP Server Card",
        "path": "/.well-known/mcp/server-card.json",
        "url": "https://elpa.space/.well-known/mcp/server-card.json",
        "kind": "mcp-server-card",
        "description": "Static MCP server metadata with tool descriptors and the Streamable HTTP endpoint."
      },
      {
        "label": "MCP Discovery Alias",
        "path": "/.well-known/mcp.json",
        "url": "https://elpa.space/.well-known/mcp.json",
        "kind": "mcp-discovery",
        "description": "Compatibility alias for clients still probing the earlier MCP discovery path."
      },
      {
        "label": "UCP Profile",
        "path": "/.well-known/ucp",
        "url": "https://elpa.space/.well-known/ucp",
        "kind": "ucp-profile",
        "description": "Experimental UCP business profile for digital, x402-paid agent services."
      },
      {
        "label": "MCP JSON-RPC",
        "path": "/api/mcp",
        "url": "https://elpa.space/api/mcp",
        "kind": "mcp-jsonrpc",
        "description": "JSON-RPC endpoint exposing tools/list, resources/list, and paid tools/call."
      },
      {
        "label": "x402 Tool Catalog",
        "path": "/agent-tools.json",
        "url": "https://elpa.space/agent-tools.json",
        "kind": "tool-catalog",
        "description": "Plain JSON catalog with prices, schemas, endpoints, and x402 payment metadata."
      }
    ],
    "x402ToolCatalog": "https://elpa.space/agent-tools.json"
  }
}