fedramp-docs-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_ksisB | Enumerate FedRAMP 20x Key Security Indicators (KSIs). Args: theme: Optional theme short_name to filter by (e.g. 'AFR', 'IAM', 'CMT'). |
| get_ksiA | Get full text of a single KSI indicator. Args:
id: The KSI indicator ID, e.g. 'KSI-AFR-ADS'. Legacy numeric IDs ('KSI-AFR-03')
also resolve via the indicator's |
| list_frrsB | Enumerate 20x FedRAMP Requirements & Rules (FRR) sections. Args: status: Optional filter on effective.current_status (e.g. 'Open Beta', 'GA'). |
| get_frr_sectionA | Get full text of a 20x-effective FRR section. Args: short_name: Section short_name, e.g. 'ADS', 'CCM', 'FSI'. |
| get_definitionA | Look up a FedRAMP Definition by ID, term, or alt name. Args: term_or_id: An FRD ID (e.g. 'FRD-ACV'), the definition term, or an alt spelling. |
| searchA | Full-text search across KSIs, FRRs, and FRDs. Args: query: Search string (case-insensitive substring match). scope: Optional 'KSI' | 'FRR' | 'FRD' to narrow the search. |
| get_source_infoA | Return metadata about the active FRMR snapshot. Reports upstream commit, frmr_version, fetched_at, and whether the active
source is the bundled snapshot or a user-refreshed cache. Run
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct resource and action: definitions, FRR sections, KSI indicators, source info, listings for FRRs and KSIs, and cross-document search. There is no overlap in functionality, making it easy for an agent to select the correct tool.
Tool names follow a mostly consistent verb_noun pattern using snake_case (e.g., get_definition, list_frrs). The outlier is 'search' which lacks a noun suffix, but it remains clear and standard for a search tool.
Seven tools is well-scoped for a documentation retrieval server focused on FedRAMP definitions, rules, and indicators. Each tool serves a clear purpose without unnecessary redundancy or missing essential operations.
The tool set covers retrieval (get), listing (list with filters), and search for the three document types (FRDs, FRRs, KSIs), plus source metadata. A minor gap is the absence of a dedicated list_tools for definitions, but search partially mitigates this.