MCP Server

Expose Sigmodx as MCP tools for Claude, Cursor, LangChain, AutoGen, and any MCP-compatible client.

← All integrations

Install

pip install sigmodx-mcp

Run the server

pip install sigmodx-mcp

SIGMODX_API_KEY=your-key \
SIGMODX_AGENT_ID=your-agent-uuid \
sigmodx-mcp

Claude Desktop / Cursor

Add to your MCP config (for example claude_desktop_config.json):

{
  "mcpServers": {
    "sigmodx": {
      "command": "sigmodx-mcp",
      "env": {
        "SIGMODX_API_KEY": "your-api-key",
        "SIGMODX_AGENT_ID": "your-agent-uuid"
      }
    }
  }
}

Available tools

ToolDescription
sigmodx_log_invoice_decisionLog invoice approval/reject/escalate
sigmodx_log_gl_decisionLog GL entry review decision
sigmodx_log_anomaly_decisionLog anomaly flag/clear/escalate
sigmodx_verify_attestationVerify a verification string (no auth)
sigmodx_get_reliabilityGet agent ALLOW/LIMIT/BLOCK state
sigmodx_hash_inputsHash input payload (no auth needed)

sigmodx_verify_attestation and sigmodx_hash_inputs require no API key.

Full documentation

github.com/Sigmodx/mcp-server →