Skip to main content
Glama
BizVerify

BizVerify MCP Server

Official
by BizVerify

Get Entity

get_entity
Read-onlyIdempotent

Retrieve a cached business entity by its ID to access name, jurisdiction, status, type, good-standing, formation date, registered agent, and snapshot count. No fresh fetch, uses prior verification results.

Instructions

Fetch a previously verified business entity from BizVerify's cache by its ID — returns name, jurisdiction, status, type, good-standing, formation date, registered agent, and the number of snapshots on record. Free and read-only; does NOT fetch a fresh live result (use verify_business with force_refresh for live data). Requires authentication. Pass an entity_id returned by a prior verify_business or search_entities call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entity_idYesEntity ID returned by a prior verify_business or search_entities result

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already declare readOnlyHint and idempotentHint, but the description adds valuable context: free, read-only, cache behavior, requires authentication, and enumerates the exact fields returned. No contradiction with 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?

Three sentences, each earning its place: purpose and return fields, exclusion and alternative, then auth and input guidance. No wasted words and front-loaded with the core function.

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?

Despite the absence of an output schema, the description lists all returned fields, specifies prerequisites, limitations, authentication, and usage context. Complete for a simple read-only fetch tool.

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?

The schema covers 100% of one parameter with a clear description. The description reinforces and adds context by explaining the source of the entity_id (prior verify_business or search_entities). This goes beyond the schema's basic definition.

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 begins with a specific verb and resource: 'Fetch a previously verified business entity from BizVerify's cache by its ID.' It clearly distinguishes from siblings by noting it returns cached data rather than live data, and lists the specific fields returned.

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 states when to use this tool vs. alternatives: 'does NOT fetch a fresh live result (use verify_business with force_refresh for live data).' Also provides input prerequisites by specifying that the entity_id must come from a prior verify_business or search_entities call.

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