Skip to main content
Glama

AxioRank: Zero-Trust for AI Agents

Create a policy (disabled)

axiorank_create_policy

Create an outbound governance policy. It is created DISABLED so an LLM can never arm enforcement unattended. Review it (axiorank_get_policy) then enable it with axiorank_update_policy. toolPattern is a glob over tool names; action is allow / deny / require_approval / redact (redact masks PII in a model completion). Requires the policies:write scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
actionYes
contextNo
priorityNo
toolPatternYes
riskThresholdNo
signalCategoryNo
enforcementModeNoenforce

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint=false, destructiveHint=false), the description discloses that policies are created disabled, requires the 'policies:write' scope, and explains the action enum semantics (e.g., 'redact masks PII'). These are meaningful behavioral traits not present in the schema or annotations.

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?

The description is four sentences, each adding value: purpose, safety note, workflow, and parameter/scope details. No redundant or vague phrasing; all content is directly actionable.

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?

The tool has a complex optional `context` parameter, but the description focuses on the core create workflow, required scope, and action semantics. It does not describe the response return value or elaborate on optional conditions; however, the key steps (create→get→update) are covered. Given the complexity, slightly more detail could be added, but it's largely complete for a create 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?

With schema description coverage at 0%, the description must compensate. It explains `toolPattern` (glob over tool names) and `action` (allow/deny/require_approval/redact with redact semantics), but does not cover the other six parameters (name, context, priority, riskThreshold, signalCategory, enforcementMode). This partial coverage earns a mid-range score.

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 'Create an outbound governance policy' with a specific verb and resource, distinguishing it from sibling tools like axiorank_get_policy, axiorank_update_policy, and axiorank_list_policies. The workflow references make its unique role explicit.

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?

Explicitly instructs when to use this tool ('Create') versus siblings: 'Review it (axiorank_get_policy) then enable it with axiorank_update_policy.' It also explains the safety rationale for creating policies disabled, giving clear context on usage intent.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose, covering different aspects of agent, policy, incident, and threat management with no overlap. Tools like axiorank_list_agents and axiorank_get_agent are differentiated by list vs. get, and quarantine vs. revoke serve different use cases.

Naming Consistency5/5

All tools follow a consistent 'axiorank_verb_noun' pattern in snake_case, making it easy to predict tool names based on action and resource. No mixing of conventions or abbreviations.

Tool Count4/5

With 22 tools, the server covers a comprehensive security governance domain. While slightly above the typical 'well-scoped' range, each tool serves a specific function and the count is justified by the breadth of features (agents, policies, incidents, scoring, verification, audit).

Completeness4/5

The tool surface covers agent and policy lifecycle (CRUD except delete), incident querying, scoring, verification, and audit. Minor gaps include missing delete operations for policies and incidents, and no way to update incident status. However, the core workflows are well-supported.

Resources