Verimand MCP Authority Server

Agent-native access to verifiable VAGP authority.

Otherv0.1.0

Verimand MCP Authority Server

MCP exposes capability. VAGP governs authority.

The Verimand MCP Authority Server gives MCP-compatible clients agent-native access to verifiable VAGP authority. It exposes a small stdio tool surface for asking whether a trusted registered agent currently has authority, inspecting trusted authority state, and verifying VAGP execution permits.

Tool availability does not itself grant authority. This server is not yet the enforcement gateway for protected tool execution.

Package identity

  • npm package: @verimand/mcp-authority-server
  • MCP Registry server name: dev.verimand/mcp-authority-server
  • Current version: 0.1.0
  • Runtime: Node.js 22 or newer
  • MCP SDK/runtime: @modelcontextprotocol/server 2.0.0, implementing the MCP 2026-07-28 spec with stdio legacy compatibility

Tools

  • verimand.resolve resolves whether a trusted registered agent is authorized for an action and returns a VAGP execution permit only when authority is confirmed.
  • verimand.explain explains deterministic authority decision or permit-derived data. It is informational only.
  • verimand.get_authority returns bounded authority relevant to an agent/action.
  • verimand.get_mandate retrieves server-side trusted mandate metadata.
  • verimand.get_agent_dna returns server-side trusted Agent DNA state and fingerprint information.
  • verimand.verify_permit verifies a VAGP execution permit against current authority evidence.

Install and start

After publication, a local MCP client can start the server with:

npx -y @verimand/mcp-authority-server@0.1.0

When running from this repository before publication:

pnpm --filter @verimand/mcp-authority-server build
node apps/mcp-authority-server/dist/stdio.js

The process speaks MCP over stdio. stdout is reserved for MCP protocol messages; diagnostics go to stderr.

MCP client configuration example

{
  "mcpServers": {
    "verimand-authority": {
      "command": "npx",
      "args": ["-y", "@verimand/mcp-authority-server@0.1.0"]
    }
  }
}

Do not place secrets, mandates, Agent DNA, revocation state or trusted context in agent-controlled MCP tool arguments. Production Verimand connection material must be supplied by the operator-controlled server environment, not by the agent using the MCP client.

First resolve example

{
  "name": "verimand.resolve",
  "arguments": {
    "agentId": "agent:demo-support",
    "action": "ticket.read",
    "resourceId": "ticket:123",
    "requestId": "req-demo-1"
  }
}

Expected structured content contains a deterministic authority decision, reason codes, selected mandate/path data and a permit only when VAGP resolves AUTHORITY_CONFIRMED.

Security and trust boundary

All MCP input is untrusted. The server accepts only small closed tool arguments and maps them to server-side trusted VAGP state. An MCP caller cannot self-declare trusted identity, Agent DNA, mandates, attestations, revocation state or trusted context.

The MCP server delegates authority semantics to VAGP 0.3 authority services. It does not execute protected business actions and does not replace an enforcement gateway. Protected tool execution remains outside this package.

VAGP relationship

VAGP 0.3 is the public authority protocol: https://github.com/verimand/vagp. This MCP server is a Verimand interface for authority inspection and permit verification over MCP.

Distribution status

MCP-DIST-01.1 prepares a self-contained CLI package for public npm distribution. The Verimand VAGP authority runtime required by this MCP server is bundled into dist/stdio.js; the installed package has no runtime dependency on unpublished @verimand/* workspace packages.

Development validation

pnpm --filter @verimand/mcp-authority-server build
pnpm --filter @verimand/mcp-authority-server smoke:stdio
pnpm vitest run tests/conformance/mcp-authority-server.test.ts

Support and security reporting

Report security issues to verimand.dev@gmail.com.

Installation

Source-derived launch command. Check the maintainer’s required arguments and credentials before running:

bash
npx -y @verimand/mcp-authority-server

Set up in your AI client

Merge this template into ~/Library/Application Support/Claude/claude_desktop_config.json. Keep existing servers. Add any arguments, credentials, and permissions required by the maintainer; this template has not been install-tested.

json
{
  "mcpServers": {
    "dev-verimand-mcp-authority-server": {
      "command": "npx",
      "args": [
        "-y",
        "@verimand/mcp-authority-server"
      ]
    }
  }
}

Restart Claude Desktop completely for changes to take effect. Confirm the server appears connected in the client’s tool list, then try a read-only example from its documentation.

Claude Desktop setup reference

Package

@verimand/mcp-authority-servernpm

Compatible MCP Clients

Verimand MCP Authority Server works with any MCP-compatible client. Copy the config snippet from the Configuration section above and add it to the file shown for your client, then restart the application.

  • Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop completely for changes to take effect.
  • Cursor~/.cursor/mcp.jsonRestart Cursor for changes to take effect.
  • VS Code.vscode/mcp.jsonReload VS Code window for changes to take effect.
  • Windsurf~/.codeium/windsurf/mcp_config.jsonRestart Windsurf for changes to take effect.
  • Claude Code.mcp.jsonSave at the project root, then start Claude Code in that project and review the MCP server approval prompt. Keep real credentials out of shared files.

Learn More