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

@ztell/context-vault-mcp

v0.1.0

Published

MCP server for Context Vault — give AI tools native access to your personal context.

Downloads

32

Readme

Context Vault MCP Server

Give Claude, Cursor, Windsurf, and other AI tools native access to your personal context — without prompt injection or copy-pasting.

Context Vault stores your preferences, communication style, active projects, corrections, and personal background. This MCP server lets any MCP-compatible AI tool retrieve that context automatically.

Quick Start

1. Get your API key

Sign up at aiglue.ai, go to Settings → API Key, and generate a cv_ key.

2. Add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "context-vault": {
      "command": "npx",
      "args": ["-y", "context-vault-mcp"],
      "env": {
        "CONTEXT_VAULT_API_KEY": "cv_your_api_key_here"
      }
    }
  }
}

3. Add to Cursor

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "context-vault": {
      "command": "npx",
      "args": ["-y", "context-vault-mcp"],
      "env": {
        "CONTEXT_VAULT_API_KEY": "cv_your_api_key_here"
      }
    }
  }
}

4. Add to Windsurf

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "context-vault": {
      "command": "npx",
      "args": ["-y", "context-vault-mcp"],
      "env": {
        "CONTEXT_VAULT_API_KEY": "cv_your_api_key_here"
      }
    }
  }
}

How It Works

┌──────────────────┐     MCP Protocol     ┌──────────────────┐     HTTPS     ┌──────────────────┐
│  Claude Desktop  │ ◄──────────────────► │  MCP Server      │ ◄───────────► │  Context Vault   │
│  Cursor / etc.   │                      │  (this package)  │               │  API             │
│                  │                      │                  │               │  api.aiglue.ai   │
└──────────────────┘                      └──────────────────┘               └──────────────────┘
  1. You store your context entries in Context Vault (via the web app or Chrome extension)
  2. This MCP server authenticates with your cv_ API key
  3. When an AI tool needs your context, it calls the MCP tools
  4. The server fetches your entries from the Context Vault API
  5. PHI-flagged entries are excluded by default (HIPAA compliance)

Tools

get_context

Retrieve your full personal context, formatted for AI consumption. Use this at the start of a conversation so the AI understands who you are.

| Parameter | Type | Required | Description | |-----------|--------|----------|-------------| | platform | string | No | Target platform: claude, chatgpt, manus, grok, perplexity, gemini | | format | string | No | Response format: text, json, markdown | | category | string | No | Filter: style, personal, work, projects, tools, corrections |

get_summary

Quick vault overview — entry counts by category, platforms configured, last update. No parameters.

search_context

Keyword search across your context entries.

| Parameter | Type | Required | Description | |----------|--------|----------|-------------| | query | string | Yes | Search query (1-200 chars) | | platform | string | No | Filter by platform |

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | CONTEXT_VAULT_API_KEY | Yes | — | Your cv_ API key from aiglue.ai | | CONTEXT_VAULT_API_URL | No | https://api.aiglue.ai | API base URL (for self-hosted or staging) |

PHI Safety

Entries flagged as containing Protected Health Information (PHI) are never returned by any MCP tool. The API filters them server-side. The include_phi parameter is not exposed through the MCP server.

Security

  • Your API key is stored locally in your MCP config file
  • The key is never sent to Anthropic — it only goes to the Context Vault API
  • All API communication uses HTTPS
  • The MCP server runs locally on your machine
  • No data is cached or persisted by the MCP server

Development

git clone https://github.com/Ad-Vital/context-vault-mcp.git
cd context-vault-mcp
pnpm install
CONTEXT_VAULT_API_KEY=cv_test pnpm dev

Troubleshooting

"CONTEXT_VAULT_API_KEY is not set"

Make sure the env block in your MCP config includes the key. Get one at aiglue.ai → Settings → API Key.

Claude does not show the hammer icon

  • Restart Claude Desktop after editing the config
  • Check Claude Desktop logs: Help → Show Logs
  • Ensure Node.js 18+ is installed

"Context Vault API error: Authentication required"

  • Verify your API key starts with cv_
  • Regenerate the key in the web app if needed
  • Make sure there are no extra spaces in the key

License

MIT — Ad Vital, Inc.