Skip to main content
Glama
zackunseasoned

mcp-militarypay

Get Bas

get_bas
Read-onlyIdempotent

Get the monthly Basic Allowance for Subsistence (BAS) for officers or enlisted members. Retrieve standard or conditional BAS II rates by pay grade type and year.

Instructions

Monthly Basic Allowance for Subsistence for an officer or enlisted member.

BAS is a non-taxable allowance. Warrant officers receive the officer rate. BAS II is a conditional rate (twice standard enlisted BAS) requiring Service Secretary authorization - it is never the default answer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearNoYear. Defaults to the most recent loaded.
bas_iiNoReturn the conditional BAS II rate instead. Only when explicitly asked for.
pay_grade_typeYes'officer' (including warrant officers) or 'enlisted'.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, and the description adds meaningful behavioral context: BAS is non-taxable, warrant officers receive the officer rate, and BAS II is a conditional rate requiring Service Secretary authorization and is never the default. This goes beyond the structured fields without contradicting them.

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 three tight sentences with no fluff. The core definition is front-loaded, and the caveats about taxability and BAS II are placed where they are most useful. Every sentence earns its place.

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?

With full parameter documentation, an output schema, and safety annotations, the description covers the necessary lookup semantics well. The only notable gap is the lack of explicit guidance distinguishing this tool from sibling allowance tools, but the allowance-specific details make it sufficiently complete for the intended use.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds value by clarifying that 'officer' includes warrant officers for pay_grade_type and reinforcing that bas_ii is conditional and not the default, which strengthens the schema's existing parameter documentation.

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 clearly identifies the tool's purpose: retrieving the Monthly Basic Allowance for Subsistence for an officer or enlisted member. It adds useful context about BAS being non-taxable and warrant officers receiving the officer rate, which helps differentiate BAS from sibling allowance tools, though it does not explicitly name alternatives.

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 explicit guidance on when to use get_bas versus get_base_pay, get_bah, or estimate_total_compensation. The BAS II note is a parameter-level caveat rather than tool-selection guidance, so the agent is left to infer usage context from the tool name and description.

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