1.0.0 • Published 7 months ago
@awilmoth/mcp-redacted v1.0.0
@awilmoth/mcp-redacted
A universal MCP bridge for the Rules Engine that automatically detects your operating system. This package allows Claude to communicate with your Rules Engine service through the Model Context Protocol (MCP).
Usage
Simply run:
npx -y @awilmoth/mcp-redactedThis will start an MCP bridge server that forwards requests to your Rules Engine service on port 6366.
- On Linux: Uses port 8366
- On Windows: Uses port 8367
MCP Configuration
Add the following to your MCP configuration file (adjusting the URL port based on your OS):
For Linux:
{
"mcpServers": {
"rules_engine": {
"command": "npx",
"args": ["-y", "@awilmoth/mcp-redacted"],
"url": "http://localhost:8366",
"timeout_ms": 30000
}
}
}For Windows:
{
"mcpServers": {
"rules_engine": {
"command": "npx",
"args": ["-y", "@awilmoth/mcp-redacted"],
"url": "http://localhost:8367",
"timeout_ms": 30000
}
}
}Requirements
- Node.js 14 or higher
- An active Rules Engine service running on http://localhost:6366
How It Works
This package automatically: 1. Detects your operating system (Windows or Linux) 2. Chooses the appropriate port (8367 for Windows, 8366 for Linux) 3. Creates a proxy server that forwards MCP requests to your Rules Engine service
License
MIT
1.0.0
7 months ago