Skip to main content
Glama

FinBridge

Disclosure Feed (FinBridge DB)

get_disclosure_feed
Read-only

Recent regulatory disclosures from the local finbridge database (filings table, refreshed nightly + intraday for KR), newest first — positioned as a faster-than-news primary source. By default returns only MATERIAL filings: US Form 8-K (current reports) and KR 주요사항보고서 (major events: capital raises, M&A, convertible bonds, buybacks, etc.).

Args:

  • market: 'kr' (DART), 'us' (EDGAR), or 'all' (default)

  • company: optional — restrict to one company (US ticker, KR 6-digit code, or name)

  • material_only: default true (8-K / KR type-B only); false = all filing types

  • forms: optional explicit form_type filter (e.g. ['10-K','8-K'] or ['A','B']); overrides material_only

  • days: look-back window in days, 1-120 (default 14); or use from/to

  • from/to: optional explicit YYYY-MM-DD range (overrides days)

  • limit: 1-100 (default 30); response_format: 'markdown'|'json'

Returns: {count, market, since, rows:[{source, company_name, form_type, title, filed_date, url, items?}]}. 'items' (8-K item codes) is included when available.

Examples:

  • Latest US material events this week: {market:'us', days:7}

  • Samsung's recent major-event filings: {company:'005930', material_only:true, days:90}

  • All of a company's filings: {company:'AAPL', material_only:false}

Use when: scanning for catalysts / breaking corporate events, or one company's recent filings. Don't use for filing BODIES (open the url) or for financial statement values (get_dart_financials / get_edgar_financials / query_db). Notes: Filing metadata only; bodies are at the linked source URLs. Not investment advice. Errors: empty result is not an error (count 0).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoExplicit end date YYYY-MM-DD
daysNoLook-back window in days (default 14)
fromNoExplicit start date YYYY-MM-DD (overrides days)
formsNoExplicit form_type filter; overrides material_only
limitNoMax rows (default 30)
marketNoMarket: 'kr', 'us', or 'all' (default)all
companyNoOptional company filter: US ticker, KR 6-digit code, or name
material_onlyNoOnly material filings (US 8-K / KR type-B). Default true
response_formatNo'markdown' or 'json'markdown

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
rowsYes
countYes
sinceNo
marketNo
companyNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds meaningful context: 'refreshed nightly + intraday for KR', 'Filing metadata only; bodies are at the linked source URLs', and error handling ('empty result is not an error'). This goes beyond annotations without contradicting them, though it doesn't exhaustively detail all behaviors.

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 long but well-structured: purpose first, then Args, Returns, Examples, Use/Don't use, Notes, Errors. Every section earns its place, with no fluff. Front-loaded with the core purpose and scoping, making it easy for an agent to quickly grasp the tool's role and call it correctly.

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?

Given 9 optional parameters, interactions, and an output schema, the description covers everything an agent needs: return format, filtering semantics, examples, usage guidance, and error handling. It also differentiates from numerous siblings. No critical gaps remain for correct invocation.

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 coverage is 100%, so the schema documents each parameter. However, the description adds valuable interactions: material_only default behavior (8-K / KR type-B), forms overriding material_only, and days vs from/to precedence. Examples illustrate parameter combinations, enhancing the agent's ability to use them correctly beyond schema alone.

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 states a specific verb+resource: 'Recent regulatory disclosures from the local finbridge database (filings table)'. It clearly distinguishes itself as a unified feed across KR and US markets, and explicitly contrasts with sibling tools like get_dart_filings / get_edgar_filings by positioning as a faster-than-news primary source focused on material events.

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 'Use when: scanning for catalysts / breaking corporate events, or one company's recent filings' and 'Don't use for filing BODIES (open the url) or for financial statement values (get_dart_financials / get_edgar_financials / query_db)'. Names alternative tools and provides clear conditions, leaving nothing to inference.

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.