Skip to main content
Glama

List ISM OSCAL profiles

list_profiles

Lists OSCAL profiles for ISM releases, covering five classification baselines and three Essential Eight maturity levels.

Instructions

Lists the OSCAL profiles published alongside each ISM release: the five classification baselines (NC, OS, P, S, TS) and the three Essential Eight maturity levels (ML1, ML2, ML3).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'list_profiles' tool. It returns the list of profile names with their kinds (classification or essential-eight) from the PROFILE_NAMES constant.
    async () => {
      return txt({
        profiles: PROFILE_NAMES.map((name) => ({
          name,
          kind: name.startsWith("ISM_E8") ? "essential-eight" : "classification",
        })),
      });
    },
  • src/index.ts:476-492 (registration)
    Registration of the 'list_profiles' tool on the MCP server with title, description, input schema (empty), and the handler.
    server.registerTool(
      "list_profiles",
      {
        title: "List ISM OSCAL profiles",
        description:
          "Lists the OSCAL profiles published alongside each ISM release: the five classification baselines (NC, OS, P, S, TS) and the three Essential Eight maturity levels (ML1, ML2, ML3).",
        inputSchema: {},
      },
      async () => {
        return txt({
          profiles: PROFILE_NAMES.map((name) => ({
            name,
            kind: name.startsWith("ISM_E8") ? "essential-eight" : "classification",
          })),
        });
      },
    );
  • The 'txt' helper function used by the handler to format the response as a text content block.
    function txt(value: unknown): { content: { type: "text"; text: string }[] } {
      const text =
        typeof value === "string" ? value : JSON.stringify(value, null, 2);
      return { content: [{ type: "text", text }] };
    }
  • The PROFILE_NAMES constant defining the list of all valid profile names (5 classification baselines + 3 Essential Eight maturity levels) used by the handler.
    export const PROFILE_NAMES: ProfileName[] = [
      "ISM_NON_CLASSIFIED",
      "ISM_OFFICIAL_SENSITIVE",
      "ISM_PROTECTED",
      "ISM_SECRET",
      "ISM_TOP_SECRET",
      "ISM_E8_ML1",
      "ISM_E8_ML2",
      "ISM_E8_ML3",
    ];
Behavior2/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 only states what is listed, but does not disclose any behavioral traits such as whether authentication is required, rate limits, or that this is a read-only operation. The description lacks depth beyond enumeration.

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 with no wasteful words. Front-loaded with the key action and resource, followed by specific items. Efficient and to the point.

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 parameters and a simple listing output, the description is largely complete. However, it could mention that the returned profile identifiers are used as input to tools like get_profile_controls, and it omits details about output format (e.g., API response structure). Still, it suffices for basic understanding.

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?

The tool has zero parameters, so the description does not need to add parameter information. Schema description coverage is 100%, and the baseline for zero-param tools is 4, which is appropriate as the description does not need to compensate.

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 clearly states the verb 'Lists' and the resource 'OSCAL profiles published alongside each ISM release', with specific enumeration of the five classification baselines and three Essential Eight maturity levels. This distinguishes it from sibling tools like list_controls or list_versions.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives (e.g., get_profile_controls). It does not mention prerequisites, typical use cases, or exclusions, leaving the agent to infer usage context.

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

Install Server

Other Tools

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/RusticEagle/ism-mcp'

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