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

@sanctumai/mcp-server

v0.3.2

Published

SanctumAI MCP Server — Credential vault and CRP provider for AI agents

Readme

@sanctumai/mcp-server

SanctumAI MCP Server — A local-first credential vault and CRP provider for AI agents.

Securely store, retrieve, and manage credentials directly from your AI tools via the Model Context Protocol.

Installation

# Run directly
npx @sanctumai/mcp-server

# Or install globally
npm install -g @sanctumai/mcp-server

# Or as a project dependency
npm install @sanctumai/mcp-server

The correct binary for your platform is installed automatically via optional dependencies.

Manual Binary Install

Download the binary for your platform from GitHub Releases and place it on your PATH.

Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "sanctum": {
      "command": "npx",
      "args": ["-y", "@sanctumai/mcp-server"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "sanctum": {
      "command": "npx",
      "args": ["-y", "@sanctumai/mcp-server"]
    }
  }
}

Windsurf

Add to ~/.windsurf/mcp.json:

{
  "mcpServers": {
    "sanctum": {
      "command": "npx",
      "args": ["-y", "@sanctumai/mcp-server"]
    }
  }
}

VS Code / VS Code Insiders

Add to .vscode/mcp.json:

{
  "servers": {
    "sanctum": {
      "command": "npx",
      "args": ["-y", "@sanctumai/mcp-server"]
    }
  }
}

Claude Code (claude code CLI)

claude mcp add sanctum -- npx -y @sanctumai/mcp-server

Or add to ~/.claude/mcp.json:

{
  "mcpServers": {
    "sanctum": {
      "command": "npx",
      "args": ["-y", "@sanctumai/mcp-server"]
    }
  }
}

OpenAI Codex

Add to your Codex MCP configuration:

{
  "mcpServers": {
    "sanctum": {
      "command": "npx",
      "args": ["-y", "@sanctumai/mcp-server"]
    }
  }
}

Anthropic CoWork

Add to your CoWork MCP configuration:

{
  "mcpServers": {
    "sanctum": {
      "command": "npx",
      "args": ["-y", "@sanctumai/mcp-server"]
    }
  }
}

Any MCP-Compatible Client

SanctumAI uses stdio transport. Any MCP client can connect:

npx @sanctumai/mcp-server

Or use the binary directly after installing:

sanctum --mcp

Tools

vault_store

Store a credential with metadata.

{
  "name": "vault_store",
  "arguments": {
    "key": "aws/production",
    "value": "AKIA...",
    "metadata": { "service": "aws", "environment": "production" },
    "ttl": 3600
  }
}

Returns: { "stored": true, "key": "aws/production", "expires_at": "2025-01-01T01:00:00Z" }

vault_retrieve

Retrieve a credential. Access is policy-checked and audited.

{
  "name": "vault_retrieve",
  "arguments": {
    "key": "aws/production",
    "purpose": "Deploy staging environment"
  }
}

Returns: { "key": "aws/production", "value": "AKIA...", "metadata": { ... } }

vault_delete

Remove a credential from the vault.

{
  "name": "vault_delete",
  "arguments": { "key": "aws/production" }
}

vault_list

List available credentials (values are never returned).

{
  "name": "vault_list",
  "arguments": { "prefix": "aws/", "tags": ["production"] }
}

Returns: { "credentials": [{ "key": "aws/production", "metadata": { ... }, "created_at": "..." }] }

credential_resolve

Resolve a credential for a downstream service via CRP.

{
  "name": "credential_resolve",
  "arguments": {
    "service": "github.com",
    "scope": ["repo:read", "repo:write"],
    "requester": "cursor/workspace-abc"
  }
}

Returns: { "credential": { ... }, "lease_id": "lease_abc123", "expires_at": "..." }

credential_lease

Manage CRP credential leases — renew or revoke.

{
  "name": "credential_lease",
  "arguments": {
    "lease_id": "lease_abc123",
    "action": "renew"
  }
}

policy_check

Validate an access request against policy rules without retrieving the credential.

{
  "name": "policy_check",
  "arguments": {
    "key": "aws/production",
    "requester": "agent:deploy-bot",
    "action": "retrieve"
  }
}

Returns: { "allowed": true, "policy": "deploy-agents-aws", "reason": "Matched role: deploy" }

audit_log

Query the audit trail for credential access events.

{
  "name": "audit_log",
  "arguments": {
    "key": "aws/production",
    "since": "2025-01-01T00:00:00Z",
    "limit": 50
  }
}

Returns: { "events": [{ "action": "retrieve", "requester": "...", "timestamp": "...", "policy": "..." }] }

CRP — Credential Resolution Protocol

SanctumAI implements the Credential Resolution Protocol for standardized credential exchange between AI agents and services. CRP provides:

  • Scoped access — Credentials are issued with specific permissions
  • Lease management — Time-bound access with renewal and revocation
  • Audit trail — Every access is logged with requester, purpose, and policy

Learn more at crp.dev or read the spec.

SDKs

Supported Platforms

| Platform | Architecture | Package | |----------|-------------|---------| | macOS | Apple Silicon | @sanctumai/mcp-server-darwin-arm64 | | macOS | Intel | @sanctumai/mcp-server-darwin-x64 | | Linux | x64 | @sanctumai/mcp-server-linux-x64 | | Linux | ARM64 | @sanctumai/mcp-server-linux-arm64 | | Windows | x64 | @sanctumai/mcp-server-win32-x64 | | Windows | ARM64 | @sanctumai/mcp-server-win32-arm64 |

Links

License

MIT — see LICENSE.