io.github.WRG-11/wrg-mcp-server
OfficialWinstonRedGuard MCP Server
WinstonRedGuard monorepo bridge for MCP agents: governance, pipelines, memory, OSINT tools.
Monorepo bridge providing governance, pipelines, memory, and OSINT tools for MCP agents.
README not available yet.
Install
Configuration
WRG_REPO_ROOTrequiredAbsolute path to the WinstonRedGuard monorepo checkout. Required when the package is installed outside the repo (the server auto-detects when run from inside the repo).
WRG_MCP_ALLOW_MUTATIONSdefault 0Set to '1' to permit state-changing tools (memory_set, pipeline_run). Default '0' = read-only.
WRG_SITE_BASE_URLBase URL of the optional company-site API (enables site_* tools). Requires the `[remote]` extra.
WRG_SITE_TOKENsecretBearer token for the company-site API.
WRG_PULSEBOARD_BASE_URLBase URL of the optional PulseBoard dashboard API (enables pulseboard_* tools). Requires the `[remote]` extra.
WRG_PULSEBOARD_TOKENsecretBearer token for the PulseBoard API.
--transportdefault stdioclaude_desktop_config.json
{
"mcpServers": {
"wrg-mcp-server": {
"command": "uvx",
"args": [
"wrg-mcp-server",
"--transport",
"stdio"
],
"env": {
"WRG_REPO_ROOT": "<YOUR_WRG_REPO_ROOT>",
"WRG_MCP_ALLOW_MUTATIONS": "0",
"WRG_SITE_BASE_URL": "<YOUR_WRG_SITE_BASE_URL>",
"WRG_SITE_TOKEN": "<YOUR_WRG_SITE_TOKEN>",
"WRG_PULSEBOARD_BASE_URL": "<YOUR_WRG_PULSEBOARD_BASE_URL>",
"WRG_PULSEBOARD_TOKEN": "<YOUR_WRG_PULSEBOARD_TOKEN>"
}
}
}
}