MacTech STIG
Server Details
DISA STIG rule search with full check/fix text: RHEL 8/9, Windows 11, Server 2022, Cisco IOS.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.5/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: searching rules, retrieving rule details, listing benchmarks, and exporting checklists. There is no overlap or ambiguity in their intended use cases.
All tool names follow a consistent verb_noun pattern: export_stig_checklist, get_stig_rule, list_stig_benchmarks, search_stig. The naming is uniform and predictable.
Four tools cover the core STIG workflow — discovery, rule lookup, and checklist export — without unnecessary bloat. The count is well-scoped for the server's stated purpose.
The tool set covers the entire intended workflow: list available benchmarks, search for rules, get full rule details, and export a STIG checklist. No obvious gaps exist within the server's domain.
Available Tools
4 toolsexport_stig_checklistExport a DISA .ckl checklistARead-onlyIdempotentInspect
Generate a DISA STIG Viewer checklist (.ckl XML) for a benchmark, optionally filtered by severity and pre-populated with findings. This is the artifact an assessment actually hands over — STIG Viewer opens it, eMASS ingests it, and a POA&M is written from it. Rules you do not supply a status for come out as Not_Reviewed. Call this when the user wants a checklist, a scan result recorded, or evidence to submit, rather than just to read a rule.
| Name | Required | Description | Default |
|---|---|---|---|
| host_ip | No | ||
| product | Yes | Which benchmark to build the checklist from | |
| findings | No | Per-rule results. Anything omitted stays Not_Reviewed — an unreviewed rule must never be reported as passing. | |
| severity | No | Limit to one severity, e.g. high for a CAT I-only checklist | |
| host_fqdn | No | ||
| host_name | No | Asset hostname recorded in the checklist |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, but the description adds meaningful behavioral context: 'Rules you do not supply a status for come out as Not_Reviewed.' This discloses a key default behavior not captured by annotations, adding value beyond the structured fields.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four sentences, each earning its place: the action, the artifact's significance, the default behavior, and explicit usage guidance. It is front-loaded with the core purpose and has zero fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, but the description adequately explains what the tool produces (a .ckl XML), its real-world purpose (handed to STIG Viewer/eMASS/POA&M), and the important default behavior for unspecified rules. This is enough for an agent to select and invoke correctly in context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 67%, and the description adds clarity by mentioning 'optionally filtered by severity' (matching the severity param) and 'pre-populated with findings' (clarifying the findings array). It also reinforces the meaning of the findings status field by explaining the Not_Reviewed default. The description does not cover host_ip/host_fqdn, but those are straightforward.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'Generate[s] a DISA STIG Viewer checklist (.ckl XML) for a benchmark' with specific verb and resource. It also distinguishes itself from sibling tools by positioning this as producing the hand-off artifact, not simply reading rules.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly gives usage direction: 'Call this when the user wants a checklist, a scan result recorded, or evidence to submit, rather than just to read a rule.' This clearly identifies when to use the tool and contrasts it with the read-only actions of alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_stig_ruleGet one STIG rule in fullARead-onlyIdempotentInspect
Get the complete detail for one DISA STIG rule by its SV id (from search_stig): the requirement discussion, the exact check procedure an assessor runs, the fix text, severity, NIST control mapping, and whether it is SCAP-automatable. Call this when the user needs to implement or verify a specific rule.
| Name | Required | Description | Default |
|---|---|---|---|
| sv_id | Yes | Rule id, e.g. "SV-257777r991589_rule" (fragments matched if unique) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds value by enumerating the returned content (requirement discussion, check procedure, fix text, severity, NIST mapping, SCAP-automatable), which is not in the structured annotations. No contradiction or misleading claims.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the core purpose and followed by usage guidance. Every clause adds information; no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter read-only tool with strong annotations and no output schema, the description covers purpose, usage, and return content effectively. It gives enough context for an agent to invoke it correctly without additional documentation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description for sv_id is thorough, with example format and fragment matching behavior. The description adds the useful hint that the id comes from 'search_stig', but this is a minor addition beyond the schema. With 100% coverage, baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets the complete detail for one DISA STIG rule by its SV id, listing specific fields. It distinguishes itself from siblings by referencing 'from search_stig' and framing it as the detailed follow-up to search results, unlike listing benchmarks or exporting checklists.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit when-to-use guidance is provided: 'Call this when the user needs to implement or verify a specific rule.' The reference to 'from search_stig' implies the typical workflow but does not explicitly name alternatives or when not to use the tool, so it falls 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.
list_stig_benchmarksList covered STIG benchmarksARead-onlyIdempotentInspect
List the DISA STIG benchmarks this server covers, with versions, rule counts, and severity breakdowns. Call this first when unsure whether a platform is covered.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, and the description aligns by saying 'list'. It adds value by specifying the return contents (versions, rule counts, severity breakdowns), which goes beyond the annotations. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that conveys purpose, output content, and usage guidance without wasted words. It's front-loaded with the main action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with no parameters and no output schema, the description provides sufficient context: what it lists, what each entry includes, and when to call it. Could be slightly more detailed on return structure but is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so schema coverage is 100%. With no parameters to explain, the description doesn't need to provide parameter semantics; baseline for 0 params is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'List' and identifies the resource 'DISA STIG benchmarks' with scope 'this server covers', and adds detail about versions, rule counts, and severity breakdowns. This clearly differentiates it from sibling tools like get_stig_rule or search_stig.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs to 'Call this first when unsure whether a platform is covered', giving a clear when-to-use scenario. It doesn't mention when not to use or alternatives, so not a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_stigSearch DISA STIG rulesARead-onlyIdempotentInspect
Search DISA STIG hardening rules across RHEL 8, RHEL 9, Windows 11, Windows Server 2022, and Cisco IOS Router NDM benchmarks — by keyword (matched against rule IDs and titles first, then descriptions), filterable by product, severity (high/medium/low, mapping to CAT I/II/III), category, and automation level. Call this when the user asks how to harden one of these platforms, what a STIG requires, or which rules cover a topic like SSH, passwords, or auditing. Returns summaries; use get_stig_rule for full check and fix text.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results per page (default 20) | |
| query | Yes | Keyword or rule id fragment, e.g. "ssh banner" or "SV-257777" | |
| offset | No | Skip this many matches. Pass the next_offset from a previous response to reach results beyond the first page. | |
| product | No | Limit to one benchmark | |
| severity | No | high=CAT I, medium=CAT II, low=CAT III | |
| automation | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the keyword matching order ('rule IDs and titles first, then descriptions'), states the return format ('Returns summaries'), and explains severity mapping ('high/medium/low, mapping to CAT I/II/III'). Annotations already convey read-only and idempotent, and the description adds context beyond that. However, it mentions a 'category' filter that does not exist in the schema, creating a minor accuracy blemish.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences: the first states scope and filtering, the second gives explicit use cases, the third explains the summary vs. full-text distinction. Every sentence earns its place, and the most important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 6 parameters, no output schema, and rich annotations, the description covers platforms, filters, use cases, and return nature. It appropriately defers to get_stig_rule for full details. The minor gap is the category mismatch and lack of mention of pagination, though offset parameters are described in the schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high (83%), so the baseline is 3. The description adds useful context for the query parameter (matching order and example 'ssh banner' or rule ID) and clarifies severity mapping, but it also introduces a non-existent 'category' filter, which confuses parameter semantics. Overall it provides marginal added value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Search DISA STIG hardening rules' and lists the exact platforms. It clearly distinguishes from siblings by stating it returns summaries and directs to get_stig_rule for full text, so an agent can differentiate this search tool from the retrieval tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says 'Call this when the user asks how to harden one of these platforms, what a STIG requires, or which rules cover a topic...' and provides an alternative: 'use get_stig_rule for full check and fix text.' This is direct, actionable guidance with a clear when-to-use and a named alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityCmaintenanceProvides search, detail lookup, and gap listing tools for a security control inventory, enabling natural language queries about control status and gaps.Last updated
- AlicenseAqualityAmaintenanceVMware vSphere compliance and hardening — read-only baseline scanning plus drift detection across CIS, DISA STIG, vSphere SCG, China DJCP 2.0, and PCI-DSS frameworks. Includes LLM-powered remediation suggestions; apply-side gated through the vmware-pilot approval workflow.Last updated62MIT
- Alicense-qualityAmaintenanceSearch and audit CVEs by keyword, severity, CWE, CISA KEV status, and CPE via the NIST National Vulnerability Database.Last updated7511Apache 2.0
- Flicense-qualityBmaintenanceA sovereign compliance engine with 36,195 STIG/CCI/NIST/CMMC mappings and 76 tools, enabling AI assistants to scan systems, generate risk reports, and ensure post-quantum cryptographic attestation—all air-gappable with zero token costs.Last updated1