Skip to main content
Glama

IA-QA — 130+ QA & Dev Tools for AI Agents

web_security_audit

Read-only

Run a comprehensive web security audit combining headers, SSL, CORS, and cookies checks — then use an LLM to produce a prioritised remediation plan. Orchestrates security_headers_check + ssl_certificate_check + cors_test + cookie_security_audit in parallel, merges all findings, then asks an AI model to: (1) rank vulnerabilities by real-world exploitability, (2) generate a remediation roadmap, (3) produce fix code snippets for the detected stack. Returns both raw audit data and the AI analysis. Use this as a one-click security posture assessment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesFull URL to audit (e.g. https://example.com)
modelNoLLM model for AI analysis (default: "openai/gpt-oss-20b"). Set to "none" to skip AI analysis.
api_keyNoYour Groq or HuggingFace API key. Required to enable AI analysis.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
fixNo
keyNo
urlNo
nameNo
weakNo
gradeNo
scoreNo
testsNo
valueNo
headerNo
issuesNo
secureNo
weightNo
cookiesNo
detailsNo
messageNo
missingNo
httpOnlyNo
sameSiteNo
risk_levelNo
weak_countNo
cookies_foundNo
missing_countNo
overall_gradeNo
origins_testedNo
total_findingsNo
headers_checkedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / model / description
      Previous value: -"LLM model for AI analysis (default: \"qwen/qwen3-32b\"). Set to \"none\" to skip AI analysis."New value: +"LLM model for AI analysis (default: \"openai/gpt-oss-20b\"). Set to \"none\" to skip AI analysis."
  2. Changed1 schema field changed
    • addedOutput schema / properties
      Added value: +{
      +  "cookies": {
      +    "type": "array"
      +  },
      +  "cookies_found": {
      +    "type": "number"
      +  },
      +  "details": {},
      +  "fix": {},
      +  "grade": {},
      +  "header": {},
      +  "headers_checked": {
      +    "type": "number"
      +  },
      +  "httpOnly": {},
      +  "issues": {},
      +  "key": {},
      +  "message": {
      +    "type": "string"
      +  },
      +  "missing": {},
      +  "missing_count": {
      +    "type": "number"
      +  },
      +  "name": {},
      +  "origins_tested": {
      +    "type": "number"
      +  },
      +  "overall_grade": {},
      +  "risk_level": {},
      +  "sameSite": {},
      +  "score": {},
      +  "secure": {},
      +  "tests": {},
      +  "total_findings": {
      +    "type": "number"
      +  },
      +  "url": {},
      +  "value": {},
      +  "weak": {},
      +  "weak_count": {
      +    "type": "number"
      +  },
      +  "weight": {}
      +}
  3. Changed1 schema field changed
    • addedInput schema / properties / api_key
      Added value: +{
      +  "description": "Your Groq or HuggingFace API key. Required to enable AI analysis.",
      +  "type": "string"
      +}
  4. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "type": "object"
      +}
  5. First observed

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses that it runs the four checks in parallel, merges findings, invokes an LLM to rank vulnerabilities, generate a remediation roadmap, and produce fix snippets, and returns both raw audit data and AI analysis. Annotations already cover read-only/non-destructive behavior, and the description adds valuable orchestration and LLM behavior without contradicting annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four sentences with a front-loaded main purpose and a structured enumerated list of the AI analysis outputs. The length is justified for an orchestrator of this complexity, though it could be slightly tightened without losing value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a high-complexity orchestrator, it covers the sub-checks performed, the parallel execution model, the AI analysis outputs, and the combined return payload; the output schema handles return-value details. It does not mention failure behavior, timing, or cost, but it is sufficiently complete for tool selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the schema already documents url, model, and api_key with defaults and the 'none' option for skipping AI analysis. The description reinforces the purpose of the model/api_key parameters but does not add semantics beyond what the schema provides, so the baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it runs a comprehensive web security audit combining headers, SSL, CORS, and cookies checks, then produces an LLM-generated remediation plan. It explicitly names the exact sub-tools it orchestrates (security_headers_check, ssl_certificate_check, cors_test, cookie_security_audit), distinguishing it from those siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear context with 'Use this as a one-click security posture assessment,' which signals when the bundled orchestration is appropriate versus running individual checks. It does not explicitly state when not to use it or name alternatives, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources