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 Federal Reserve H.10 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.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, openWorldHint=true, so safety is covered. The description adds genuine behavioral context beyond that: the FX conversion methodology, the accounting-basis mismatch caveat, and the per-metric/per-year row shape of the response. Not fully exhaustive (no mention of rate limits or caching), but substantial added value.

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?

Front-loaded with the core purpose, then structured Args/Returns/Examples/Errors sections. There is mild redundancy between the Args block and the already-complete schema descriptions, but the examples and error guidance earn their space.

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?

An output schema exists, so return-value explanation is not required, yet the description still summarizes the row shape and the FX/caveat payload. Combined with explicit error handling and usage exclusions, nothing an agent needs to call this correctly is missing.

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?

Schema description coverage is 100%, so the schema already documents each parameter including accepted identifier formats and the metrics enum. The Args block restates these with examples but adds no semantics the schema lacks. Baseline 3 applies.

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?

States a specific verb (compare), the exact resources (annual financial statements of a Korean and a US listed company), the data sources (OpenDART/K-IFRS and SEC EDGAR/US-GAAP), and the normalization applied (KRW→USD via Fed H.10 rates). This clearly separates it from the single-market siblings get_dart_financials and get_edgar_financials.

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?

Gives explicit exclusions ('Don't use for quarterly data (annual only) or non-KR/US companies') and routes the agent to fallback tools (search_dart_company / search_edgar_company) when a name is unknown. The example query also shows a realistic invocation condition.

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.