Skip to main content
Glama
JonnyWaffles

va-lis-mcp

by JonnyWaffles

get_bill_history

Retrieve the chronological action history for a bill, from prefiling to governor action, including passage dates, vote tallies, and committee assignments.

Instructions

Chronological action history for a bill, from prefiling to governor action.

Passage dates live here (the bill detail's passage date fields are always null in LIS): look for events with is_passage true and read date and vote_tally. is_passage marks the events whose resulting status is a passage status (Passed House, Passed Senate, ...). status is the bill's status after each event. committee names the committee that acted; this is the only place LIS records which committee holds a bill. vote_id links an event to its vote: pass it to get_roll_call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bill_numberYes
session_codeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and does so thoroughly. It discloses LIS data quirks (passage dates null in detail, committee recorded only here), defines field semantics (is_passage meaning, status after each event), and explains the vote_id → get_roll_call linkage. This exceeds what annotations would typically convey.

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 purpose is front-loaded in one clear sentence, and the second paragraph organizes field explanations densely — every sentence carries unique value (quirks, semantics, routing). It is slightly long for a 2-parameter read tool, but the density justifies most of the length.

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 the output schema exists, the tool's read-only nature, and 21 siblings, the description covers the core behavior, data quirks, response field semantics, and one cross-tool route. The notable gap is parameter documentation (0% schema coverage, no compensation in prose), though the parameter names are reasonably self-evident.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description never mentions bill_number or session_code, so it does nothing to compensate for the uncovered schema. The parameter names are somewhat self-evident, but the rubric requires the description to fill low-coverage gaps, and none of the requested-parameter semantics are addressed.

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 first sentence states a specific verb and resource — 'Chronological action history for a bill' — and the scope ('from prefiling to governor action') is explicit. This is clearly distinguishable from sibling tools like get_bill, get_bill_votes, get_bill_summaries, and get_bill_text.

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

Usage Guidelines4/5

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

The description gives implicit routing context: 'Passage dates live here' with the note that bill-detail passage fields are 'always null in LIS,' and 'this is the only place LIS records which committee holds a bill.' It also explicitly routes vote_id to get_roll_call. However, it never names an alternative for plain bill detail or states when not to use this tool.

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