Skip to main content
Glama
meritz-securities

meritz-mcp

Official

메리츠 기준정보

meritz_reference
Read-onlyIdempotent

Get domestic and overseas market reference data: trading days, market hours, and exchange info. Select an API via api_type, pass params, or use 'describe' for parameter descriptions.

Instructions

메리츠 Open API — 기준정보 (5건). api_type 으로 호출할 API 를 고르고 params 에 파라미터를 넣습니다. api_type='describe' 로 부르면 파라미터 설명을 돌려줍니다.

ref_market_days GET 국내 영업일 조회 ref_market_hours GET 국내 장운영 조회 ref_ovs_exchanges GET 해외 거래소 조회 ref_ovs_market_days GET 해외 영업일 조회 ref_ovs_market_hours GET 해외 장운영 조회

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsNo
api_typeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.8/5.0
Behavior4/5

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

The description clearly discloses dispatcher-style behavior: api_type selects one of five GET endpoints, and api_type='describe' returns parameter explanations. This aligns with the annotations (readOnlyHint, idempotentHint, destructiveHint=false) and adds useful behavioral context beyond the schema, though it omits details like error behavior or rate limits.

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 compact and efficient: two short prose lines plus a clearly aligned five-row table. The routing instruction is front-loaded, and every line contributes useful information without repetition or filler.

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?

For a read-only router with an output schema, the description provides the essential operation list, HTTP verbs, and a self-describe fallback for parameter details. The main gap is the absence of per-endpoint parameter examples, but the describe mode mitigates this and allows an agent to discover the details at runtime.

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?

With 0% schema description coverage, the description partially compensates by explaining that api_type selects the endpoint and params holds parameters, and by pointing to the describe mode for parameter details. However, it does not document the actual parameters for each of the five endpoints, so an agent must call describe to learn the exact parameter names and formats.

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 identifies the resource as reference data and enumerates five concrete GET operations with clear labels (domestic/overseas market days, market hours, and exchanges). It is specific enough to distinguish the tool from trading or account tools, though it does not explicitly contrast it with siblings like meritz_info or meritz_market.

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?

The description explains the routing mechanics: choose an API via api_type and supply params. It does not explicitly state when to use meritz_reference versus alternative sibling tools, but the listed operation names strongly imply it is for static reference lookups such as market days and exchange lists.

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