Skip to main content
Glama

get_reviews

Последние отзывы заёмщиков об одной МФО по slug — только публичные отзывы, опубликованные на сайте. Возвращает mfo_slug, canonical_url карточки, total (сколько отзывов всего) и reviews от новых к старым: author, rating (оценка от 1 до 5), date, text. Если отзывов ещё нет, reviews пустой и total равен 0 — это не низкая оценка. Если slug не существует, ответ помечен isError с текстом «Не найдено». Используйте для вопросов о репутации и опыте клиентов; сводный рейтинг и условия — get_mfo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesSlug МФО, как в get_mfo (например «kviku»). Берите из ответов list_mfo, search_offers или get_category.
limitNoСколько последних отзывов вернуть, от 1 до 50. По умолчанию 10.

Schema Changelog

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

  1. Changed2 schema fields changed
    • addedInput schema / properties / limit / description
      Added value: +"Сколько последних отзывов вернуть, от 1 до 50. По умолчанию 10."
    • addedInput schema / properties / slug / description
      Added value: +"Slug МФО, как в get_mfo (например «kviku»). Берите из ответов list_mfo, search_offers или get_category."
  2. First observed

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations present, the description carries the full behavioral burden and meets it: it discloses the exact return shape (mfo_slug, canonical_url, total, reviews ordered new-to-old with author/rating/date/text), and guards against misinterpretation for both edge cases — empty reviews means total=0 and 'это не низкая оценка', and a nonexistent slug yields isError with 'Не найдено'. The read-only nature is conveyed through 'Возвращает' and the edge-case handling.

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 longer than minimal, but every sentence earns its place: scope, return format, two edge-case clarifications, and usage routing to get_mfo. The core purpose is front-loaded in the first clause. It is appropriately sized for a tool with no output schema, though the middle field enumeration is dense and could be slightly more compact.

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?

Since there is no output schema, the description must explain return values, and it does so comprehensively: all fields, ordering, and both edge cases are covered. It also includes sibling routing and notes where the slug should come from. For a 2-parameter read tool, nothing essential an agent needs to call it 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 baseline is 3. The description reinforces the slug parameter's role ('по slug') and the new-to-old ordering that affects limit, but it does not add syntax or format details beyond what the schema already documents for either slug or limit. The schema does the heavy lifting here.

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 opens with a specific verb+resource: 'Последние отзывы заёмщиков об одной МФО по slug' — fetching recent borrower reviews for a single MFO identified by slug, and further narrows scope to public, site-published reviews only. It explicitly differentiates from get_mfo by stating that summary rating and terms belong to that sibling, so an agent can disambiguate without opening the schema.

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?

Provides explicit when-to-use guidance: 'Используйте для вопросов о репутации и опыте клиентов' (use for reputation and client-experience questions). It also gives a clear exclusion by routing 'сводный рейтинг и условия — get_mfo' (summary rating and conditions → get_mfo), naming the specific alternative and the condition that selects it.

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.

TDQS

A4.7/5.0
Disambiguation5/5

Each tool targets a distinct purpose: list_categories/get_category pair covers thematic collections, list_mfo/get_mfo cover the MFO catalog, search_offers handles parametric filtering, get_reviews is for reviews, and get_market_rules for legal context. Cross-references between tools clarify boundaries and reduce the chance of misselection.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: list_* for collection endpoints and get_* for single-entity endpoints, with search_offers used for filtering. The naming clearly signals the tool's operation and resource.

Tool Count5/5

Seven tools is well-scoped for a read-only MFO catalog: listing, detail, thematic categories, search, reviews, and legal rules each map to a necessary user-facing function. No tool feels redundant or missing at the top level.

Completeness5/5

The server provides full coverage for a comparison catalog: browse all MFOs, view individual MFO details, search by amount/term, browse and retrieve thematic categories, access reviews, and check regulatory context. The only missing operations are write/modify actions, which are not part of a catalog server's intended read-only scope.