Skip to main content
Glama
Atlasent

atlasent-mcp

Official

AtlaSent — Check Permit

atlasent_check_permit
Read-only

Check permit status before a deferred action to prevent acting on a revoked or expired permit. Returns validity and status (active, revoked, consumed, expired) without consuming the permit.

Instructions

Check whether a permit is still usable without consuming it. Returns { valid, status } where status is active, revoked, consumed or expired. Use before a deferred action to avoid acting on a permit that was revoked meanwhile. This is a status read, not authorization: execute only after atlasent_verify_permit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
permit_idYesPermit id (UUID) as returned by atlasent_list_permits.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.13.0

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds valuable behavior beyond that: the check does not consume the permit, returns a specific status object, and is purely a status read rather than an authorization decision.

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?

Three focused sentences deliver the core operation, return contract, and usage guidance without unnecessary detail. The key non-consuming behavior is front-loaded.

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

Completeness5/5

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

For a single-parameter read-only tool with no output schema, the description fully covers what the tool returns, what status values exist, and when to call it. The agent has enough information to invoke it correctly.

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?

The schema fully documents permit_id with 100% coverage, including its type and source from atlasent_list_permits. The description does not add parameter-specific detail, so baseline 3 is appropriate.

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 says exactly what the tool does: check whether a permit is still usable without consuming it. It also distinguishes itself from atlasent_verify_permit by clarifying that this is a status read, not authorization.

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?

The description explicitly says when to use the tool: before a deferred action to avoid acting on a revoked permit. It also gives an important exclusion, noting this is not authorization and must be executed only after atlasent_verify_permit.

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