Skip to main content
Glama
NORNR

NORNR MCP Control

by NORNR

NORNR MCP Control

Official public MCP package for NORNR, the control layer before consequential MCP tool execution.

This repo is intentionally thin.

It exists to make NORNR easy to discover, install and evaluate from MCP-native surfaces such as:

  • Claude Desktop

  • Cursor

  • Agent Zero

  • OpenClaw / ClawHub

  • custom local MCP clients

The governance logic lives in the official NORNR Python SDK:

The shortest correct reading is:

  • one local tool request becomes one NORNR intent

  • NORNR decides whether it is approved, queued or blocked

  • queued work enters named review with context attached

  • the same action still survives into proof, finance packet and audit export later

What this is

NORNR is not another MCP tool.

It is the control layer above consequential MCP tools.

That means:

  • one tool request becomes one NORNR intent

  • policy decides whether it is approved, queued or blocked

  • queued work lands in review with context attached

  • the resulting action still survives into proof, finance close and audit export

What this is not

This repo is not:

  • a new control-plane implementation

  • a separate NORNR backend

  • a raw tool catalog

  • a wallet wrapper

It is a public install surface for the official NORNR MCP control server.

Why raw MCP tool execution is not enough

Raw MCP tool execution exposes capability. It does not answer the harder questions:

  • should this action clear under the active mandate

  • who reviews it when it should queue

  • what record survives after the action completes

NORNR adds the missing layer before the downstream tool, provider or vendor step clears.

Hello world

  1. Install the dependency:

python -m pip install -r requirements.txt
  1. Set your NORNR key:

export NORNR_API_KEY="replace-with-your-key"
export NORNR_BASE_URL="https://nornr.com"
export NORNR_AGENT_ID="desktop-agent"
  1. Print a copy-paste config:

python nornr_mcp_control.py claude-config
  1. Run the server over stdio:

python nornr_mcp_control.py serve

Copy this config

Claude Desktop

{
  "mcpServers": {
    "nornr": {
      "command": "python3",
      "args": [
        "/absolute/path/to/nornr_mcp_control.py",
        "serve"
      ],
      "env": {
        "NORNR_API_KEY": "replace-with-your-key",
        "NORNR_BASE_URL": "https://nornr.com",
        "NORNR_AGENT_ID": "desktop-agent"
      }
    }
  }
}

Cursor

{
  "mcpServers": {
    "nornr": {
      "command": "python3",
      "args": [
        "/absolute/path/to/nornr_mcp_control.py",
        "serve"
      ],
      "env": {
        "NORNR_API_KEY": "replace-with-your-key",
        "NORNR_BASE_URL": "https://nornr.com",
        "NORNR_AGENT_ID": "cursor-agent"
      }
    }
  }
}

Use the generator commands if you want the exact JSON from the SDK:

python nornr_mcp_control.py claude-config
python nornr_mcp_control.py cursor-config
python nornr_mcp_control.py manifest

Cursor rule

Add this to .cursorrules if Cursor is allowed to use local tools through NORNR:

Use NORNR as the control layer before consequential tool execution.
Do not proceed with a paid, vendor-side or policy-sensitive action until NORNR returns approved or a named operator explicitly approves the queued intent.
Treat queued, blocked, anomalous or review-required posture as a stop state for autonomous execution.

Default policy pack

Start from mcp-local-tools-guarded.

That is the default first posture when a local MCP client can reach:

  • paid providers

  • vendor APIs

  • local tools with external side effects

  • policy-sensitive account actions

The goal is not to govern every local action on day one. The goal is to install one defended local lane first.

What happens after queued

Queued does not mean proceed carefully. It means stop the autonomous path and route it into review.

  1. Keep the downstream tool action on hold.

  2. Inspect the queued basis in NORNR.

  3. Review counterparty posture, amount, purpose and mandate fit.

  4. Approve or reject explicitly.

  5. Let the resulting action survive into proof, finance packet and audit export later.

Suggested demo GIF

The clearest first demo is:

  1. the local agent proposes a consequential action

  2. NORNR returns approval_required

  3. the client pauses instead of continuing

  4. an operator approves

  5. the action resumes with one defended record afterward

Operating rule

Do not let the MCP client proceed with a consequential tool action until NORNR returns approved or a named operator explicitly approves the queued intent.

Treat queued, blocked, anomalous or prompt-risk posture as review states, not autonomous green lights.

Files

  • nornr_mcp_control.py — thin stdio MCP server wrapper

  • requirements.txt — pinned NORNR SDK dependency

  • SECURITY.md — dependency provenance and key-scope guidance

  • configs/ — copy-paste client snippets

  • .cursorrules.example — Cursor operating rule example

Provenance

This repo stays intentionally small.

The actual control-plane logic is delegated to the official NORNR Python SDK:

  • package: nornr-agentpay==0.1.0

  • import path: agentpay

  • source: NORNR/sdk-py

If your team requires dependency review, inspect the pinned SDK release before enabling this server in production workflows.

License

MIT-0. See LICENSE.

-
security - not tested
A
license - permissive license
-
quality - not tested

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/NORNR/nornr-mcp-control'

If you have feedback or need assistance with the MCP directory API, please join our Discord server