MRP Calculator
About
Enables supply chain managers to perform Material Requirements Planning calculations by determining optimal order quantities based on inventory data, forecasts, and delivery schedules.
Details
- Author
- brandon-butterwick
- Repository
- brandon-butterwick/MRP_Calculation
- Categories
- Design, AI, Infrastructure, Frontend, Project Management
Jump to
- Delivery schedule calculation
- Order need determination
- MRP period calculations
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MRP CalculatorCommand (node, npx, python, etc.)nodeArguments-
Argument 1
/path/to/mrp-calculator/dist/index.js
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
The server can be configured through the MCP settings file with:
{
"mcpServers": {
"mrp": {
"command": "node",
"args": ["/path/to/mrp-calculator/dist/index.js"],
"env": {}
}
}
}
```bash
npm install
calculate_order_need
Calculates when and how much to order based on current inventory levels, forecast periods, delivery schedules, and order constraints.
The server provides the following MCP tools:
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mrp calculator": {
"env": {},
"args": [
"/path/to/mrp-calculator/dist/index.js"
],
"command": "node"
}
}
}
Linux
{
"env": [],
"args": [
"/path/to/mrp-calculator/dist/index.js"
],
"command": "node"
}
Macos
{
"env": [],
"args": [
"/path/to/mrp-calculator/dist/index.js"
],
"command": "node"
}
Windows
{
"env": [],
"args": [
"/c",
"node",
"/path/to/mrp-calculator/dist/index.js"
],
"command": "cmd"
}
MRP Calculator MCP Server
Overview
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.Features
- Delivery schedule calculation - Order need determination - MRP period calculationsTools
The server provides the following MCP tools:calculate_order_need
Calculates when and how much to order based on: - Current inventory levels - Forecast periods - Delivery schedules - Order constraintsConfiguration
The server can be configured through the MCP settings file with:{
"mcpServers": {
"mrp": {
"command": "node",
"args": ["/path/to/mrp-calculator/dist/index.js"],
"env": {}
}
}
}
Development
- Written in TypeScript - Uses MCP SDK for server implementation - Includes test cases for validationProject Structure
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
Building and Running
```bashSign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.
