AlexCredit - Kazakhstan Microfinance Catalog
Server Details
Read-only MCP server for the catalog of licensed Kazakhstan microfinance organizations (MFOs) from alexcredit.kz: microloan terms for new and repeat clients, effective annual rate, legal data with ARDFM license and register link, borrower ratings and reviews. Remote Streamable HTTP endpoint, no authentication, 7 tools.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clearly distinct role: listing vs fetching categories, listing vs fetching MFOs, fetching reviews, searching offers by filters, and retrieving legal context. The descriptions explicitly cross-reference related tools, so an agent should not confuse them.
All tool names follow a consistent snake_case verb_noun pattern: get_ for single resources, list_ for collections, and search_ for filtered queries. This makes the API predictable and easy to navigate.
Seven tools is well-scoped for a catalog server: two for categories, two for MFO listings/details, one for reviews, one for filtered search, and one for regulatory context. Each tool earns its place without redundancy or bloat.
The tool surface covers the full read-only lifecycle of the domain: exploring categories, searching offers, listing MFOs, retrieving detailed MFO cards, reading reviews, and understanding the legal framework. There are no obvious dead ends or missing operations for the stated purpose.
Available Tools
7 toolsget_categoryAInspect
Одна тематическая подборка каталога по slug. Возвращает title, canonical_url, criterion (признак попадания МФО), sorting (по позиции в каталоге, задаётся редакцией сайта), total и offers: для каждой МФО name, slug, диапазоны суммы и срока, ставка, rating_average и canonical_url карточки. Если подборки с таким slug нет, ответ помечен isError с текстом «Не найдено». Используйте, когда вопрос совпадает с готовой подборкой (например, микрокредиты пенсионерам); подбор под конкретную сумму и срок — search_offers, полная карточка МФО — get_mfo.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Slug подборки, латиницей, как в адресе https://alexcredit.kz/{slug}, например «zaim-na-kartu». Берите из ответа list_categories, не угадывайте. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It openly describes the return structure and explicitly documents the error case (isError with 'Не найдено' when the slug does not exist). It could additionally state that the operation is read-only with no side effects, but the content makes this clear enough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, followed by a compact enumeration of return fields, the error condition, and routing guidance. Every sentence earns its place, and the field list is detailed without being padded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter lookup with no output schema and no annotations, the description is remarkably complete: it covers the input, return payload, error behavior, and when to prefer sibling tools. An agent can invoke and interpret this tool correctly without additional clarification.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 tool description only restates that lookup is by slug and does not add format examples or constraints beyond what the schema already provides. This is acceptable because the schema fully documents the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Одна тематическая подборка каталога по slug', which clearly identifies the tool as a single-category retrieval by slug. It enumerates the specific returned fields, distinguishing it from list_categories (plural) and from search_offers/get_mfo, which it explicitly names.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It states exactly when to use the tool: when the question matches a ready-made catalog collection, with the example 'микрокредиты пенсионерам'. It also names the alternatives for other cases: search_offers for amount/term-based selection and get_mfo for a full MFO card, leaving no ambiguity about routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_market_rulesAInspect
Правовой контекст микрокредитов в Казахстане на дату последней редакционной проверки: регулятор АРРФР и лицензирование, предельная ГЭСВ 46% годовых, особый режим коротких микрокредитов (до 45 МРП и 45 дней: не выше 0,3% в день, ГЭСВ до 179%), МРП текущего года, добровольный отказ от кредитов через eGov, признаки нелегальных кредиторов. Параметров нет. Возвращает country, reviewed_at (дата проверки — сверяйте актуальность), summary (краткий абзац), details_markdown (подробные факты) и source. Используйте для вопросов о законности ставок, лимитах и защите заёмщика; данные конкретной МФО — get_mfo.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden. It discloses that the legal context is 'as of the date of the last editorial review' and explicitly instructs the agent to verify reviewed_at for currency. It also states there are no parameters and enumerates the returned fields. It does not explicitly label the tool as read-only, but the informational nature is strongly implied by the content and return values.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the primary domain, then states parameter absence, describes return fields, and concludes with usage guidance and the sibling pointer. It is dense but information-rich; the long list of specific legal facts (46%, 0.3%, 179%, 45 МРП, 45 days) helps the agent judge scope, though the single-block format could be more scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless tool with no output schema, the description is complete: it lists every returned field (country, reviewed_at, summary, details_markdown, source), explains the date-relevance caveat, and specifies the intended use cases. The explicit pointer to get_mfo rounds out the contextual picture, so nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the description explicitly says 'Параметров нет' (no parameters). Since the schema coverage for the empty parameter set is trivially 100%, the baseline for 0 parameters is 4, and no further parameter documentation is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states precisely that the tool provides the legal context of microcredits in Kazakhstan and enumerates the concrete topics it covers: regulator ARRFR, licensing, maximum GESV of 46%, the special regime for short microcredits, MPP value, voluntary refusal via eGov, and signs of illegal lenders. It also explicitly contrasts itself with get_mfo, which provides data on a specific MFO, so an agent can distinguish it from siblings immediately.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives direct usage instructions: 'Use for questions about the legality of rates, limits, and borrower protection; data on a specific MFO — get_mfo.' This names the exact use cases and the sibling alternative, leaving no ambiguity about when to choose this tool vs. alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_mfoAInspect
Полная карточка одной МФО по slug. Возвращает условия для новых и повторных клиентов (сумма, срок, ставка, ГЭСВ), сводку (диапазоны, льготные дни, first_loan_zero_percent: true/false/null, где null = не подтверждено, время решения, работа 24/7), требования к заёмщику, комиссии, рейтинг по 4 критериям с числом отзывов, юридические данные (юрлицо, БИН, номер лицензии АРРФР и legal.license_registry_url — прямая ссылка на запись организации в реестре лицензий регулятора, первоисточник для проверки легальности) и дату актуализации записи. Если slug не существует, ответ помечен isError с текстом «Не найдено». Отзывы — через get_reviews. При использовании данных ссылайтесь на canonical_url.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Идентификатор МФО в каталоге, латиницей, как в адресе https://alexcredit.kz/mfo/{slug}, например «kviku». Берите из ответов list_mfo, search_offers или get_category, не угадывайте. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full disclosure burden. It explains error behavior for a non-existent slug, clarifies the null meaning of first_loan_zero_percent, highlights the regulator registry link as a primary source, and lists the returned data areas. It does not mention permissions or side effects, but it is a read-style endpoint and no mutation is suggested.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but information-dense, and every listed item contributes because there is no output schema to document return values. It is front-loaded with the core purpose, then expands into well-grouped return categories. Slightly run-on, but justified by the complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema, the description does substantial work by enumerating the main result categories, error behavior, null semantics, and source-attribution requirement. It could be more complete with exact field types or value formats, but it is sufficient for an agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the sole parameter slug at 100% coverage, including its format, example, and instruction to derive it from list_mfo, search_offers, or get_category. The description only restates 'по slug' and adds no additional meaning beyond the schema, so the baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies a precise resource and scope: 'Полная карточка одной МФО по slug'. It clearly differentiates this from list/search endpoints and explicitly points to get_reviews for reviews, so the agent knows exactly what this tool does and what it is not.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states that reviews should be fetched through get_reviews, which is an explicit alternative. It also implies use when a complete single-MFO card is needed, though it does not explicitly contrast with list_mfo, get_category, or search_offers in the description itself.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_reviewsAInspect
Последние отзывы заёмщиков об одной МФО по slug — только публичные отзывы, опубликованные на сайте. Возвращает mfo_slug, canonical_url карточки, total (сколько отзывов всего) и reviews от новых к старым: author, rating (оценка от 1 до 5), date, text. Если отзывов ещё нет, reviews пустой и total равен 0 — это не низкая оценка. Если slug не существует, ответ помечен isError с текстом «Не найдено». Используйте для вопросов о репутации и опыте клиентов; сводный рейтинг и условия — get_mfo.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Slug МФО, как в get_mfo (например «kviku»). Берите из ответов list_mfo, search_offers или get_category. | |
| limit | No | Сколько последних отзывов вернуть, от 1 до 50. По умолчанию 10. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does so well: it discloses that only public site-published reviews are returned, the new-to-old sort order, the empty-reviews/total=0 case, and the isError response for a nonexistent slug. These are exactly the behavioral quirks an agent needs to interpret results correctly.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The purpose is front-loaded and every sentence carries information: scope, return shape, edge cases, and routing. It is somewhat dense, but not padded; the small structural loss is from packing many facts into one paragraph.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, so the description must document the return shape and result semantics. It lists all returned fields, explains total/reviews behavior, defines rating scale, covers the not-found error, and gives a selection rule—complete for a read-only lookup tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description mentions slug and review count only in passing; the schema already defines slug provenance and the limit range/default, so no compensation is required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource: returns the latest public borrower reviews for one MFO by slug. It also names the distinguishing output fields and points to get_mfo for summary ratings, so an agent can tell this tool apart from the sibling suite.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says to use it for reputation and customer-experience questions and routes summary rating/conditions to get_mfo. It does not enumerate exclusions against every sibling, but the main alternative is named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesAInspect
Все тематические подборки (витрины) каталога, сгруппированные по секциям: популярные, по способу получения, по сумме и сроку, по категориям заёмщиков и прочие. Параметров нет. Возвращает sections[], в каждой categories: title, slug, criterion (фактический признак отбора МФО в подборку, без обещаний одобрения) и canonical_url страницы. Используйте, чтобы найти slug подборки для get_category или предложить пользователю страницу под его ситуацию (например, микрокредит с плохой кредитной историей); фильтрация по конкретной сумме и сроку — search_offers.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It states that the tool takes no parameters, returns a sections[] structure, and clarifies that the 'criterion' field is the actual MFO selection sign without promising approval. It does not mention ordering or pagination, but for a zero-parameter listing the key behavioral details are covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with purpose, then provides the return structure and usage guidance, all without redundant filler. Every clause earns its place, and the text remains compact despite covering grouping, output fields, and sibling routing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with no output schema, the description is complete: it specifies the return structure (sections[] with categories containing title, slug, criterion, canonical_url), defines the criterion field, and gives concrete usage scenarios with sibling routing. Nothing 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.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the description explicitly states 'Параметров нет' (no parameters), eliminating any risk of an agent inventing arguments. The empty input schema is consistent with this, and no further parameter semantics are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear statement of what the tool returns: all thematic catalog collections grouped by sections, enumerating the grouping dimensions (popular, by method, by amount/term, by borrower category, etc.). It uses a specific verb ('list') and resource ('categories'), and distinguishes itself from get_category by framing itself as the way to obtain collection slugs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly gives use cases: to find a slug for get_category or to suggest a page matching a user's situation, with a concrete example ('microcredit with bad credit history'). It also names the alternative search_offers when the need is filtering by specific amount and term, making the routing explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_mfoAInspect
Список всех МФО каталога AlexCredit (Казахстан) с рейтингом заёмщиков. Возвращает total и массив mfos, отсортированный по позиции в рейтинге (при равенстве — по средней оценке): name, slug, rating_position, rating_average (поле отсутствует, если отзывов ещё нет — это не низкая оценка), rating_count, диапазоны суммы и срока, ставка и canonical_url карточки. Используйте для обзора рынка и получения slug; условия конкретной МФО — get_mfo, подбор по сумме и сроку — search_offers. При использовании данных ссылайтесь на canonical_url.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Сколько МФО вернуть, от 1 до 100. По умолчанию 50. Поле total в ответе всегда содержит общее число МФО в каталоге. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden and handles it well: it discloses the response shape (total and mfos array with fields), the sorting rule, and the important nuance that rating_average is absent when there are no reviews and this is not a low rating. The canonical_url attribution note adds further behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and information-dense: purpose and return structure come first, followed by usage routing and attribution. Every sentence adds value; there is no repetition or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema and annotations, the description compensates by specifying the full response fields, sort order, missing-field semantics, and sibling routing. Combined with the fully described limit parameter, an agent has everything needed to call and interpret the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter, limit, is fully described inside the input schema, including range, default, and the fact that total always contains the full count. The description itself adds no extra parameter-level detail, so the baseline 3 applies due to 100% schema description coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists all MFIs in the AlexCredit Kazakhstan catalog with borrower ratings, and enumerates the exact returned fields and sort order. It also names get_mfo and search_offers as alternatives, so the agent can distinguish it from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says to use this tool for market overview and obtaining slugs, and directs to get_mfo for specific MFI terms and search_offers for amount/term matching. This is a crisp when-to-use vs. alternatives statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_offersAInspect
Подбор МФО под запрос заёмщика по сумме, сроку и признаку «первый микрокредит под 0,01%». Фильтрует условия для новых клиентов: МФО попадает в ответ, если запрошенные сумма и срок входят в её диапазоны; без фильтров возвращает весь каталог. Порядок — по позиции в рейтинге. Возвращает query, total (сколько МФО подошло всего), truncated (true, если вернули не всех — увеличьте limit) и offers: name, slug, диапазоны суммы и срока, ставка, interest_free_days, first_loan_zero_percent (true/false/null, null = не подтверждено), rating_average, canonical_url. Пустой offers при total 0 означает, что под фильтры никто не подошёл — ослабьте сумму или срок. Используйте для вопросов «где взять N тенге на M дней»; готовые тематические подборки — get_category, карточка одной МФО — get_mfo. Условия волатильны, финальные — на canonical_url.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Максимум предложений в ответе, от 1 до 100. По умолчанию 15. Если в ответе truncated = true, повторите запрос с большим limit. | |
| amount | No | Желаемая сумма микрокредита в тенге (₸), целое число не меньше 1, например 100000. Без параметра сумма не фильтруется. | |
| term_days | No | Желаемый срок в календарных днях, целое число не меньше 1, например 30. Без параметра срок не фильтруется. | |
| first_loan_zero | No | true — оставить только МФО с подтверждённым первым микрокредитом под 0,01% (есть льготные дни или нулевая ставка для новых клиентов). false или отсутствие — не фильтровать по этому признаку. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explains filtering behavior, ordering by rating, the meaning of total and truncated, the shape and semantics of offers, and the null interpretation for first_loan_zero_percent. This is detailed and transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is information-dense without being bloated. It opens with the core purpose, then methodically covers filtering logic, ordering, output fields, and edge-case guidance. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema and no annotations, the description fully compensates by listing the exact response fields, explaining truncated behavior, and clarifying the empty-offers case. An agent has enough information to call the tool correctly and interpret its results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers all parameters, so the baseline is 3. The description adds value by explaining how parameters affect results: MFOs are returned only if the requested amount and term fall within their ranges, and first_loan_zero filters only confirmed zero-rate offers. This goes beyond the basic schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool's function: selecting microfinance organizations (МФО) based on loan amount, term, and first-loan zero-rate flag. It is specific and understandable, but it does not explicitly differentiate this tool from siblings like list_mfo or get_mfo.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit use context: "Используйте для вопросов «где взять N тенге на M дней»." It also provides practical advice for edge cases, such as increasing limit when truncated is true and relaxing filters when no offers match. It does not, however, state when to prefer a sibling tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
- Changed
get_category1 field changed- added
Input schema / properties / slug / descriptionAdded value: +"Slug подборки, латиницей, как в адресе https://alexcredit.kz/{slug}, например «zaim-na-kartu». Берите из ответа list_categories, не угадывайте."
- Changed
get_mfo1 field changed- added
Input schema / properties / slug / descriptionAdded value: +"Идентификатор МФО в каталоге, латиницей, как в адресе https://alexcredit.kz/mfo/{slug}, например «kviku». Берите из ответов list_mfo, search_offers или get_category, не угадывайте."
- Changed
get_reviews2 fields changed- added
Input schema / properties / limit / descriptionAdded value: +"Сколько последних отзывов вернуть, от 1 до 50. По умолчанию 10." - added
Input schema / properties / slug / descriptionAdded value: +"Slug МФО, как в get_mfo (например «kviku»). Берите из ответов list_mfo, search_offers или get_category."
- Changed
list_mfo1 field changed- added
Input schema / properties / limit / descriptionAdded value: +"Сколько МФО вернуть, от 1 до 100. По умолчанию 50. Поле total в ответе всегда содержит общее число МФО в каталоге."
- Changed
search_offers4 fields changed- added
Input schema / properties / amount / descriptionAdded value: +"Желаемая сумма микрокредита в тенге (₸), целое число не меньше 1, например 100000. Без параметра сумма не фильтруется." - added
Input schema / properties / first_loan_zero / descriptionAdded value: +"true — оставить только МФО с подтверждённым первым микрокредитом под 0,01% (есть льготные дни или нулевая ставка для новых клиентов). false или отсутствие — не фильтровать по этому признаку." - added
Input schema / properties / limit / descriptionAdded value: +"Максимум предложений в ответе, от 1 до 100. По умолчанию 15. Если в ответе truncated = true, повторите запрос с большим limit." - added
Input schema / properties / term_days / descriptionAdded value: +"Желаемый срок в календарных днях, целое число не меньше 1, например 30. Без параметра срок не фильтруется."
7 tool updates
- First observed
get_category - First observed
get_market_rules - First observed
get_mfo - First observed
get_reviews - First observed
list_categories - First observed
list_mfo - First observed
search_offers
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.MIT

industrylens-mcpofficial
AlicenseNot gradedqualityBmaintenanceBrowse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.MIT- AlicenseNot gradedqualityCmaintenanceEnables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.MIT
- AlicenseAqualityAmaintenanceDetects hiring intent signals by scanning job boards for specific companies. Returns structured role data for outbound sales targeting.11961MIT