Skip to main content
Glama
nrfischer10

freshfilings-mcp

by nrfischer10

freshfilings-mcp

MCP server for FreshFilings — gives AI agents live access to U.S. business entity data from official state filing databases.

What it does

The U.S. has no central business registry. Each state runs its own. FreshFilings aggregates them. This MCP server exposes that data as tools any AI agent can call directly.

Current coverage: New York, Florida, Colorado (3M+ entities)

Related MCP server: OffshoreProz Agent API

Tools

Tool

Description

search_businesses

Search for businesses by name, optionally filter by state

get_business_detail

Full record for a single entity — officers, addresses, registered agent

get_new_formations

Businesses formed since a given date, useful for sales prospecting

check_usage

Check your API key usage and remaining calls this month

Quickstart

Requires a FreshFilings API key. Get one at freshfilings.dev.

# Run directly with uvx (no install needed)
FRESHFILINGS_API_KEY=your_key uvx freshfilings-mcp

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "freshfilings": {
      "command": "uvx",
      "args": ["freshfilings-mcp"],
      "env": {
        "FRESHFILINGS_API_KEY": "your_key_here"
      }
    }
  }
}

Cursor / other MCP clients

{
  "mcpServers": {
    "freshfilings": {
      "command": "uvx",
      "args": ["freshfilings-mcp"],
      "env": {
        "FRESHFILINGS_API_KEY": "your_key_here"
      }
    }
  }
}

Environment variables

Variable

Required

Description

FRESHFILINGS_API_KEY

Yes

Your FreshFilings API key

FRESHFILINGS_BASE_URL

No

Override API base URL (default: https://freshfilings.dev/api/v1)

Example usage

Once connected, you can ask your AI agent things like:

  • "Is Acme Holdings LLC registered and active in New York?"

  • "Get me all LLCs formed in Florida since January 1st"

  • "Look up the registered agent for entity 4827193 in NY"

  • "How many API calls do I have left this month?"

Getting an API key

  1. Go to freshfilings.dev

  2. Choose a plan and complete checkout

  3. Key is emailed immediately — no sales call, no waiting

License

MIT

Available Tools

4 tools
check_usageA

Check your FreshFilings API key usage and remaining calls this month.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It implies a read-only operation without side effects, but does not explicitly state this or mention any rate limits or authentication requirements. Adequate for a simple query tool but could be more explicit.

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 a single, concise sentence that is front-loaded with the core action and resource. Every word is useful, and there is no redundancy or unnecessary detail.

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 tool has no parameters and an output schema exists, the description is complete enough to understand the purpose. It could briefly note that it is a read-only operation, but overall it provides sufficient context for a simple usage check 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?

There are no parameters, so schema coverage is 100%. The description adds no parameter information, which is acceptable since there are none. Baseline for zero parameters is 4, and the description meets this without needing to elaborate.

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 clearly states the action ('check') and the resource ('FreshFilings API key usage and remaining calls'). It distinguishes from siblings (e.g., get_business_detail, get_new_formations) by focusing on usage tracking rather than data retrieval.

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 provides clear context for when to use this tool: to check API usage and remaining calls. It does not explicitly exclude use cases or mention alternatives, but the purpose is straightforward enough that no further guidance is needed.

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

get_business_detailB

Get full details for a business including officers, addresses, and registered agent.

ParametersJSON Schema
NameRequiredDescriptionDefault
stateYes
entity_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior2/5

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

No annotations provided, so description carries full burden. It only states output contents but does not disclose any side effects, permissions, rate limits, caching, or whether it is read-only. Minimal disclosure beyond the obvious.

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?

Description is a single, front-loaded sentence with no filler. Every word adds value, stating purpose and key output components.

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

Completeness2/5

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

Tool has output schema and no annotations. Description covers output partially but omits input parameters entirely. For a 2-param tool with 0% schema coverage, this is incomplete; the agent would need to guess parameter meaning.

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

Parameters1/5

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

Schema description coverage is 0%, but the description adds no meaning for the two parameters (state, entity_id). It does not explain required nature, format, or examples. Completely fails to compensate for missing schema descriptions.

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 clearly states the tool retrieves full details for a specific business, listing example details (officers, addresses, registered agent). It distinguishes itself from siblings like search_businesses (which lists businesses) and get_new_formations (new formations).

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?

Implied usage: use after obtaining an entity_id and state. No explicit guidance on when to prefer this over check_usage or search_businesses, nor any exclusions or prerequisites mentioned.

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

get_new_formationsB

Get businesses formed since a given date (YYYY-MM-DD). Useful for sales prospecting.

ParametersJSON Schema
NameRequiredDescriptionDefault
sinceYes
stateNo
limitNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

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

No annotations provided. Description lacks disclosure of behavior like pagination, error handling, or default limit effects. Only mentions date format.

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?

Two sentences, front-loaded with purpose and usage context. No redundant or unnecessary words.

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

Completeness2/5

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

Despite an output schema, description is too brief for a 3-parameter tool. Doesn't explain what the returned data contains or how parameters interact.

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?

Adds meaning for 'since' parameter (YYYY-MM-DD format) but does not explain 'state' (unclear filter) or 'limit' (default 100). Incomplete coverage for 0% schema coverage.

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?

Name and description align: 'Get businesses formed since a given date' clearly indicates retrieving new formations. Useful for sales prospecting. Distinct from siblings like search_businesses or get_business_detail.

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?

Only mentions 'useful for sales prospecting,' implying context but no explicit when-to-use or when-not-to-use compared to siblings.

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

search_businessesC

Search for businesses by name across NY, FL, and CO state filings.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
stateNo
limitNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It only states that the tool searches filings, but does not mention any side effects, required permissions, rate limits, or output characteristics (despite an output schema existing). The lack of read-only indication or result format is a gap.

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 description is a single, clear sentence that front-loads the key purpose. It contains no redundant words. However, it could be more structured by explaining parameters explicitly, but given its brevity, it earns a 4.

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

Completeness2/5

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

Given three parameters and no annotations, the description is incomplete. It fails to explain the state parameter's options, the default limit, and the structure of output (even though an output schema exists). Essential details for correct tool usage are missing.

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?

Since schema description coverage is 0%, the description must compensate. It adds partial meaning for the 'query' parameter (search by name) and implies the 'state' parameter through 'across NY, FL, and CO', but does not explain that state can be null for all states or specify valid values. The 'limit' parameter is completely undocumented.

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 the tool's purpose: searching for businesses by name within filings from three specific states (NY, FL, CO). While sibling tools have distinct names (check_usage, get_business_detail, get_new_formations), the description does not explicitly differentiate from them, but the purpose is specific and actionable.

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?

The description lacks guidance on when to use this tool versus alternatives. It does not mention any conditions, prerequisites, or exclusions. For example, it does not suggest using get_business_detail after finding a business, nor does it explain when to prefer the sibling tools.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updatesv0.1.0
    • First observedcheck_usage
    • First observedget_business_detail
    • First observedget_new_formations
    • First observedsearch_businesses

TDQS

A3.6/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: check_usage for API limits, get_business_detail for full business info, get_new_formations for date-based listings, search_businesses for name search. No overlap or ambiguity.

Naming Consistency5/5

All tools use consistent snake_case verb_noun pattern (check_usage, get_business_detail, get_new_formations, search_businesses). The naming is predictable and clear.

Tool Count5/5

4 tools are well-scoped for a business filings API covering search, detail retrieval, date-based listing, and usage monitoring. It's neither too few nor too many.

Completeness4/5

The domain of business filings is adequately covered for read operations. Missing advanced filtering (e.g., by state or entity type) but core prospecting workflows are supported.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Search companies, officers, and filing history across 140+ jurisdictions worldwide using the OpenCorporates API.
    5
    20 npm
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables automated company formation across multiple jurisdictions with REST and MCP interfaces. Supports jurisdiction listing, requirement details, cost estimation, and secure API key management.
    -
  • A
    license
    A
    quality
    B
    maintenance
    Exposes 29 official business-registry actors as MCP tools for KYC/AML, beneficial-owner (UBO), credit-risk and adverse-media workflows across 11 jurisdictions (EU, US, UAE). Sourced via Apify; pay-per-result.
    38
    6
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to verify and search business entities across US state and international company registries, providing real-time confirmation of legal existence, status, and filings.
    9
    MIT