Skip to main content
Glama

list_frmr_documents

Discover available FedRAMP FRMR documents including security indicators, assessment standards, vulnerability data, change notifications, definitions, and authorization data to begin compliance analysis.

Instructions

List available FRMR JSON documents and metadata. This is usually the first tool to call to discover what FedRAMP data is available. Returns KSI (Key Security Indicators), MAS (Minimum Assessment Standard), VDR (Vulnerability Detection), SCN (Significant Change Notifications), FRD (Definitions), and ADS (Authorization Data Sharing) documents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The tool execution handler: an async function that calls the helper listFrmrDocuments() and returns the list of FRMR document metadata wrapped in an object.
    execute: async () => { const documents = listFrmrDocuments(); return { documents }; },
  • Input schema using Zod: an empty object schema indicating the tool takes no input parameters.
    const schema = z.object({});
  • Registration of the tool by including listFrmrDocumentsTool in the array passed to registerToolDefs in the registerTools function.
    listFrmrDocumentsTool,
  • Core helper function listFrmrDocuments() that fetches all FRMR documents from the indexer and extracts their metadata.
    export function listFrmrDocuments(): FrmrDocumentMeta[] { return getFrmrDocuments().map( ({ raw, rawText, topLevelKeys, idKey, ...meta }) => meta, ); }
  • Import statement for the listFrmrDocumentsTool required for registration.
    import { listFrmrDocumentsTool } from "./list_frmr_documents.js";

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ethanolivertroy/fedramp-docs-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server