agentkeychain
Securely stores and retrieves Cloudflare API keys with scope-based access control, enabling agents to use credentials for Cloudflare services.
Securely stores and retrieves OpenAI API keys with scope-based access control, enabling agents to use credentials for OpenAI services.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agentkeychainstore my GitHub token with scope repo:read"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
agentkeychain
Agent-native zero-knowledge credential vault. CLI + MCP Server, single binary. Type your password ONCE. Never paste a key into chat again.
For Humans (the only section you need)
You only need 4 commands. Everything else is for agents and developers.
agentkeychain init # One-time: set a master password (≥8 chars, remember it!)
agentkeychain store # Add a new secret — it asks you: name? value? scope?
agentkeychain get NAME # Retrieve a secret
agentkeychain list # See all stored secrets (metadata only, NEVER values)⬆️ That's it. That's all you need to remember. Everything below is for AI agents, developers, and power users.
Real-world usage
# Step 1: Initialize (do this ONE TIME per machine)
$ agentkeychain init
Master password (min 8 chars): ********
✓ vault initialized
✓ master password saved to OS keychain
# 👆 After this, agentkeychain remembers your password in macOS Keychain.
# You will NEVER be asked to type it again. Your AI agent handles it.
# Step 2: Store your first secret
$ agentkeychain store
Name: openai
Value: ***[paste your key]* (hidden while typing)
Scope: openai:chat
✓ encrypted and stored: openai
# Step 3: Retrieve it when you need it (password auto-resolved from Keychain)
$ agentkeychain get openai
sk-proj-xxxxxxxxxxxx...
# Step 4: See what you have
$ agentkeychain list
NAME VERSION SCOPES UPDATED
openai 1 openai:chat 2026-07-06 04:56:24
# Delete old stuff
$ agentkeychain delete test-key --yes
✓ deleted: test-keyTalk to your agent instead
You don't even need to remember the commands. Just tell your AI assistant:
You say | Agent does (silently) |
"存一下这个 OpenAI key:sk-xxxxx" |
|
"帮我查一下 Cloudflare 的 token" |
|
"用 openai 帮我写段代码" |
|
"告诉我存了哪些 key" |
|
"把旧的 XX 删掉" |
|
Your agent asks the vault, not you. You stay out of the loop.
What you NEVER do
❌ Paste API keys into chat messages, emails, READMEs, or
.envfiles you commit❌ Write keys in code comments
❌ Screenshot a key and send it
❌ Re-type the same key 50 times across different tools
❌ Say "密码是多少来着" — it's in the vault, your agent knows how to get it
If you find yourself about to paste a key anywhere, stop and say: "存一下这个 key".
Related MCP server: API Locker
For Developers
What it does
CLI |
|
MCP Server | 5 tools ( |
Cross-agent delegate | Ed25519-signed time-limited scope-bounded tokens |
Audit chain | Tamper-evident Ed25519 signature chain over every operation |
Zero-knowledge | Master password never persisted; KEK derived via Argon2id on demand |
Single binary |
|
Install (Mac)
curl -L https://github.com/linsipeng/agentkeychain/releases/latest/download/agentkeychain-darwin-arm64 \
-o ~/.local/bin/agentkeychain
chmod +x ~/.local/bin/agentkeychain
agentkeychain --versionNo sudo needed. ~/.local/bin is already in PATH on macOS.
For Linux x64, replace darwin-arm64 with linux-x64 (or build from source).
First-time setup
agentkeychain init
# Master password: ******** (≥8 chars, never stored)
# → vault initialized at ~/.agentkeychain/
# → default identity: ak_xxx ("default")
# → ✓ master password saved to OS keychain (you'll never be asked again)That's the only time you type the password. Every subsequent store / get / list / delete / audit reads the password automatically from macOS Keychain.
CLI reference
Command | Description |
| Initialize vault, set master password, create default identity |
| Encrypt and store a credential |
| Decrypt and return a credential |
| List all credentials (metadata only) |
| Delete a credential (add |
| Show audit log |
| Start MCP server (stdio transport) |
| Issue a cross-agent delegate token |
| Print version |
Use as MCP Server
Add to any MCP-compatible client (Claude Desktop, Hermes, Codex, IDE plugins):
{
"mcpServers": {
"agentkeychain": {
"command": "/usr/local/bin/agentkeychain",
"args": ["serve"]
}
}
}The server exposes 5 tools:
Tool | Description |
| Encrypt + persist a secret (returns id, never the value) |
| Decrypt + return a secret (scope-checked) |
| List secret names (no values) |
| Remove a secret (scope-checked) |
| Read the audit log (no secret material) |
Security model
Argon2id (memory=64 MB, iterations=3) derives a KEK from master password
XChaCha20-Poly1305 AEAD encrypts each secret independently
Ed25519 signs audit entries + delegate tokens (offline-verifiable)
Client-side only — no server, no network call; vault file is fully encrypted
Zero-knowledge — master password is never written to disk
See ARCHITECTURE.md for the full threat model and competitor comparison.
Development
bun install # install deps
bun test # run all tests (41 tests)
bun run lint # eslint
bun run build # single-binary compile to bin/agentkeychain-bin
bun run typecheck # tsc --noEmitCI runs on every push to main — see .github/workflows/ci.yml.
License
MIT — see LICENSE.
Status
v0.1.0 — public alpha. Single binary works end-to-end. Breaking changes possible before v1.0.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceZero-knowledge password manager with MCP credential gateway. BIP-39 seed phrase recovery, deterministic passwords, policy-gated AI agent access with scope, rate limits, time windows, and step-up approval. Supports 70+ API key providers with hash-chain audit trail.Last updated3555MIT
- Alicense-qualityDmaintenanceEncrypted credential vault with a 21-tool MCP server. Store and manage LLM API keys, service API keys, and OAuth credentials — then let your AI agent list, reveal, rotate, rename, pause, and proxy calls through them.Last updatedMIT
- Alicense-qualityCmaintenanceEnables secure credential storage for AI agents by encrypting secrets and providing agent-invisible references, ensuring sensitive data never leaks to the model.Last updatedMIT

AgentValetofficial
AlicenseAqualityAmaintenanceIdentity and credential governance for AI agents. Every agent gets its own cryptographic identity, scoped short-lived credentials per platform, human approval on sensitive actions, and an immutable audit log.Last updated71MIT
Related MCP Connectors
Encrypted secret store and rotation for autonomous agent credentials
Encrypted A2A object storage for autonomous agent state and artifacts
Free self-serve Agent Passports for AI agents: signed, portable, offline-verifiable credentials.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/linsipeng/agentkeychain'
If you have feedback or need assistance with the MCP directory API, please join our Discord server