npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@consensus-tools/mcp

v0.7.0

Published

Model Context Protocol server adapter for consensus-tools

Downloads

400

Readme

@consensus-tools/mcp

Model Context Protocol (MCP) server that exposes consensus-tools as tools, resources, and prompts for LLM agents. Gives Claude Code (or any MCP client) the ability to post jobs, evaluate guards, manage agents, run workflows, and track human approvals.

Install

pnpm add @consensus-tools/mcp

Claude Code Integration

Add to your .claude/settings.local.json:

{
  "mcpServers": {
    "consensus-tools": {
      "command": "npx",
      "args": ["@consensus-tools/mcp"]
    }
  }
}

With environment configuration:

{
  "mcpServers": {
    "consensus-tools": {
      "command": "npx",
      "args": ["@consensus-tools/mcp"],
      "env": {
        "CONSENSUS_STORAGE_PATH": "/path/to/state.json",
        "CONSENSUS_AGENT_ID": "my-agent"
      }
    }
  }
}

Environment Variables

| Variable | Default | Description | |---|---|---| | CONSENSUS_STORAGE_PATH | ~/.local/share/consensus-tools/state.json | Path to the JSON state file | | CONSENSUS_AGENT_ID | mcp-agent | Agent identity for consensus operations |

Programmatic Usage

import { createMcpServer, startMcpServer } from "@consensus-tools/mcp";
import { JobEngine, LedgerEngine, AgentRegistry, GuardEngine, HitlTracker, createStorage } from "@consensus-tools/core";
import type { McpContext } from "@consensus-tools/mcp";

const storage = await createStorage(config);
const ctx: McpContext = {
  engine: new JobEngine(storage, ledger, config),
  agentRegistry: new AgentRegistry(storage),
  guardEngine: new GuardEngine({ storage }),
  hitlTracker: new HitlTracker({ storage }),
  storage,
  agentId: "my-agent",
};

// Option 1: start on stdio (typical for MCP)
await startMcpServer(ctx);

// Option 2: get the server instance for custom transport
const server = createMcpServer(ctx);

Exposed MCP Tools

The server registers tools across six categories:

| Category | Tools | Description | |---|---|---| | Guard | guard.evaluate, guard.explain, ... | Evaluate agent actions against policies | | Agent | agent.create, agent.list, agent.suspend, ... | Manage agent identities and scopes | | Consensus | consensus_post_job, consensus_claim, consensus_submit, consensus_vote, consensus_resolve, ... | Full job lifecycle | | HITL | human.request_approval, human.check_status, ... | Human-in-the-loop approval flows | | Board | board.status, run.list, audit.query, ... | Board state and audit trail | | Workflow | workflow.create, workflow.run, cron.register, ... | Workflow execution and scheduling |

The server also exposes resources (board state, job details) and prompts for guided interactions.

McpContext

| Property | Required | Description | |---|---|---| | engine | Yes | JobEngine | | agentRegistry | Yes | AgentRegistry | | guardEngine | Yes | GuardEngine | | hitlTracker | Yes | HitlTracker | | storage | Yes | IStorage | | agentId | Yes | Default agent identity | | workflowRunner | No | WorkflowRunner for workflow tools | | cronScheduler | No | CronScheduler for cron tools |

Exports

| Export | Description | |---|---| | createMcpServer(ctx) | Creates an MCP Server with all tools, resources, and prompts registered | | startMcpServer(ctx) | Creates the server and connects via stdio transport | | McpContext | Context type required by the server |

Links

consensus-tools on GitHub