Skip to main content
Glama
rcd27

wildberries-finances-mcp-server

by rcd27

WB Finances MCP Server

MCP сервер для работы с API Wildberries Finances.

  • Описаны все ручки из OpenAPI спецификации, выставлены как Tool (src/tools/api)

  • Добавлены некоторые "кастомные" Toolы (src/tools/custom)

Установка

npm install

Related MCP server: mcp-server-wildberries

Настройка

  1. Создайте файл .env в корневой директории проекта(по примеру .env.example)

  2. Добавьте следующие переменные окружения:

    WB_FINANCES_OAUTH_TOKEN=your_oauth_token_here

Запуск

Разработка

npm run dev

Продакшн

npm run build
npm start

Дебаг

npx @modelcontextprotocol/inspector node ./build/index.js

Использование

Сервер предоставляет следующие инструменты:

  • getReportDetailByPeriod - Получение детализации по еженедельным отчётам реализации

  • getTotalCommissionByPeriod - Подсчёт отчислений в пользу WB + НДС за период

  • getDocumentCategories - Получение категорий документов

  • getDocumentList - Получение списка документов

  • downloadDocument - Загрузка одного документа

  • downloadDocumentsAll - Загрузка нескольких документов

  • generateWeeklyReport - Генерация еженедельного отчёта

Конфиг для Goose

Добавьте в конфиг Гуся(~/.config/goose/config.yaml):

  wildberries-finances-mcp:
    args:
    - /path/to/wildberries-finances-mcp-server/build/index.js
    bundled: null
    cmd: node
    description: null
    enabled: true
    env_keys: []
    envs: {}
    name: wildberries-finances-mcp
    timeout: 300
    type: stdio

Конфиг для Cline:

    "wildberries-finances-mcp": {
      "autoApprove": [],
      "disabled": false,
      "timeout": 300,
      "command": "node",
      "args": [
        "/path/to/wildberries-finances-mcp-server/build/index.js"
      ],
      "type": "stdio"
    }

Безопасность

  • API ключ должен храниться в переменных окружения

  • Не включайте файл .env в систему контроля версий

  • Используйте разные API ключи для разработки и продакшена

Available Tools

8 tools
calculateReportMetricsC

Вычисляет основные метрики по отчёту

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
rrdidNo
dateToYesRFC3339
dateFromYesRFC3339

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden. It only says 'calculates metrics', which implies a read-only operation, but it does not disclose what the output looks like, whether there are any side effects, or any constraints. This is insufficient for a tool with no other 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.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence, which is structurally fine. However, it is under-informative; it does not earn its place by conveying substantial meaning, but it is not overly verbose either.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, no annotations, and only a vague one-sentence description, the tool is not adequately described. The agent lacks information about return values, usage context, and behavior, making the description incomplete for reliable invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description does not mention any parameters, and the schema description coverage is only 50% (limit and rrdid are undocumented). The tool adds no meaning beyond the schema, leaving the agent unsure about the purpose of limit and rrdid.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('calculates') and resource ('report metrics'), so it has some clarity. However, 'основные метрики' (main metrics) is vague and does not specify which metrics, nor does it distinguish from sibling tools like getTotalCommissionByPeriod or getReportDetailByPeriod.

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

Usage Guidelines2/5

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

No guidance is given for when to use this tool versus alternatives. There is no mention of use cases, prerequisites, or exclusions, leaving the agent to guess when this is the appropriate choice.

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

downloadDocumentB

Метод загружает один документ из списка документов продавца

ParametersJSON Schema
NameRequiredDescriptionDefault
extensionYesФормат документа (например: zip, pdf, xlsx)
serviceNameYesУникальный ID документа

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are present, and the description only states the basic action. It does not disclose return format, permissions, or any side effects. The agent gets no behavioral context beyond what the name implies.

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 a single, concise sentence that is easy to parse. It wastes no words and is appropriately sized for the tool's simplicity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and no annotations, the description should explain return values or expected behavior, but it does not. The tool is simple, but the lack of response format details leaves a significant gap for the agent.

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%, with both parameters fully documented in the schema. The description adds no additional parameter meaning, 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 uses a specific verb 'downloads' and clearly states the resource 'one document from the seller's document list'. It distinguishes itself from the sibling 'downloadDocumentsAll' by emphasizing 'one' document, making the purpose 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?

Usage is implied: you use this when you need a single document, as opposed to all documents (sibling downloadDocumentsAll). However, no explicit alternatives or when-not-to-use guidance is provided.

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

downloadDocumentsAllB

Метод загружает несколько документов из списка документов продавца

ParametersJSON Schema
NameRequiredDescriptionDefault
paramsYes

TDQS

B3/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only states the action of downloading multiple documents and does not mention side effects, authentication requirements, return format, or error handling for the batch operation.

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 a single concise sentence with no unnecessary words or repetition. It efficiently communicates the core function without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has moderate complexity (batch operation with array input) and no output schema or annotations. The description lacks return value details, usage examples, and edge-case behavior, making it incomplete for an agent to fully understand the tool's behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% at the top level, and the tool description adds no parameter information. Although the schema includes descriptions for 'serviceName' and 'extension', the description does not compensate for the low coverage or clarify how to use the 'params' array structure.

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 states the tool downloads several documents from the seller's document list, using a specific verb and resource. It distinguishes from the singular sibling 'downloadDocument' by indicating it handles multiple documents, but does not explicitly name that alternative.

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 implies usage for batch document downloads via the phrase 'several documents', but it does not explicitly state when to use this tool versus alternatives like 'downloadDocument' or provide any exclusions. Usage context is present but only implicitly.

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

generateWeeklyReportC

Еженедельный отчёт по продажам и комиссиям

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
rrdidNo
dateToYesRFC3339
dateFromYesRFC3339

TDQS

C2.4/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. The description is only a noun phrase and discloses no behavioral traits, side effects, or return characteristics.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise phrase with no filler. However, it is under-specified for a tool with four parameters, making it not appropriately sized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema, no annotations, and the description is too sparse to convey the full context. The tool has four parameters and two required inputs, but the description does not explain its behavior, output, or relation to sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema describes dateFrom and dateTo as RFC3339, but limit and rrdid lack descriptions, leaving 50% coverage. The description itself provides zero parameter semantics, so agents have no help understanding limit or rrdid.

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 states 'Weekly report on sales and commissions,' which clearly identifies the tool's purpose. However, it does not differentiate from sibling tools like getTotalCommissionByPeriod or getReportDetailByPeriod, which overlap in domain.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives. No mentions of prerequisites, context, or exclusions.

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

getDocumentCategoriesC

Метод предоставляет категории документов для получения списка документов продавца

ParametersJSON Schema
NameRequiredDescriptionDefault
localeNoen

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, and the description does not disclose any behavioral details such as whether it is a read-only operation, required permissions, or any side effects. For a simple getter, it is minimally acceptable but leaves the agent without safety or side-effect information.

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 a single concise sentence with no filler content. It is efficient, though slightly under-specified.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema and no annotations. The description lacks information about return format, pagination, or how the categories should be used in conjunction with other tools. For a tool with one parameter and no output schema, it is incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has one optional parameter (locale) with no description, and the tool description does not mention it at all. With 0% schema description coverage, the description should compensate but does not.

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 states it provides document categories for obtaining a seller's document list, which identifies the resource and purpose. However, the verb 'provides' is generic and could be more specific, though it does distinguish from sibling tools like getDocumentList.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives such as getDocumentList or downloadDocumentsAll. The description implies it is a preliminary step but does not explicitly say so.

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

getDocumentListC

Метод предоставляет список документов продавца

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNocategory
orderNodesc
localeNoru
endTimeYesRFC3339`
categoryNoID [категории документов](./financial-reports-and-accounting#tag/Dokumenty/paths/~1api~1v1~1documents~1categories/get) из поля `name`
beginTimeYesRFC3339
serviceNameNoУникальный ID документа

TDQS

C2.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It does not mention pagination, filtering, return format, authentication requirements, or whether it returns metadata rather than file content. The word 'list' implies a read operation, but nothing further is disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no wasted words, making it concise. However, it is too terse for a tool with 7 parameters and no output schema, and it lacks structural elements like usage context or parameter overview.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (7 parameters, no output schema, no annotations), the description is severely incomplete. It provides only a one-line summary and fails to explain return values, filtering, sorting, pagination, or any behavioral nuances, making it inadequate for an agent to use correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds no information about the 7 parameters. The schema provides descriptions for 4 of them (beginTime, endTime, category, serviceName) but leaves sort, order, and locale undocumented. With 57% schema coverage, the description should compensate but does not mention any parameters at all.

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 says 'Метод предоставляет список документов продавца' (Method provides a list of seller's documents), which clearly states the verb (provides) and resource (list of documents). It is not a tautology and distinguishes from siblings like downloadDocumentsAll or getDocumentCategories, though it does not explicitly differentiate from them.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives. The description only states what the method does, without mentioning use cases, exclusions, or comparisons to sibling tools like downloadDocumentsAll or getReportDetailByPeriod.

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

getReportDetailByPeriodB

Метод предоставляет детализации к еженедельным отчётам реализации.

Данные доступны с 29 января 2024 года.

Важно!
Вы можете выгрузить данные в Google Таблицы

Ограничение:
Максимум 1 запрос в минуту на один аккаунт продавца

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoМаксимальное количество строк ответа (не более 100000)
rrdidNoУникальный ID строки отчёта для пагинации (начинать с 0)
dateToYesКонечная дата отчёта в формате date (например: 2024-01-31)
dateFromYesНачальная дата отчёта в формате RFC3339 (например: 2024-01-01 или 2024-01-01T00:00:00)

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses a rate limit (1 request per minute) and data availability from a specific date, which are useful behavioral traits. However, it does not mention pagination behavior, error handling, or the structure of the response, leaving some gaps.

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 moderately sized with clear sections (Important, Limitation) and useful links. Each sentence serves a purpose, and the structure aids scannability. It is slightly lengthy due to URLs but remains focused.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has four parameters and no output schema, but the schema fully documents parameters. The description adds context about weekly reports and rate limits, yet lacks guidance on pagination using 'rrdid' and does not describe the response format. It is adequate but not comprehensive for a tool of this complexity.

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?

The input schema provides 100% coverage with descriptions for all four parameters, so the baseline is 3. The description adds no additional parameter semantics beyond what the schema already states, so it neither improves nor degrades this dimension.

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 states the tool 'provides details to [weekly sales reports]', identifying the specific resource and operation. It does not explicitly differentiate from sibling tools like getTotalCommissionByPeriod, but the term 'details' helps distinguish it from other report-related tools.

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

Usage Guidelines2/5

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

The description gives no explicit guidance on when to use this tool versus alternatives. It mentions data availability and a rate limit, but these are constraints, not usage scenarios. No sibling tools are referenced for comparison.

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

getTotalCommissionByPeriodC

Подсчёт отчислений в пользу WB + НДС за период

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoМаксимальное количество строк ответа (не более 100000)
rrdidNoУникальный ID строки отчёта для пагинации (начинать с 0)
dateToYesКонечная дата отчёта в формате date (например: 2024-01-31)
dateFromYesНачальная дата отчёта в формате RFC3339 (например: 2024-01-01 или 2024-01-01T00:00:00)

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description must carry the full burden of behavioral disclosure. It doesn't mention pagination behavior (despite limit/rrdid parameters), response format, authorization needs, or any side effects. The one-line phrase leaves the agent uninformed about how the tool executes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise phrase with no filler, but it's under-specified – it reads like a title rather than a functional description. It's appropriately short but lacks structure that would help an agent parse key information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters, no output schema, and no annotations, the description is too sparse to be complete. It doesn't explain what the response contains, how pagination works, or what the calculation includes beyond the bare concept. This is a significant gap for a non-trivial reporting tool.

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 schema already documents all four parameters. The description adds no additional meaning about how parameters relate to the calculation behavior, but the schema is sufficient on its own.

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 states the tool calculates deductions (commissions) for WB plus VAT over a period, using a specific verb ('Подсчёт') and resource. It conveys the core function and differentiates from generic report tools like getReportDetailByPeriod, though it doesn't name alternatives explicitly.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus siblings such as calculateReportMetrics or getReportDetailByPeriod. The description merely states what it does without indicating selection criteria or prerequisites.

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.

  1. 8 tool updatesv0.0.1
    • First observedcalculateReportMetrics
    • First observeddownloadDocument
    • First observeddownloadDocumentsAll
    • First observedgenerateWeeklyReport
    • First observedgetDocumentCategories
    • First observedgetDocumentList
    • First observedgetReportDetailByPeriod
    • First observedgetTotalCommissionByPeriod

TDQS

B3/5.0

Scored across 8 tools

Disambiguation4/5

Most tools are clearly distinct, especially document tools (getDocumentCategories, getDocumentList, downloadDocument, downloadDocumentsAll). However, report-related tools (getReportDetailByPeriod, getTotalCommissionByPeriod, generateWeeklyReport, calculateReportMetrics) have overlapping purposes that could cause misselection, though descriptions help differentiate them.

Naming Consistency3/5

All names are camelCase but use inconsistent verb prefixes (get, download, generate, calculate) and vary in structure (e.g., downloadDocumentsAll vs downloadDocument). This mixed convention reduces predictability, though the naming is still readable.

Tool Count5/5

Eight tools is an appropriate size for the Wildberries finances domain. The tool count is well-scoped, covering both report analysis and document management without unnecessary duplication or overwhelming the user.

Completeness4/5

The tool set covers essential operations: retrieving report details, calculating commissions, generating weekly reports, computing metrics, and managing documents. However, there is no explicit tool for listing available report periods or fetching raw sales data, which creates a minor gap in the workflow.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Connects AI assistants to Wildberries and Ozon seller accounts for real-time access to sales, stocks, prices, finances, and reviews through official APIs.
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for Wildberries Seller API enabling management of products, orders, supplies, analytics, advertising, and finance through natural language commands.
    3
    2
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server that simplifies interaction with Wildberries API, providing unified access to analytics, promotion statistics, sales funnel data, search queries, stock reports, and EVIRMA PRO report imports.
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables access to Wildberries marketplace feedback and questions, allowing listing accounts, filtering feedbacks, viewing statistics and ratings, and posting answers, with secure token management and throttling.
    -