Skip to main content
Glama

FIPS 140 certificate tracker

Server Details

Every NIST FIPS 140 certificate, plus the modules-in-process queue NIST publishes only as a page.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
808bits/fips-mcp
GitHub Stars
0

Available Tools

6 tools
fips_certAInspect

Look up one FIPS 140 cryptographic module validation by certificate number. Returns status (active, historical or revoked), overall level, sunset date, validation history, approved algorithms and tested configurations.

ParametersJSON Schema
NameRequiredDescriptionDefault
numberYes

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does disclose the return fields (status, level, sunset date, history, algorithms, configurations), which is useful, but it doesn't mention any behavioral traits like error cases for invalid certificate numbers, whether the record can be historical/revoked (it does say status can be that), or response size. The disclosure of the status types is a modest positive.

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

Conciseness5/5

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

One dense sentence that front-loads the core action ('Look up one FIPS 140 cryptographic module validation by certificate number') and then lists the returned attributes. Every clause earns its place; no filler or repetition.

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 single-parameter lookup tool with no output schema, the description is fairly complete: it names the allowed status values and the full expected return payload. The only gap is guidance on error handling or what happens when the number is not found, but given the tool's simplicity this is a minor omission.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It does explain the single parameter semantically: the certificate number is the lookup key, and the returned data is tied to that exact module validation. However, it doesn't specify the exact format of the number (e.g., must be an integer like the schema requires) beyond implicit context. With one parameter and clear semantics, the description does enough.

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?

The description states a specific verb ('Look up') and a precise resource ('one FIPS 140 cryptographic module validation by certificate number'). It enumerates exactly what the tool returns, which fully distinguishes it from siblings like fips_search (search) and fips_in_process (in-process list).

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?

The description names the sibling fips_search implicitly by saying 'by certificate number', which tells the agent this is the one-record lookup variant. It doesn't explicitly say when not to use it or name alternatives, but the context signals plus sibling names make the usage clear without being stated.

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

fips_cveAInspect

Which FIPS-validated modules are associated with a given CVE, or which CVEs are associated with a vendor's modules. Answers 'we have a validated module, is it caught up in this advisory'. The association is name-based against the product CPE, so read it as a pointer to check rather than a finding. An empty result means nothing matched by name, not that the module is unaffected: only 16 of 5,504 certificates carry any association at all.

ParametersJSON Schema
NameRequiredDescriptionDefault
cveNoCVE id, e.g. CVE-2023-4807
limitNo
vendorNoVendor name or part of one
min_cvssNo

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral disclosure burden and does it well. It reveals that associations are name-based against the CPE, that results are pointers rather than findings, and that an empty result does not imply the module is unaffected. The statistical context (16 of 5,504 certificates) manages user expectations about data sparsity.

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

Conciseness5/5

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

Three sentences with zero filler. The first sentence states the core function, the second frames the typical use case, and the third adds essential caveats about result interpretation. Information is front-loaded and every sentence earns its place.

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?

Given no annotations and no output schema, the description covers the most critical behavioral context: name-based matching, empty-result semantics, and data sparsity. It does not explain return format or how combined cve+vendor queries behave, but the tool's purpose and limitations are largely complete for a lookup tool.

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 description coverage is only 50%, and the description compensates partially by explaining the role of the cve and vendor parameters in the two lookup directions. However, limit and min_cvss are not addressed in the description and have no schema descriptions, leaving a meaningful gap for two of the four parameters.

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?

The description states a clear bidirectional lookup: FIPS-validated modules for a CVE, or CVEs for a vendor's modules. The use case 'we have a validated module, is it caught up in this advisory' makes the tool's purpose instantly understandable and distinguishes it from sibling tools like fips_search or fips_vendor.

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?

The description gives clear context for when to use this tool: answering whether a validated module is affected by an advisory. It does not explicitly name alternatives or exclusion criteria, but the intended scenario is concrete and actionable.

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

fips_in_processAInspect

Search NIST's Modules in Process queue: submissions awaiting FIPS 140-3 validation, with the review phase each one is sitting in. Use this when a vendor claims a validation is 'coming' and you need to know whether it has actually been submitted, and how far along it is.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
phaseNoe.g. Review, Finalization, Coordination
queryNoSubstring of the module name or vendor

TDQS

A4/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral burden. It clearly indicates a read-only search operation and discloses that results include the review phase. However, it doesn't mention response shape, pagination behavior, or any data freshness limitations. The coverage is adequate but not rich.

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

Conciseness5/5

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

Two sentences, no filler. The first sentence front-loads the resource and what is returned; the second supplies a concrete real-world use case. Every word earns its place.

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?

Given three optional parameters and no output schema, the description gives enough context for a straightforward search tool: what it searches, what it reveals, and when to use it. It doesn't explicitly describe return values or defaults, but the core usage scenario is well covered.

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 67%: phase and query already have descriptions. The description adds contextual meaning by tying 'phase' to the review phase each submission is in, but it doesn't clarify the 'limit' parameter's behavior or add any new parameter semantics beyond the schema.

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?

States a specific verb ('Search'), a specific resource ('NIST's Modules in Process queue'), and a distinguishing scope ('submissions awaiting FIPS 140-3 validation'). This clearly separates it from the sibling search tools and explains the core value: showing the review phase each submission sits in.

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?

Gives a concrete trigger condition: use when a vendor claims validation is 'coming' and you need to verify submission status and progress. It doesn't explicitly name alternative tools or state when not to use it, but the context is clear enough for an agent to select it appropriately.

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

fips_sunsetAInspect

List active FIPS validations by sunset date, the day each moves to NIST's historical list and stops being valid for new procurement. Answers 'what expires before date X' and 'which vendors are about to have nothing valid'. A certificate listed here may already have a 140-3 successor: check fips_search for the same module name before reporting a gap.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
beforeNoISO date, exclusive: before=2026-09-21 excludes the 21st itself
vendorNo
standardNo

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses that the tool lists active validations, that sunset means moving to NIST's historical list and losing procurement validity, and that a listed certificate may already have a successor. It stops short of describing return fields or pagination, so it is not a 5.

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

Conciseness5/5

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

Three sentences with no filler: core action first, then representative questions, then a caveat routed to the right sibling. Every sentence earns its place.

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 read-only listing tool with four optional parameters and no output schema, the description is largely complete: it states scope, domain meaning, likely use cases, and the critical caveat about 140-3 successors. It could describe expected output fields or clarify standard/limit usage, but those gaps are minor and partially covered by the schema.

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 description coverage is only 25%, so the description needs to add meaning. It adds use-case meaning for before ('expires before date X') and vendor ('which vendors are about to have nothing valid'), but standard is left to the enum and limit to schema constraints. Compensation is useful but partial.

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?

Description opens with a specific verb-resource-scope: 'List active FIPS validations by sunset date' and defines what a sunset means (moves to NIST's historical list, stops being valid for new procurement). This distinguishes it from siblings like fips_search or fips_in_process.

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

Usage Guidelines5/5

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

Provides explicit query patterns ('what expires before date X', 'which vendors are about to have nothing valid') and names the alternative tool to check before reporting a gap: fips_search for the same module name. This gives clear when-to-use and when-not-to-use guidance.

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

fips_vendorAInspect

Everything one company holds, grouped across the spelling variants NIST filed it under. Cisco alone appears as three different strings. Returns a breakdown by status and standard plus the certificates themselves. Note this groups spellings of one registration, not corporate families: the nShield line sits under nCipher, Thales and Entrust separately, because the product changed owner.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
vendorYesVendor name or part of one

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations, the description carries the burden, and it decently discloses behavior: it groups spelling variants, returns a breakdown by status and standard, and returns the certificates themselves. It also transparently explains the non-obvious grouping rule about one registration versus corporate families. It does not mention auth, rate limits, or pagination, but for a simple read-style vendoor lookup the core behavior is adequately disclosed.

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?

The description is front-loaded with the main purpose and each sentence serves a role: definition, example, return contents, and grouping caveat. The nShield example is slightly detailed but earns its place by preventing a likely misinterpretation. Overall it is well-structured and reasonably concise.

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 tool with only two simple parameters and no output schema, the description provides enough to understand purpose, return value, and an important scoping caveat. It does not describe the exact response shape or how 'limit' applies, but the essential invocation context is present.

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?

The schema describes 'vendor' as a name or part of one; the description adds useful nuance by explaining that vendoor matches NIST spelling variants and that one company can appear as multiple strings. However, the 'limit' parameter is not addressed in the description, and with 50% schema coverage the description only partially compensates for the undocumented parameter.

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

Purpose4/5

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

The description clearly identifies the tool as returning all certificates held by one company, grouped by the spelling variants NIST uses, and states it returns a status/standard breakdown plus the certificates. This is specific and understandable, though it does not explicitly differentiate it from sibling tools like fips_search or fips_cert.

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?

The description gives clear context for when the tool is appropriate: looking up everything a single registration holds. It also clarifies what the grouping does not include—corporate families, with a concrete nShield/nCipher/Thales example—which helps avoid misuse, but it does not name alternative tools or provide explicit when-not-to-use conditions beyond that caveat.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updates
    • First observedfips_cert
    • First observedfips_cve
    • First observedfips_in_process
    • First observedfips_search
    • First observedfips_sunset
    • First observedfips_vendor

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    Defense-grade cryptographic compliance and analysis tools for MCP, including FIPS 140-3 validation, CNSA 2.0 analysis, post-quantum readiness assessment, and classical cipher utilities.
    18
    1
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Free SSL/TLS scanning and Let's Encrypt certificate issuance (private key stays local), plus certificate-expiry monitoring via one MCP server. Public scan and cert tools need no account.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    MCP server over the open index of 1,562 certification exam blueprints across 217 certifying bodies. Search exams, pull full blueprints (domains & weights, passing scores, prerequisites, renewal), and compare certifications. Read-only, public data, no API key.
    4
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation4/5

Each tool targets a distinct aspect: certificate number lookup, search by name/vendor, vendor portfolio, sunset dates, in-process submissions, and CVE associations. The only mild overlap is between fips_search and fips_vendor when querying by vendor, but the descriptions clarify that one checks current validation while the other returns the full grouped portfolio.

Naming Consistency5/5

All tool names follow a consistent fips_<topic> pattern in lowercase snake_case. Even though most are noun-like rather than verb_noun, the prefix and naming style are uniform and predictable across the set.

Tool Count5/5

Six tools is well-scoped for a FIPS 140 certificate tracker: each covers a distinct query type without redundancy. The count feels intentional and neither too thin nor bloated.

Completeness5/5

The tool set covers the main certificate lifecycle: in-process submissions, active certificates, sunset status, historical/revoked details via certificate lookup, vendor-level viewing, and CVE association. It also includes cross-referencing hints such as checking for 140-3 successors before reporting a gap, so the surface appears complete for the domain.