Metheus Governance MCP CLI

0.2.304 · active · verified Wed Apr 22

This package provides a command-line interface (CLI) for interacting with the Metheus Governance Micro-Control Plane (MCP). It facilitates tasks such as bootstrapping the environment, managing local chat bot configurations, running health checks, and bridging stdio to the Metheus HTTPS gateway for proxying. The current stable version is 0.2.304, indicating active development. The CLI handles authentication, registration with various AI clients (Codex, Claude, Gemini, Antigravity, Cursor), and local secret management for chat platforms like Telegram, Slack, and KakaoTalk. Its key differentiator is providing a local control plane for Metheus-managed AI governance, allowing for granular configuration of bot roles, AI client bindings, and message routing. While no explicit release cadence is stated, the versioning suggests ongoing updates and enhancements to its capabilities.

Common errors

Warnings

Install

Imports

Quickstart

Installs the CLI globally and demonstrates basic usage for bootstrapping, running health checks, authentication, and adding a new bot.

npm install -g metheus-governance-mcp-cli@latest

# Run in bootstrap mode to check auth and register clients
metheus-governance-mcp-cli

# Alternatively, run end-to-end health checks
metheus-governance-mcp-cli doctor

# To log in if your token is missing or expired
metheus-governance-mcp-cli auth login

# Example of setting up a local bot environment
metheus-governance-mcp-cli bot add my_telegram_bot --provider telegram --role worker

view raw JSON →