{
  "name": "AgentTrust",
  "description": "AI agent security platform — real-time prompt injection detection and agent identity verification. Scan text inputs for prompt injection, credential theft, instruction overrides, and data exfiltration attempts. Issue and verify cryptographic TrustCodes for agent identity.",
  "url": "https://agenttrust.ai",
  "provider": {
    "organization": "AgentTrust",
    "url": "https://agenttrust.ai"
  },
  "version": "1.0.0",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false
  },
  "authentication": {
    "schemes": [
      "bearer"
    ],
    "signup_url": "https://agenttrust.ai/login",
    "docs_url": "https://agenttrust.ai/docs"
  },
  "skills": [
    {
      "id": "injection_guard",
      "name": "InjectionGuard",
      "description": "Scan any text for prompt injection attacks, credential theft attempts, instruction overrides, and data exfiltration. Returns risk level, triggered rules, and block/allow recommendation.",
      "endpoint": "POST https://agenttrust.ai/api/injectionGuard",
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json"
      ]
    },
    {
      "id": "trustcode_issue",
      "name": "Issue TrustCode",
      "description": "Issue a cryptographic TrustCode to prove agent identity when communicating with users or other agents.",
      "endpoint": "POST https://agenttrust.ai/api/verify/issue",
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json"
      ]
    },
    {
      "id": "trustcode_verify",
      "name": "Verify TrustCode",
      "description": "Verify a TrustCode to confirm the identity of an agent. No API key required.",
      "endpoint": "GET https://agenttrust.ai/api/verify/{code}",
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "application/json"
      ]
    }
  ],
  "sdk": {
    "npm": "@agenttrust/sdk",
    "github": "https://github.com/agenttrust/sdk"
  },
  "defaultInputModes": [
    "application/json"
  ],
  "defaultOutputModes": [
    "application/json"
  ]
}
