Skip to main content
Glama

whoislicensed — state license lookup

Verify a state license

verify_license
Read-onlyIdempotent

Look up a contractor, tradesperson, real estate, cosmetology or nursing license in a US state's own published license file by name, business name or license number. Returns up to 25 matching records with type, number, expiration date and status, the issuing board and the date of the copy. Covers 12 states: TX, CA, FL, VA, WA, OR, MN, IL, CT, CO, VT, DE. Always tell the user to confirm on the board's own lookup before hiring.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesName, business name or license number (or the start of one), 2–60 characters
stateYesTwo-letter state code, e.g. TX
license_typeNoOptional license-type slug from list_license_types to narrow the search, e.g. master-electricians

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, non-destructive behavior, and the description adds value by disclosing the result limit of 25 records, return fields, issuing board, date of copy, and state coverage. It gives useful behavioral context beyond the annotations, though it does not describe failure modes or empty-result behavior.

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 compact and well-structured: purpose first, then return details, then coverage and the safety instruction. Every sentence adds substantive information and there is no wasted text.

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 no output schema, the description appropriately explains the return fields and record limit, and it covers scope and user guidance. It is slightly incomplete because it never mentions the sibling tool or how to discover valid license_type values, and it omits behavior for unsupported states or no matches.

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 description coverage is 100%, so the schema already documents query, state, and license_type. The description adds useful meaning for query (name, business name, or license number) and enumerates supported states, but it does not elaborate on the license_type parameter or its relationship to list_license_types.

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 states what the tool does: look up licenses by name, business name, or license number, and it enumerates license categories and covered states. It is specific about the resource and action, but it does not explicitly differentiate itself from the sibling tool list_license_types, so it misses the top score.

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

Usage Guidelines3/5

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

The description implies when to use the tool—for verifying a license in a supported state—and adds the instruction to tell users to confirm on the board's own lookup. However, it does not mention the sibling list_license_types or explain when to use it, nor does it state any exclusions or alternatives.

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.2/5.0
Disambiguation5/5

list_license_types is a discovery/metadata tool while verify_license is the actual lookup action. There is no overlap in purpose or output, so an agent can choose unambiguously.

Naming Consistency5/5

Both tool names use the same verb_noun snake_case pattern: list_license_types and verify_license. The pattern clearly signals what each tool does.

Tool Count4/5

Two tools is lean, but each one is necessary: one for available license types/states and one for verification. The narrow lookup-focused purpose makes this count reasonable, albeit slightly below the typical 3-15 range.

Completeness5/5

The workflow is complete for the stated purpose: discover what can be checked with list_license_types, then verify a license with verify_license. There are no obvious dead ends or missing operations in the read-only lookup domain.

Resources