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

vvvesse-mcp

v1.0.1

Published

MCP Server for ESSE — fuse multiple AI agents into one unified mind via Model Context Protocol

Downloads

156

Readme

ESSE MCP Server

One AI. Many agents. Fused.

Model Context Protocol server for ESSE — fuse multiple AI agents into one unified mind, directly from Claude Desktop, Claude Code, Cline, Cursor, or any MCP-compatible client.

npm License X Website


Quick Setup

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "esse": {
      "command": "npx",
      "args": ["-y", "esse-mcp"],
      "env": {
        "ESSE_API_KEY": "your-venice-api-key",
        "ESSE_PROVIDER": "venice"
      }
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Restart Claude Desktop. ESSE tools appear in the 🔧 menu.


Claude Code

claude mcp add esse npx esse-mcp --env ESSE_API_KEY=your-key ESSE_PROVIDER=venice

Cline / Cursor

Same JSON config as Claude Desktop — paste into your MCP settings panel.


API Keys

| Provider | Env Var | Get Key | |----------|---------|---------| | Venice AI (recommended, privacy-first) | ESSE_API_KEY or VENICE_API_KEY | venice.ai/settings/api | | OpenAI | ESSE_API_KEY + ESSE_PROVIDER=openai | platform.openai.com | | Anthropic | ESSE_API_KEY + ESSE_PROVIDER=anthropic | console.anthropic.com |


Available Tools

| Tool | Description | |------|-------------| | esse_quick | Quick fusion + execution in one step. Auto-selects agents. | | esse_fuse | Fuse 2–5 agents into a session. Returns session_id. | | esse_execute | Execute a task using a fused session. | | esse_list_agents | List all built-in agents and their specialties. | | esse_list_sessions | View active fusion sessions. | | esse_memory | View shared memory across sessions. | | esse_defuse | Release a session and its agents. |


Built-in Agents

| Key | Agent | Specialty | |-----|-------|-----------| | research | ResearchAgent | Knowledge retrieval, fact-finding | | writer | WriterAgent | Content generation, drafting | | critic | CriticAgent | Quality analysis, fact-checking | | coder | CoderAgent | Software engineering, code generation | | planner | PlannerAgent | Strategy, roadmaps, task breakdown | | tester | TesterAgent | QA, validation, edge case detection |


Fusion Modes

| Mode | How It Works | Best For | |------|-------------|----------| | capability-assimilation | Agents work sequentially, each building on the last | Content pipelines | | synchronization-link | Agents run in parallel, results merged | Brainstorming, analysis | | perfect-convergence | All agents fused into one singular consciousness | Complex, high-stakes tasks |


Usage Examples

In Claude Desktop (after setup):

"Use esse_quick to write a research-backed article on the future of AI agents"

"Fuse the coder, planner and tester agents, then build me a REST API for user auth"

"Run esse_quick in perfect-convergence mode to brainstorm startup ideas in the AI health space"


Manual Run

# Clone and run locally
git clone https://github.com/VeniceEsse/VVV-Esse.git
cd VVV-Esse/esse-mcp
npm install
npm run build
ESSE_API_KEY=your-key node dist/index.js

Links


MIT License © ESSE AI