🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@sanctumai/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sanctumai/mcp-server

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

latest
Source
npmnpm
Version
0.3.2
Version published
Maintainers
1
Created
Source

@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

PlatformArchitecturePackage
macOSApple Silicon@sanctumai/mcp-server-darwin-arm64
macOSIntel@sanctumai/mcp-server-darwin-x64
Linuxx64@sanctumai/mcp-server-linux-x64
LinuxARM64@sanctumai/mcp-server-linux-arm64
Windowsx64@sanctumai/mcp-server-win32-x64
WindowsARM64@sanctumai/mcp-server-win32-arm64

License

MIT — see LICENSE.

Keywords

mcp

FAQs

Package last updated on 14 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts