MRP Calculation MCP Server

Calculates material requirements planning (MRP) by extracting necessary data and showing the calculation steps.

Local serverstdioTypeScript

What is the MRP Calculation MCP server?

Calculates material requirements planning (MRP) by extracting necessary data and showing the calculation steps. Exposed over MCP by the mrp calculation mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

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.

  • Delivery schedule calculation
  • Order need determination
  • MRP period calculations

Its toolset

Everything the assistant can do here goes through one of these:

  • calculate_order_need — Calculates when and how much to order based on: - Current inventory levels - Forecast periods - Delivery schedules - Order constraints

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MRP Calculation's toolset — calculate_order_need — is a fair guide to whether it matches your workflow. It is maintained by brandon-butterwick; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MRP Calculation's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mrp calculation mcp server does with a few real requests.

Available tools

ToolWhat it does
calculate_order_needCalculates when and how much to order based on: - Current inventory levels - Forecast periods - Delivery schedules - Order constraints

How to install the MRP Calculation MCP server

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

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use MRP Calculation to calculate order need.

Frequently asked questions

MRP (Material Requirements Planning) Calculation determines the quantity and timing of raw materials needed to meet production demands. This tool automates this process by calculating delivery schedules and order needs based on your data.