Skip to main content
Glama
WYRE-AI

CyberQP MCP Server

by WYRE-AI

cyberqp_get_jit_policies

Retrieve Just-In-Time (JIT) policy configuration, including approval requirements and max session duration, for a specific customer and account type. Provides read-only policy details without exposing credentials.

Instructions

Get the configured JIT policy (approval requirements, max session duration) for a customer + account type. Policy configuration only - never returns credential material.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customerIdYesCustomer ID.
accountTypeYesAccount type the policy applies to.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It adds a valuable guarantee: 'Policy configuration only - never returns credential material,' which prevents an agent from expecting secrets. However, it doesn't mention permissions, reversibility, or error behavior. For a read-only getter this is adequate but not comprehensive.

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 two sentences with zero waste. The action and scope are front-loaded, and the credential-material warning adds meaningful value in the second sentence. It is efficient, though it could use structure to clarify alternatives; as conciseness, it's effective.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter getter with no output schema, the description covers the core purpose. However, the sibling confusion risk is significant: multiple JIT tools exist in the same family, and the description doesn't clarify how policy retrieval differs from status checks or existence checks. That gap leaves an agent without enough context to reliably choose this 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 coverage is 100%: both customerId and accountType have descriptions, and accountType has an enum limiting values. The description echoes 'customer + account type' but adds no extra syntax, format, or default details beyond the schema. Baseline 3 is appropriate when the schema documents both parameters well.

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 states a clear action and resource: 'Get the configured JIT policy (approval requirements, max session duration) for a customer + account type.' The parenthetical adds specificity about what the policy contains. It doesn't explicitly distinguish from siblings like cyberqp_get_customer_jit_status, but the resource detail is specific enough to convey the tool's purpose.

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?

There is no guidance on when to use this tool versus alternatives. The sibling list includes several JIT-related tools (cyberqp_get_customer_jit_status, cyberqp_get_tenant_jit_status, cyberqp_check_jit_account_exists), but the description never mentions them or states when to prefer this one. An agent could easily confuse this with a status or existence check.

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