MRP Calculator MCP Server

Integrations

  • Used for version control of the MRP calculator's source code, tracking important files while ignoring build artifacts and dependencies via .gitignore.

  • Handles package management and build scripts for the MRP calculator, enabling users to install dependencies and build the server.

  • The MRP calculator is written in TypeScript, providing static typing and improved developer experience for implementing the MRP calculation logic.

MRP計算機MCPサーバー

概要

このMCPサーバーは、資材所要量計画(MRP)計算のためのツールを提供します。モデルコンテキストプロトコル(MCP)に準拠し、システムに機能を公開します。

特徴

  • 配送スケジュールの計算
  • 注文の必要性の決定
  • MRP期間計算

ツール

サーバーは次の MCP ツールを提供します。

注文ニーズを計算する

以下に基づいていつ、どれだけの量を注文するかを計算します。

  • 現在の在庫レベル
  • 予測期間
  • 配送スケジュール
  • 順序制約

構成

サーバーは、MCP 設定ファイルを通じて次のように構成できます。

{ "mcpServers": { "mrp": { "command": "node", "args": ["/path/to/mrp-calculator/dist/index.js"], "env": {} } } }

発達

  • TypeScriptで記述
  • サーバーの実装にはMCP SDKを使用する
  • 検証のためのテストケースが含まれています

プロジェクト構造

mrp-calculator/ ├── src/ │ ├── index.ts # Main server implementation │ ├── calculator.ts # MRP calculation logic │ ├── types.ts # TypeScript type definitions │ └── validator.ts # Input validation ├── package.json ├── tsconfig.json └── README.md

構築と実行

# Install dependencies npm install # Build the server npm run build # Run the server node dist/index.js

バージョン管理

このリポジトリはバージョン管理にGitを使用しています。重要なファイルは追跡されますが、ビルドアーティファクトと依存関係は.gitignoreによって無視されます。

You must be authenticated.

A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

在庫レベル、予測、注文制約に基づいて配送スケジュールを計算し、注文ニーズを決定し、MRP 期間計算を実行するための資材所要量計画 (MRP) ツールを提供します。

  1. Overview
    1. Features
      1. Tools
        1. calculate_order_need
      2. Configuration
        1. Development
          1. Project Structure
            1. Building and Running
              1. Version Control
                ID: we2rlwkgal