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. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, so the description needn't restate that; instead it adds valuable behavioral context: refresh cadence ('nightly + intraday for KR'), materiality defaults, override chains (forms overrides material_only, from/to overrides days), return shape, and 'empty result is not an error (count 0)'. It also notes metadata-only content and link to source URLs, which is more than the annotations carry.

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 long but well-structured, front-loading the core purpose before the Args list, and each section (Returns, Examples, Use when, Notices) earns its place. The only minor deduction is rhetorical filler like 'positioned as a faster-than-news primary source' and boilerplate 'Not investment advice', which are not strictly needed.

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?

For a tool with 9 parameters, an output schema, and many siblings, the description covers everything needed to invoke it correctly: argument semantics, defaults, overrides, return fields, examples, error behavior, and explicit routing guidance. It is hard to imagine an agent being confused after reading it.

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

Parameters5/5

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

Although schema coverage is 100%, the description enriches the params meaningfully: market maps 'kr' to DART and 'us' to EDGAR; material_only defines what counts as material (8-K / KR type-B); forms gives examples ['10-K','8-K'] / ['A','B']; from/to and days behavior with override semantics are made explicit. The usage examples tie params to real use cases.

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 opens with 'Recent regulatory disclosures from the local finbridge database' and immediately narrows to the filings table with a specific default scope (material filings: US 8-K and KR 주요사항보고서). This clearly distinguishes it from siblings like get_dart_filings/get_edgar_filings, and the 'Don't use for filing BODIES' phrase further differentiates it.

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?

It has an explicit 'Use when' section naming catalyst scanning and single-company filing review, plus explicit 'Don't use for' exclusions pointing to alternatives (get_dart_financials, get_edgar_financials, query_db). This tells an agent exactly when to pick this tool vs. others.

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
Disambiguation4/5

Most tools have clearly distinct resource+action targets, and the overlapping screen_* tools are thoroughly cross-referenced with 'use screen_X instead' guidance. Minor ambiguity exists between get_disclosure_feed, get_dart_filings, and get_dart_major_events, which all surface KR filings from different angles but remain distinguishable.

Naming Consistency5/5

Every tool follows a consistent verb_noun snake_case pattern: get_* for retrievers, screen_* for screeners, search_* for lookups, plus action verbs like analyze_, backtest_, compare_, import_, and query_. Subfamilies (dart_*, edgar_*, fred_*, crypto_*) are consistently prefixed, making tool selection predictable.

Tool Count3/5

37 tools is heavy, and the four momentum screeners (canslim/kell/minervini/schwartz) plus three KR disclosure tools could arguably be collapsed into parameterized variants. However, the server's unusually broad scope—KR/US/TW/JP/EU equities, crypto, macro, portfolio, backtesting—means most tools earn their place, so the count is high but not chaotic.

Completeness4/5

The surface covers the core workflow well: search, prices, fundamentals, filings, insider trades, valuation, screeners, backtesting, and portfolio tracking for KR/US, plus crypto and macro. Notable gaps are the lack of single-company financial-statement tools for TW/JP/EU (only available through screen_companies) and no real-time stock quotes, but these are workable for the stated local-database research purpose.

Resources