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

exovault-mcp-server

v1.4.0

Published

MCP server for ExoVault — read, search, and manage encrypted notes from Claude Code

Readme

exovault-mcp-server

MCP server for ExoVault — encrypted, durable memory for AI agents. Gives your agent persistent memory, notes, knowledge graph, tasks, and semantic search via Model Context Protocol.

Quick Start

1. Get an Agent Key

Sign up at exovault.co and generate an agent key (exv_...) from the Connect Wizard.

2. Add to Your MCP Client

Claude Code — add to ~/.claude/settings.json:

{
  "mcpServers": {
    "exo-vault": {
      "command": "npx",
      "args": ["exovault-mcp-server"],
      "env": {
        "EXOVAULT_AGENT_KEY": "exv_your_key_here",
        "EXOVAULT_API_URL": "https://exovault.co"
      }
    }
  }
}

Cursor — add to .cursor/mcp.json:

{
  "mcpServers": {
    "exo-vault": {
      "command": "npx",
      "args": ["exovault-mcp-server"],
      "env": {
        "EXOVAULT_AGENT_KEY": "exv_your_key_here",
        "EXOVAULT_API_URL": "https://exovault.co"
      }
    }
  }
}

Any MCP-compatible client — use the same config format with npx exovault-mcp-server as the command.

3. Restart Your Client

MCP servers are loaded on startup. Restart your client to activate ExoVault.

Interactive Setup

Alternatively, run the CLI wizard:

npx exovault-mcp-server setup --agent-key exv_your_key_here

This validates your key and writes the config to ~/.exovault-mcp/config.json.

Tools

The MCP server exposes 35+ tools organized by category:

Memory

| Tool | Description | |------|-------------| | write_memory | Store durable memories (fact, skill, preference, constraint, task, episodic, correction) | | read_memories | Read memories by ID (batch, max 50) | | search_memories | Semantic + keyword hybrid search with filters | | update_memory | Update content, type, importance, entities | | archive_memory | Archive or unarchive a memory | | get_related_memories | Find related memories via entity links | | cleanup_memories | Find and archive stale/low-importance memories (dry-run supported) |

Notes

| Tool | Description | |------|-------------| | list_notes | List notes with previews, filterable by vault/folder | | read_note | Read full decrypted note content | | read_notes | Batch read multiple notes (max 20) | | search_notes | Keyword search across notes (weighted: title > tags > content) | | create_note | Create an encrypted note | | update_note | Update note title, content, or tags | | delete_note | Permanently delete a note |

Vaults & Folders

| Tool | Description | |------|-------------| | list_vaults | List all vaults with metadata | | create_vault | Create a new vault (idempotent by name) | | list_folders | List folders in a vault | | create_folder | Create a folder with optional parent | | move_note | Move a note to a folder or vault root |

Search & Knowledge Graph

| Tool | Description | |------|-------------| | semantic_search | Vector similarity search across notes and memories | | search_and_read | Hybrid search (70% semantic + 30% keyword) with auto-read | | explore_graph | Knowledge graph traversal — zero LLM cost | | get_links | Get knowledge graph links (incoming/outgoing/both) | | add_link | Create graph links (9 relation types) | | remove_link | Remove a graph link |

Session & Context

| Tool | Description | |------|-------------| | session_start | Load session context (episodic summaries, facts, tasks, constraints) | | context_checkpoint | Save session checkpoint with optional bulk memory writes |

Tasks

| Tool | Description | |------|-------------| | create_task | Create a tracked task with optional auto-completion criteria | | update_task | Update task status, priority, or assignment | | list_tasks | List tasks with filters | | create_plan_tasks | Decompose a plan into tracked tasks |

Messages

| Tool | Description | |------|-------------| | send_message | Send directed messages between agents | | ack_message | Acknowledge receipt of a message | | read_messages | Read inbox with filters |

Documents & Ingestion

| Tool | Description | |------|-------------| | read_document | Read vault documents (instructions, skills, checks) | | update_document | Append to vault documents | | read_docs | Read public ExoVault documentation | | ingest_turn | Push conversation turns for automatic knowledge extraction | | list_active_agents | List recently active agents |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | EXOVAULT_AGENT_KEY | Yes | Your agent key (exv_...) | | EXOVAULT_API_URL | No | API URL (default: https://exovault.co) |

How It Works

  • All data is encrypted — content is encrypted server-side with your agent's derived key
  • Gateway mode — all operations route through the ExoVault API, no direct database access
  • Session tracking — agent activity is tracked on the ExoVault dashboard
  • Knowledge extraction — conversation turns ingested via ingest_turn are automatically processed for facts, skills, and preferences

Links

License

MIT