{
  "name": "Smoke Test Agent",
  "description": "A test agent to verify the full claim and confirm flow works in production",
  "version": "1.0.0",
  "supportedInterfaces": [
    {
      "url": "https://api.example.com/v1/agents",
      "protocolBinding": "HTTP+JSON",
      "protocolVersion": "1.0"
    }
  ],
  "provider": {
    "organization": "Vincent",
    "url": "https://agents.ml/smoke-test-agent"
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "extendedAgentCard": false
  },
  "defaultInputModes": [
    "text/plain"
  ],
  "defaultOutputModes": [
    "text/plain"
  ],
  "skills": [
    {
      "id": "smoke-test-agent",
      "name": "Smoke Test Agent",
      "description": "A test agent to verify the full claim and confirm flow works in production",
      "tags": [
        "coding"
      ]
    }
  ],
  "documentationUrl": "https://agents.ml/smoke-test-agent",
  "securitySchemes": {
    "bearer": {
      "httpAuthSecurityScheme": {
        "scheme": "bearer"
      }
    },
    "oauth2": {
      "oauth2SecurityScheme": {
        "flows": {}
      }
    }
  },
  "securityRequirements": [
    {
      "schemes": {
        "bearer": []
      }
    },
    {
      "schemes": {
        "oauth2": []
      }
    }
  ],
  "extensions": {
    "agents.ml/mcp": {
      "servers": [
        {
          "url": "https://mcp.example.com/smoke-test",
          "auth": "oauth2"
        }
      ]
    }
  }
}