JSPM

@morphism-systems/mcp-server

0.1.15
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 140
  • Score
    100M100P100Q84258F
  • License MIT

Governance MCP server — validation, maturity scoring, convergence and drift metrics

Package Exports

  • @morphism-systems/mcp-server
  • @morphism-systems/mcp-server/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@morphism-systems/mcp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@morphism-systems/mcp-server

npm License: MIT

Governance MCP server for AI agents. Expose governance validation, convergence metrics, drift detection, and proof witnesses to Claude, Cursor, and other MCP clients.

About

An MCP (Model Context Protocol) server that gives AI coding assistants access to governance tools. Add it to Claude Code, Cursor, or any MCP-compatible client and your AI assistant can validate repos, compute convergence metrics, measure entropy, and query proof witnesses. Free tier tools are available to all users; Pro, Team, and Enterprise tools require a paid plan.

Installation

npx @morphism-systems/mcp-server

Quick Start

Add to your .claude/mcp.json (or Cursor MCP settings):

{
  "mcpServers": {
    "morphism-governance": {
      "command": "npx",
      "args": ["@morphism-systems/mcp-server"]
    }
  }
}

Tools

Tool Description Tier
governance_validate Run full governance validation pipeline Free
governance_score Compute maturity score (0–125) Free
compute_kappa Convergence metric (κ → 0 = healthy) Pro
compute_delta Drift metric between governance states Pro
entropy_measure Measure entropy of governance artifacts Pro
governance_diff Diff governance state between two refs Pro
ssot_verify Verify SSOT integrity across all atoms Team
governance_heal Auto-remediate detected drift Enterprise

Example Output

// Tool: governance_score
// Input: { "project_path": "/path/to/your/project" }
// Output:
{
  "score": 124,
  "max": 125,
  "level": "optimizing"
}

// Tool: compute_kappa
// Input: { "governance_vector": [1, 1, 1, 1, 1, 1, 1] }
// Output:
{
  "kappa": 0,
  "converging": true,
  "method": "vector_linf_formal",
  "interpretation": "Fixed point: governance is fully compliant"
}

Documentation

Full reference: https://morphism-systems.github.io/morphism/

License

MIT