
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@sanctumai/mcp-server
Advanced tools
SanctumAI MCP Server — Credential vault and CRP provider for AI agents
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.
# 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.
Download the binary for your platform from GitHub Releases and place it on your PATH.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"sanctum": {
"command": "npx",
"args": ["-y", "@sanctumai/mcp-server"]
}
}
}
Add to .cursor/mcp.json:
{
"mcpServers": {
"sanctum": {
"command": "npx",
"args": ["-y", "@sanctumai/mcp-server"]
}
}
}
Add to ~/.windsurf/mcp.json:
{
"mcpServers": {
"sanctum": {
"command": "npx",
"args": ["-y", "@sanctumai/mcp-server"]
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"sanctum": {
"command": "npx",
"args": ["-y", "@sanctumai/mcp-server"]
}
}
}
claude mcp add sanctum -- npx -y @sanctumai/mcp-server
Or add to ~/.claude/mcp.json:
{
"mcpServers": {
"sanctum": {
"command": "npx",
"args": ["-y", "@sanctumai/mcp-server"]
}
}
}
Add to your Codex MCP configuration:
{
"mcpServers": {
"sanctum": {
"command": "npx",
"args": ["-y", "@sanctumai/mcp-server"]
}
}
}
Add to your CoWork MCP configuration:
{
"mcpServers": {
"sanctum": {
"command": "npx",
"args": ["-y", "@sanctumai/mcp-server"]
}
}
}
SanctumAI uses stdio transport. Any MCP client can connect:
npx @sanctumai/mcp-server
Or use the binary directly after installing:
sanctum --mcp
vault_storeStore 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_retrieveRetrieve 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_deleteRemove a credential from the vault.
{
"name": "vault_delete",
"arguments": { "key": "aws/production" }
}
vault_listList available credentials (values are never returned).
{
"name": "vault_list",
"arguments": { "prefix": "aws/", "tags": ["production"] }
}
Returns: { "credentials": [{ "key": "aws/production", "metadata": { ... }, "created_at": "..." }] }
credential_resolveResolve 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_leaseManage CRP credential leases — renew or revoke.
{
"name": "credential_lease",
"arguments": {
"lease_id": "lease_abc123",
"action": "renew"
}
}
policy_checkValidate 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_logQuery 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": "..." }] }
SanctumAI implements the Credential Resolution Protocol for standardized credential exchange between AI agents and services. CRP provides:
Learn more at crp.dev or read the spec.
| 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 |
MIT — see LICENSE.
FAQs
SanctumAI MCP Server — Credential vault and CRP provider for AI agents
The npm package @sanctumai/mcp-server receives a total of 48 weekly downloads. As such, @sanctumai/mcp-server popularity was classified as not popular.
We found that @sanctumai/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.