Skip to main content
Glama
konstantinmk

market-mcp

by konstantinmk

get_payouts

Read-onlyIdempotent

Get dividend or coupon payout amounts and dates for a security by ticker, with optional date range and trading board.

Instructions

Дивиденды по акции или купоны по облигации: суммы на одну бумагу, даты отсечки и выплаты.

    По умолчанию — от года назад до года вперёд, включая объявленные будущие выплаты.
    Дивиденды требуют токен T-Invest; купоны доступны и через MOEX ISS.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardNoРежим торгов (class code): TQBR, TQCB, TQOB, TQTF, CETS, SPBFUT. Нужен только если тикер неоднозначен.
tickerYesТикер или SECID: SBER, SU26238RMFS4, CNYRUB_TOM, IMOEX.
date_toNoКонец периода, по умолчанию год вперёд.
date_fromNoНачало периода, по умолчанию год назад.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false. The description adds the default date range, inclusion of future announced payments, and the token/ISS access nuance, which is valuable behavioral context beyond the annotations.

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?

Two concise sentences that front-load the core purpose and then add essential behavioral details. No fluff; every sentence earns its place.

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?

With an output schema present and the description covering purpose, defaults, and access requirements, an agent has everything needed to correctly invoke the tool. No critical gaps.

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 coverage is 100%, with each parameter clearly described (ticker, board, date_from, date_to). The description does not add extra meaning about parameters beyond what the schema provides, so baseline 3 is appropriate.

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 clear purpose: retrieving dividends or coupons, specifying amounts per security, record dates, and payment dates. It uses a specific verb and resource, and clearly distinguishes this tool from sibling market data tools like get_quote or get_candles.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides context on default time range (year back to year ahead) and access requirements (T-Invest token for dividends, MOEX ISS for coupons). It does not explicitly contrast with alternatives, but the purpose is unambiguous enough for an agent to know when to use it.

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