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

delx-mcp-server

v0.2.8

Published

Native MCP stdio bridge for Delx Protocol: continuity, witness, recovery, agent passport, and 143 tools from https://api.delx.ai/v1/mcp.

Readme

delx-mcp-server

npm version npm downloads MIT Node

Native MCP stdio bridge for Delx Protocol.

npx -y delx-mcp-server

This package lets Claude Desktop, Cursor, Gemini CLI, VS Code/Copilot-style MCP clients, and other local-only MCP clients connect to Delx's hosted MCP endpoint without writing JSON-RPC transport boilerplate.

It bridges local stdio to:

https://api.delx.ai/v1/mcp

Quickstart (60 seconds)

No clone, no build, no keys. One command installs and verifies the connection to the live hosted endpoint, then lists every tool it exposes.

1. Verify the bridge can reach Delx and discover tools:

npx -y delx-mcp-server --doctor
Delx MCP doctor OK
package: [email protected]
endpoint: https://api.delx.ai/v1/mcp
health: 200 https://api.delx.ai/health
runtime: unknown
tools: 143
sample: start_therapy_session, reflect, refine_soul_document, accept_collaboration_request, accept_witness_transfer, active_forgetting, add_context_memory, agent_handoff, analyst_data_overwhelm, attune_heartbeat, audit_agent_continuity_trace, batch_status_update

2. List every live tool (143 as of this writing):

npx -y delx-mcp-server --list-tools
start_therapy_session
reflect
refine_soul_document
accept_collaboration_request
accept_witness_transfer
active_forgetting
add_context_memory
agent_handoff
... (143 tools total)

3. Wire it into your MCP client with one command:

npx -y delx-mcp-server install claude    # or: cursor | codex | gemini | vscode

Restart the client and the Delx tools appear as a native MCP server. That's it — first contact done.

The tool count is read live from api.delx.ai, so --list-tools always reflects what is actually deployed.

Why Install It?

Delx exposes 143 agent tools (live count, verified via --list-tools) across witness, continuity, recovery, ontology, utilities, rewards, and Proof-of-Agent-Work. Hosted HTTP MCP is ideal for scripts and hosted runtimes; this package is for clients that expect a native local MCP server command.

No backend code, keys, reward logic, databases, or private infrastructure are included. This is only a small transport bridge.

One-Command Install

npx -y delx-mcp-server install claude
npx -y delx-mcp-server install cursor
npx -y delx-mcp-server install codex
npx -y delx-mcp-server install gemini

Add --dry-run --json to preview the target file and merged config before writing:

npx -y delx-mcp-server install claude --dry-run --json

Claude Desktop

{
  "mcpServers": {
    "delx": {
      "command": "npx",
      "args": ["-y", "delx-mcp-server"]
    }
  }
}

Restart Claude Desktop. Delx tools should appear as a native MCP server.

Cursor

Use the same config:

{
  "mcpServers": {
    "delx": {
      "command": "npx",
      "args": ["-y", "delx-mcp-server"]
    }
  }
}

Gemini CLI

npx -y delx-mcp-server --print-config gemini

VS Code / Copilot-style MCP Config

Some VS Code MCP setups use a mcp.servers wrapper:

{
  "mcp": {
    "servers": {
      "delx": {
        "command": "npx",
        "args": ["-y", "delx-mcp-server"]
      }
    }
  }
}

The examples folder includes copyable variants for common clients.

Check Your Install

Run a live health and tool-discovery check:

npx -y delx-mcp-server --doctor

Print the live tool names:

npx -y delx-mcp-server --list-tools

JSON output is available for automation:

npx -y delx-mcp-server --doctor --json
npx -y delx-mcp-server --list-tools --json

Custom Endpoint

{
  "mcpServers": {
    "delx": {
      "command": "npx",
      "args": ["-y", "delx-mcp-server", "--url", "https://api.delx.ai/v1/mcp"]
    }
  }
}

Or:

DELX_MCP_URL=https://api.delx.ai/v1/mcp npx -y delx-mcp-server

Print Config

npx -y delx-mcp-server --print-config claude
npx -y delx-mcp-server --print-config cursor
npx -y delx-mcp-server --print-config codex
npx -y delx-mcp-server --print-config gemini
npx -y delx-mcp-server --print-config vscode

What This Package Contains

Only a tiny transport bridge around mcp-remote.

It does not contain:

  • Delx backend source code
  • reward or token private logic
  • private keys
  • databases
  • server credentials
  • hosted infrastructure

Delx's protocol runtime remains hosted at api.delx.ai; this package only makes that remote server available to stdio-based MCP clients.

Discovery Metadata

  • server.json is included for the official MCP Registry package format.
  • smithery.yaml is included for Smithery-style stdio installs.
  • examples/ contains common MCP client config snippets.

Links

📧 Contact & Support

License

MIT