bradleylab/stella-mcp

bradleylab/stella-mcp

от bradleylab
MCP сервер для создания и редактирования моделей системной динамики в формате XMILE. Позволяет AI-ассистентам программно строить, читать, валидировать и сохранять .stmx-файлы для Stella. Полезен дл...

Stella MCP Server

A Model Context Protocol (MCP) server for creating and manipulating Stella system dynamics models. This enables AI assistants like Claude to programmatically build, read, validate, and save .stmx files in the XMILE format.

What is this for?

Stella is a system dynamics modeling tool used for simulating complex systems in fields like ecology, biogeochemistry, economics, and engineering. This MCP server allows AI assistants to:

  • Create models from scratch - Build stock-and-flow diagrams programmatically
  • Read existing models - Parse and understand .stmx files
  • Validate models - Check for errors like undefined variables or missing connections
  • Modify models - Add stocks, flows, auxiliaries, and connectors
  • Save models - Export valid XMILE files that open in Stella Professional

This is particularly useful for:

  • Teaching system dynamics modeling
  • Rapid prototyping of models through natural language
  • Batch creation or modification of models
  • Documenting and explaining existing models

Installation

Инструменты были проиндексированы:
add_aux

Добавьте вспомогательную переменную (параметр или промежуточное вычисление) в текущую модель

Параметры
  • equationstringобязательный

    Equation or constant value

  • graphical_functionany

    Graphical function (lookup table) definition

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • namestringобязательный

    Variable name

  • unitsstring

    Units

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

  • xnumber

    X position (optional, auto-positioned if not specified)

  • ynumber

    Y position (optional, auto-positioned if not specified)

add_connector

Добавляет соединитель (стрелку зависимости) между переменными

Параметры
  • from_varstringобязательный

    Source variable name

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • to_varstringобязательный

    Target variable name (the one using from_var)

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

add_flow

Добавьте поток между запасами в текущей модели.

Параметры
  • equationstringобязательный

    Flow rate equation

  • from_stockstring

    Source stock (null for external source)

  • graphical_functionany

    Graphical function (lookup table) definition

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • namestringобязательный

    Flow name

  • non_negativeboolean

    Prevent negative values

  • to_stockstring

    Destination stock (null for external sink)

  • unitsstring

    Units

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

  • xnumber

    X position (optional, auto-positioned if not specified)

  • ynumber

    Y position (optional, auto-positioned if not specified)

add_stock

Добавить накопитель (резервуар) в текущую модель

Параметры
  • initial_valuestringобязательный

    Initial value (number or equation)

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • namestringобязательный

    Stock name

  • non_negativeboolean

    Prevent negative values

  • unitsstring

    Units

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

  • xnumber

    X position (optional, auto-positioned if not specified)

  • ynumber

    Y position (optional, auto-positioned if not specified)

add_to_module

Добавляет переменные в существующий модуль

Параметры
  • membersstring[]обязательный

    Variable names to add

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • module_namestringобязательный

    Existing module name

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

add_variables

Добавляет несколько запасов, вспомогательных элементов, потоков, соединителей и/или модулей в существующую модель за один вызов. Всё или ничего: при ошибке в любом элементе модель остаётся без изменений, а в сообщении об ошибке указывается элемент, на котором произошёл сбой (этап + индекс).

Параметры
  • auxsobject[]

    Auxiliary variables to add (applied after stocks)

  • connectorsobject[]

    Explicit connectors to add (applied after variables)

  • flowsobject[]

    Flows to add (applied after stocks and auxs)

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • modulesobject[]

    Modules to create (applied last)

  • stocksobject[]

    Stocks to add (applied first)

  • sync_connectorsboolean

    Run sync_connectors_from_equations after applying items

  • validateboolean

    Include validation results in the response

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

auto_place_module_boxes

Автоматически размещать блоки представления модулей вокруг их переменных-членов

Параметры
  • min_heightnumber

    Minimum module box height in pixels

  • min_widthnumber

    Minimum module box width in pixels

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • only_missingboolean

    Only place boxes for modules without explicit view geometry

  • paddingnumber

    Padding around module members in pixels

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

build_model

Создает и заполняет модель за один вызов: sim specs, stocks, auxiliaries, flows, connectors и modules. Всё или ничего: при ошибке любого элемента ничего не регистрируется, а ошибка указывает на отказавший элемент (этап + индекс). Синхронизация и проверка соединителей выполняются по умолчанию, поэтому ответ также служит проверкой.

Параметры
  • auxsobject[]

    Auxiliary variables to add (applied after stocks)

  • connectorsobject[]

    Explicit connectors to add (applied after variables)

  • flowsobject[]

    Flows to add (applied after stocks and auxs)

  • model_idstring

    Optional model ID to assign in this session

  • modulesobject[]

    Modules to create (applied last)

  • namestringобязательный

    Model name

  • sim_specsobject

    Simulation time settings

  • stocksobject[]

    Stocks to add (applied first)

  • sync_connectorsboolean

    Run sync_connectors_from_equations after applying items

  • validateboolean

    Include validation results in the response

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

calibrateидемпотентный

Подгоняет параметры константной модели под наблюдаемый временной ряд — обратная операция к simulate. Калибровать можно только константные вспомогательные переменные/потоки (запасы отвергаются: переопределение запаса фиксирует его как константу, а не задаёт начальное значение). least_squares (по умолчанию) выдаёт линеаризованную std_error; differential_evolution — глобальный, детерминированный (с затравкой) метод, требующий границ. Времена наблюдений должны лежать внутри окна модели (экстраполяция запрещена). Требуется опциональная зависимость pysd (pip install 'stella-mcp[sim]').

Параметры
  • maxiterinteger | null

    differential_evolution generation cap (default 100)

  • max_nfevinteger

    least_squares function-evaluation cap

  • methodenum

    Optimizer: least_squares (local, gives std_error) or differential_evolution (global, seeded, needs bounds)

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • objectiveenum

    Objective (sum of squared residuals; scale via weights)

  • observationsobjectобязательный

    Observed data on one shared time grid: inline {time, targets} or {csv_path} (first CSV column is time)

  • parametersobject[]обязательный

    Constant parameters to fit (constant auxiliaries/flows only; stocks are rejected)

  • popsizeinteger

    differential_evolution population multiplier

  • return_fit_seriesboolean

    Also return the best-fit downsampled series per target

  • save_fit_csvstring

    Optional path to write a long (time, target, observed, fitted) CSV

  • seedinteger

    differential_evolution seed (kept non-null for reproducibility)

  • weightsobject

    Optional positive per-target residual multipliers; inverse-sigma values give normalized residuals and the usual statistical std_error interpretation

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

compare_scenariosидемпотентный

Запускает несколько именованных сценариев «что если» (каждый — набор постоянных переопределений параметров) по сравнению с базовым сценарием и сообщает, как каждый отклоняется: показываются финальные/максимальные абсолютные дельты по каждой переменной и финальное процентное изменение. Требуется опциональная зависимость pysd (pip install 'stella-mcp[sim]').

Параметры
  • baselineobject

    Override set to measure deltas against (default: the unmodified model)

  • includestring[]

    Variables to report and compare (default: all stocks)

  • max_pointsinteger

    Maximum points per returned series

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • save_comparison_csvstring

    Optional path to write a wide variable-by-scenario CSV

  • scenariosobject[]обязательный

    Named override sets to compare (names must be unique)

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

create_model

Создать новую модель Stella с заданными временными настройками

Параметры
  • dtnumber

    Time step

  • methodstring

    Integration method (Euler or RK4)

  • model_idstring

    Optional model ID to assign in this session

  • namestringобязательный

    Model name

  • startnumber

    Simulation start time

  • stopnumber

    Simulation stop time

  • time_unitsstring

    Time units

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

create_module

Создаёт логический модуль/группу для организации переменных.

Параметры
  • membersstring[]

    Optional initial member variable names

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • namestringобязательный

    Module name

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

create_workspace

Создаёт изолированное рабочее пространство приложения для вызовов инструмента Stella с сохранением состояния. Возвращаемый идентификатор маршрутизирует состояние и не служит учётными данными для авторизации.

Параметры
  • ttl_secondsnumber

    Optional caller-selected lifetime. Omit for process-lifetime state.

delete_model

Удаляет модель из текущего сеанса. Сохранённые файлы .stmx не затрагиваются. model_id обязателен: намеренно нет неявного 'delete current model'.

Параметры
  • model_idstringобязательный

    Session model ID to remove

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

delete_module

Удалить модуль

Параметры
  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • module_namestringобязательный

    Existing module name

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

delete_variable

Удалить запас/поток/вспомогательную переменную и очистить соединения/членство в модуле

Параметры
  • forceboolean

    Allow deleting stocks that still have connected flows (flows are detached)

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • namestringобязательный

    Variable name to delete

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

get_model_xmlтолько чтение

Получить XMILE XML представление текущей модели (для предпросмотра)

Параметры
  • auto_layoutboolean

    Whether to auto-layout before export

  • compat_modeenum

    Compatibility mode for export checks

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • resolve_layout_violationsboolean

    Whether to run layout crossing/collision post-processing before export

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

get_template_infoтолько чтение

Получить подробные метаданные для одного шаблона

Параметры
  • template_namestringобязательный

    Template name

inspect_modelтолько чтение

Верни структурированную сводку текущей модели для проверки агентом.

Параметры
  • include_validationboolean

    Include validation issues in structured output

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

list_connectorsтолько чтение

Вывести метаданные коннектора (uid, endpoints, angle, routing lock/points)

Параметры
  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

list_modelsтолько чтение

Выводит список всех идентификаторов моделей, доступных в текущем сеансе.

Параметры
  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

list_modulesтолько чтение

Вывести список модулей/групп в текущей модели

Параметры
  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

list_templatesтолько чтение

Вывести список встроенных и пользовательских шаблонов

Параметры
  • querystring

    Optional case-insensitive search against template name/title/description

  • sourceenum

    Optional source filter

  • tagsstring[]

    Optional required tags (all must match)

list_variablesтолько чтение

Перечисли все переменные (запасы, потоки, вспомогательные) в текущей модели

Параметры
  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

load_template

Загрузить шаблон в текущую сессию как модель

Параметры
  • model_idstring

    Optional model ID for the loaded template

  • template_namestringобязательный

    Template name

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

read_model

Читает существующий файл .stmx и загружает его как текущую модель.

Параметры
  • compat_modeenum

    Compatibility mode for import parsing

  • filepathstringобязательный

    Path to .stmx file

  • model_idstring

    Optional model ID to load into/assign in this session

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

remove_from_module

Удалить переменные из существующего модуля

Параметры
  • membersstring[]обязательный

    Variable names to remove

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • module_namestringобязательный

    Existing module name

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

rename_module

Переименовывает существующий модуль

Параметры
  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • module_namestringобязательный

    Existing module name

  • new_namestringобязательный

    New module name

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

rename_variable

Переименовывает stock/flow/aux и обновляет все зависимые ссылки.

Параметры
  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • new_namestringобязательный

    New variable name

  • old_namestringобязательный

    Existing variable name

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

render_diagramидемпотентный

Отрисовывает текущую модель в виде SVG-диаграммы потоков и накоплений. SVG возвращается встроенным (для клиентов без доступа к файлам) и опционально записывается в файл. По умолчанию сначала выполняется автоматическая раскладка, чтобы только что построенные модели отображались осмысленно.

Параметры
  • auto_layoutboolean

    Run auto-layout before rendering (same semantics as save_model)

  • filepathstring

    Optional output path (.svg); parent directory must exist

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

revoke_workspace

Отзывает рабочую область и удаляет все модели, хранящиеся в ней.

Параметры
  • workspace_idstringобязательный

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

save_as_template

Сохраните текущую модель как пользовательский шаблон

Параметры
  • descriptionstring

    Optional template description for discovery

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • overwriteboolean

    Whether to overwrite an existing user template with the same name

  • tagsstring[]

    Optional tags for discovery/filtering

  • template_namestringобязательный

    Template name to save

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

save_model

Сохраняет текущую модель в файл .stmx

Параметры
  • auto_layoutboolean

    Whether to auto-layout before export

  • compat_modeenum

    Compatibility mode for export checks

  • filepathstringобязательный

    Output file path (.stmx)

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • resolve_layout_violationsboolean

    Whether to run layout crossing/collision post-processing before export

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

sensitivity_analysisидемпотентный

Поочередная чувствительность: проход каждого параметра по диапазону (при фиксации остальных на исходных значениях) и сообщает, как реагирует одна выбранная выходная метрика, с указанием наклона по диапазону и нормализованной по базовому значению эластичности для ранжирования. Требует опциональную зависимость pysd (pip install 'stella-mcp[sim]').

Параметры
  • include_seriesboolean

    Also return each run's downsampled output series

  • max_runsinteger

    Hard cap on total swept runs; the call errors rather than truncating a larger sweep

  • modeenum

    Sweep design; only one-at-a-time is available (grid/montecarlo reserved)

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • outputobjectобязательный

    The single output metric to track across the sweep

  • parametersobject[]обязательный

    Parameters to sweep, each one at a time

  • save_sweep_csvstring

    Optional path to write the long (parameter, value, metric) CSV

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

set_connector_routing

Устанавливает угол соединения и/или явные точки маршрута

Параметры
  • anglenumber

    Connector angle in degrees

  • angle_lockedboolean

    Whether to preserve the explicit connector angle

  • connector_uidinteger

    Connector UID. Optional if from_var+to_var uniquely identify a connector.

  • from_varstring

    Connector source variable name (used for lookup when connector_uid is omitted)

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • pointsobject[]

    Optional connector waypoint list

  • points_lockedboolean

    Whether to preserve explicit connector waypoints

  • to_varstring

    Connector target variable name (used for lookup when connector_uid is omitted)

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

set_module_style

Устанавливает визуальный стиль блока модуля в представлении диаграммы.

Параметры
  • backgroundstring

    Module fill/background color

  • border_colorstring

    Module border/line color

  • font_colorstring

    Module label font color

  • font_sizestring

    Module label font size (e.g., 9pt)

  • label_sidestring

    Module label position: top, bottom, left, or right

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • module_namestringобязательный

    Module name

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

set_module_view

Устанавливает явную геометрию области просмотра для модуля

Параметры
  • heightnumberобязательный

    Box height

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • module_namestringобязательный

    Module name

  • widthnumberобязательный

    Box width

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

  • xnumberобязательный

    Center X

  • ynumberобязательный

    Center Y

set_sim_specs

Обновляет настройки времени симуляции на существующей модели.

Параметры
  • dtnumber

    Time step

  • methodstring

    Integration method (Euler or RK4)

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • startnumber

    Simulation start time

  • stopnumber

    Simulation stop time

  • time_unitsstring

    Time units

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

simulateидемпотентный

Запускает модель и возвращает прореженный временной ряд со сводками по каждой переменной (начальное/конечное/мин/макс). Требует опциональной зависимости pysd (pip install 'stella-mcp[sim]'). Интеграция — метод Эйлера, независимо от настройки метода модели.

Параметры
  • includestring[]

    Variables to report (default: all stocks)

  • max_pointsinteger

    Maximum points per returned series

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • overridesobject

    Constant parameter overrides keyed by variable name (display or underscore form)

  • save_results_csvstring

    Optional path to write the full results table as CSV

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

sync_connectors_from_equations

Добавить отсутствующие коннекторы зависимостей, выведенные из потоковых и вспомогательных уравнений

Параметры
  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

update_aux

Обновить поля вспомогательных переменных

Параметры
  • equationstring

    Equation or constant value

  • graphical_functionany

    Graphical function (lookup table) definition

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • namestringобязательный

    Variable name

  • unitsstring

    Units

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

  • xnumber

    X position

  • ynumber

    Y position

update_flow

Обновляет поля потоков, сохраняя структурные связи запасов.

Параметры
  • equationstring

    Flow rate equation

  • graphical_functionany

    Graphical function (lookup table) definition

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • namestringобязательный

    Flow name

  • non_negativeboolean

    Prevent negative values

  • unitsstring

    Units

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

  • xnumber

    X position

  • ynumber

    Y position

update_stock

Обновить складские поля, сохраняя связи

Параметры
  • initial_valuestring

    Initial value

  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • namestringобязательный

    Stock name

  • non_negativeboolean

    Prevent negative values

  • unitsstring

    Units

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

  • xnumber

    X position

  • ynumber

    Y position

validate_modelтолько чтение

Проверить текущую модель на ошибки и предупреждения.

Параметры
  • model_idstring

    Session-scoped model ID. Optional; defaults to the current model for this session.

  • workspace_idstring

    Opaque application workspace handle. Required by MCP 2026-07-28 clients; supported legacy stdio clients may omit it to use the process-local compatibility workspace.

Похожие MCP-сервера

ujisati/anki-mcp

ujisati/anki-mcp

MCP сервер для работы с флеш-карточками Anki через AnkiConnect. Предоставляет инструменты для управления колодами, заметками, карточками, моделями и медиа. Полезен для автоматизации создания и редактирования карточек, интеграции с ИИ-помощниками.

Python7
isaacwasserman/mcp-vegalite-server

isaacwasserman/mcp-vegalite-server

MCP-сервер для визуализации данных: через LLM можно сохранять таблицы и строить графики на Vega-Lite. Полезен аналитикам и разработчикам, автоматизирующим построение визуализаций.

Python100
haris-musa/excel-mcp-server

haris-musa/excel-mcp-server

MCP-сервер для работы с Excel-файлами без установленного офиса. Создавайте, читайте и редактируйте книги, листы, формулы, диаграммы и сводные таблицы через AI-агента. Подходит для автоматизации раб...

Python4175
anki-mcp/anki-mcp-desktop

anki-mcp/anki-mcp-desktop

MCP-сервер для интеграции Anki с AI-ассистентами. Позволяет управлять карточками, колодами, тегами и медиа через естественный язык - создавать заметки, просматривать статистику, синхронизироваться....

TypeScript473
xing5/mcp-google-sheets

xing5/mcp-google-sheets

MCP сервер для интеграции Google Sheets с AI-ассистентами. Позволяет читать, писать и обновлять таблицы, искать данные, управлять листами и выполнять пакетные операции. Полезен разработчикам и аналитикам для автоматизации работы с электронными таблицами через естественный язык.

Python998
AryanBV/pdf-toolkit-mcp

AryanBV/pdf-toolkit-mcp

MCP сервер с 22 инструментами для чтения, создания и редактирования PDF с AES-256 шифрованием. Умеет создавать PDF из Markdown, рендерить страницы для vision-моделей и заполнять формы. Работает чер...

TypeScript9
© Каталог MCP, 2026. Все права защищены.
Проект не аффилирован с Anthropic и любыми упомянутыми продуктами.
Все названия и торговые марки принадлежат их владельцам.
Контакты для связи: hi@mcp-katalog.ru

Лука Никитин