{
  "serverInfo": {
    "name": "SentinelSAST",
    "version": "1.0.0",
    "description": "AI-powered Static Application Security Testing (SAST) platform. Analyze source code, files, or live URLs for security vulnerabilities including OWASP Top 10, CWE mappings, injection flaws, memory safety issues, and mobile security.",
    "vendor": "386 LLC",
    "homepage": "https://sentinelsast.com"
  },
  "transport": {
    "type": "http",
    "endpoint": "https://sentinelsast.com/mcp"
  },
  "capabilities": {
    "tools": true,
    "resources": false,
    "prompts": false,
    "sampling": false
  },
  "tools": [
    {
      "name": "create_audit",
      "description": "Create and run a security audit on source code, a file, or a URL",
      "inputSchema": {
        "type": "object",
        "properties": {
          "title": { "type": "string", "description": "Name for this audit" },
          "input_type": { "type": "string", "enum": ["code", "file", "url"] },
          "code_snippet": { "type": "string", "description": "Source code to analyze (for code/file type)" },
          "url_target": { "type": "string", "description": "URL to scan (for url type)" },
          "language": { "type": "string", "description": "Programming language of the code" }
        },
        "required": ["title", "input_type"]
      }
    },
    {
      "name": "get_audit_findings",
      "description": "Retrieve all security findings for a completed audit",
      "inputSchema": {
        "type": "object",
        "properties": {
          "audit_id": { "type": "string", "description": "The audit ID to fetch findings for" }
        },
        "required": ["audit_id"]
      }
    }
  ]
}
