Skip to main content
Glama
lappi

rttf-mcp

by lappi

search_tournaments

Search upcoming and past table tennis tournaments from rttf.ru using filters like city, hall, or tournament type. Get details on dates, registration, and results in one request.

Instructions

Ближайшие и недавние турниры rttf.ru по фильтрам. Один запрос.

Фильтра по датам и по названию нет: сайт закрыл оба в robots.txt. Доступны: city (как в list_players), hall_id (число из адреса зала, rttf.ru/halls/1073) и tournament_type — один из кодов сайта: s одиночные, d парные, t командные, p пинг-понг, r ракетлон, w шах-понг, v ветеранские, c детские, l лесенки, h форовые, m мини-теннис, t2/t3/t4 триатлон, d12 дуатлон.

upcoming — ближайшие турниры, past — прошедшие, от свежих к старым; в каждом списке не больше ста строк, листания нет (подгрузка на сайте идёт через закрытый адрес). Без фильтров сто прошедших покрывают примерно полтора дня; с фильтром по залу — несколько недель. upcoming_total и past_total — счётчик «итого» сайта, если он показан (в коротких отфильтрованных списках), иначе null. upcoming_truncated и past_truncated равны true, когда строк на сайте больше, чем в ответе. filters повторяет применённые фильтры (city, hall_id, tournament_type); пустые не включаются.

Строка: tournament_id, date, start_time, limit, hall_name (краткое имя зала), doubles, ladder (лесенка), live (идёт сейчас), registration_open, average_rating (null, если сайт не посчитал), registered / registration_limit, games (сыграно встреч или null).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNo
hall_idNo
tournament_typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior5/5

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

With no annotations provided, the description carries the full behavioral burden and does so thoroughly: it discloses the 100-row limit, no pagination, truncation flags, null counters, filter echo behavior, and per-field semantics like live, registration_open, and average_rating. This goes well beyond basic mutation/read labels.

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 dense and front-loaded with the core purpose, followed by structured filter and output details. It is longer than average, but every sentence carries operational value, so the length is justified.

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?

Given no annotations and no output schema, the description is unusually complete: it explains the response row fields, null semantics, truncation behavior, list ordering, coverage depths, and filter echo. An agent has nearly everything needed to invoke and interpret the tool correctly.

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?

Despite 0% schema coverage, the description provides rich semantics for all three parameters: city references list_players, hall_id gives a concrete URL example, and tournament_type enumerates all site codes with meanings. This fully compensates for the empty schema.

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 clearly identifies the tool as searching rttf.ru tournaments by filters and emphasizes 'one request' returning both upcoming and past tournaments. It does not explicitly differentiate itself from sibling get_tournament, but the 'by filters' and 'one request' phrasing makes the batch-search intent clear.

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 what filters are available and notes that date/name filters are unavailable due to robots.txt, giving useful constraints. However, it does not explicitly state when to prefer this tool over get_tournament or list_players, nor does it describe exclusion criteria for alternatives.

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