物料需求计划计算器
STDIO物料需求计划计算工具服务器
物料需求计划计算工具服务器
This MCP server provides tools for Material Requirements Planning (MRP) calculations. It follows the Model Context Protocol (MCP) to expose its functionality to the system.
The server provides the following MCP tools:
Calculates when and how much to order based on:
The server can be configured through the MCP settings file with:
{ "mcpServers": { "mrp": { "command": "node", "args": ["/path/to/mrp-calculator/dist/index.js"], "env": {} } } }
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
This repository uses Git for version control. Important files are tracked while build artifacts and dependencies are ignored via .gitignore.