Skip to main content
Glama

FinBridge

Compare KR vs US Company Financials

compare_financials_kr_us
Read-only

Compare annual financial statements of a Korean listed company (source: OpenDART, K-IFRS) and a US listed company (source: SEC EDGAR, US-GAAP) side by side, with KRW values converted to USD using FRED DEXKOUS annual-average exchange rates.

Args:

  • kr_company: Korean company name / 6-digit stock code / DART corp_code (e.g. '삼성전자', '005930')

  • us_company: US ticker / name / CIK (e.g. 'AAPL', 'Apple')

  • years: number of recent fiscal years, 1-5 (default 3)

  • metrics: subset of [revenue, gross_profit, operating_income, net_income, eps_diluted, assets, liabilities, equity, cash_and_equivalents, operating_cash_flow]

  • response_format: 'markdown' (default) or 'json'

Returns per-metric, per-year rows: {fiscal_year, kr_krw, kr_usd, us_usd, ratio_kr_over_us} plus the FX rates used and accounting-basis caveats.

Examples:

  • "삼성전자 vs Apple 최근 3년 매출·영업이익 비교" -> {kr_company:'삼성전자', us_company:'AAPL', metrics:['revenue','operating_income']}

  • Don't use for quarterly data (annual only) or non-KR/US companies.

Errors: unknown company names suggest using search_dart_company / search_edgar_company first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearsNoHow many recent fiscal years to compare (default 3)
metricsNoMetrics to compare (default: revenue, operating_income, net_income, assets, equity). Available: revenue, gross_profit, operating_income, net_income, eps_diluted, assets, liabilities, equity, cash_and_equivalents, operating_cash_flow
kr_companyYesKorean company: name (e.g. '삼성전자'), 6-digit stock code (e.g. '005930'), or 8-digit DART corp_code
us_companyYesUS company: ticker (e.g. 'AAPL'), company name, or CIK
response_formatNo'markdown' for tables, 'json' for compact machine-readable outputmarkdown

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
fxNo
krYes
usYes
notesNo
metricsNo
comparisonYes

Schema Changelog

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

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true, but that only covers side-effect safety. The description adds valuable behavioral context beyond annotations: KRW-to-USD conversion using FRED annual-average rates, the output row structure (per-metric, per-year with kr_krw, kr_usd, us_usd, ratio), the FX rates used, accounting-basis caveats, and the default metrics list. It does not explicitly say it makes network calls to multiple sources, but the source naming implies this adequately.

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 well-organized with a clear opening sentence, a concise args list, a return-format summary, concrete examples, and an exclusions/error section. It earns its length because it packs essential routing and usage information. Slightly lower than 5 because the args list partially duplicates the schema, but the duplication is acceptable for readability.

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's complexity (cross-source data retrieval, FX conversion, multi-year, multi-metric comparison), the description covers nearly everything an agent needs: what it compares, what it returns, the identifiers it accepts, the annual-only limitation, and a fallback path to sibling search tools. The output schema exists, so the description correctly avoids restating return values field-by-field. It doesn't mention pagination or rate limits, but that is not critical for a comparison 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?

Schema coverage is 100%, so the schema already thoroughly documents all five parameters. The description adds meaningful semantics on top: it clarifies the accepted identifier formats for kr_company (name / stock code / corp_code) and us_company (ticker / name / CIK), gives concrete example values, and explains how response_format affects output. It also lists the default metrics, which are not fully enumerated in the schema. This goes beyond the schema's mechanical 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 specifies the action (compare), the two resources (KR and US company financials), the data sources (OpenDART, SEC EDGAR), accounting standards (K-IFRS, US-GAAP), and the FX conversion method (FRED DEXKOUS). It distinguishes itself from the individual get_dart_financials and get_edgar_financials siblings by focusing on cross-market comparison.

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?

The description explicitly states what the tool is for, provides concrete input examples, and adds crucial exclusions: 'Don't use for quarterly data (annual only) or non-KR/US companies.' It also gives error handling guidance ('unknown company names suggest using search_dart_company / search_edgar_company first'), which helps an agent choose between this tool and the sibling search tools.

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.

Resources