safe-key-mcp
MCP server enabling AI agents to use secrets (API keys, tokens) via encrypted vault, executing HTTP/shell/SSH actions server-side while never exposing secret values to the AI.
README
safe-key-mcp
An MCP server for safe secret access by AI agents. Secrets are stored encrypted. AI agents see only names and descriptions, never values. All actions are executed server-side. Outputs are scrubbed before being returned.
Context — Why this project exists
Today, AI coding agents (Claude, GPT, Codex, etc.) increasingly need to interact with authenticated services: GitHub APIs, cloud providers, databases, SSH servers, email, etc.
The current solutions are problematic:
| Approach | Problem |
|---|---|
| Paste tokens in the chat | Token ends up in conversation history, logs, and LLM provider servers |
| Environment variables | AI can echo $TOKEN and see the value |
.env files |
AI can cat .env |
| 1Password MCP | Proprietary, paid, limited to 1Password users |
The fundamental issue: every existing approach eventually exposes the secret value to the AI as plaintext text — which gets sent to inference servers, stored in logs, and leaked in conversation history.
The real threat model
The AI is not the enemy. The real risks are:
- Accidental leaks in logs, debug output, error messages
- Prompt injection from a malicious website extracting secrets
- Conversation history readable by developers or stored on LLM servers
- Verbose tool output that echoes back headers, URLs, or environment variables
We don't need military-grade sandboxing. We need secrets to never appear in the AI's context window.
How it works
┌─────────────────────────────────────┐
│ safe-key-mcp server │
│ │
│ vault.enc (AES-256-GCM encrypted) │
│ ┌─────────────────────────────┐ │
│ │ github_token = ghp_xxx │ │
│ │ api_key = sk-xxxxx │ │
│ │ ssh_key_ovh = -----BEGIN… │ │
│ └─────────────────────────────┘ │
│ │
│ MCP Tools: │
│ • list_secrets() → names only │
│ • http_request(secret, url, …) │
│ • shell_exec(secret, template) │
│ • ssh_exec(secret, host, cmd) │
│ │
│ Output sanitizer: │
│ Scrubs all known secret values │
│ from every response before sending │
└──────────────┬──────────────────────┘
│
[names only ↑] [scrubbed output ↓]
│
┌──────────────┴──────────────────────┐
│ AI Agent │
│ "Use github_token to GET /repos…" │
│ │
│ Never sees: ghp_xxx │
│ Never sees: sk-xxxxx │
│ Never sees: -----BEGIN… │
└──────────────────────────────────────┘
Encryption
- AES-256-GCM authenticated encryption
- Master password derived via PBKDF2-HMAC-SHA256 (600,000 iterations)
- Each save uses a fresh random salt (16 bytes) and nonce (12 bytes)
- Vault file is a single binary blob — not human-readable
Sanitizer
The output sanitizer is a defence-in-depth measure. It replaces any occurrence of a known secret value with [REDACTED] in all tool responses. This catches:
- Error messages that echo back a URL containing a token
- Verbose curl/HTTP output that includes headers
- Shell command output that accidentally prints environment variables
It is not a security boundary against a determined attacker with shell access.
MCP Tools
| Tool | What the AI sends | What the AI receives |
|---|---|---|
list_secrets |
nothing | names + descriptions (no values) |
http_request |
secret_name, url, method, auth_style |
HTTP response with values scrubbed |
shell_exec |
secret_name, command template with {SECRET} |
stdout/stderr with values scrubbed |
ssh_exec |
secret_name, host, username, command |
stdout/stderr with values scrubbed |
http_request auth styles
bearer—Authorization: Bearer <value>basic_user— HTTP Basic Auth (secret as username)basic_password— HTTP Basic Auth (secret as password)header— Custom header (specifyheader_name)query_param— URL query parameter (specifyparam_name)
shell_exec template
The command must contain exactly one {SECRET} placeholder:
git clone https://user:{SECRET}@github.com/org/repo.git
The server replaces {SECRET} with the actual value, runs the command, and scrubs the output.
Quick start
Prerequisites
- Python 3.10+
pip install -e ".[dev]"
Add secrets (CLI)
export SAFE_KEY_MASTER_PASSWORD="your-strong-password"
# Interactive (password prompt, value never shown)
python -m safe_key_mcp add github_token -d "GitHub Personal Access Token" -t "ci,github"
python -m safe_key_mcp add openai_key -d "OpenAI API key" -t "llm"
# List (values never shown)
python -m safe_key_mcp list
Run the server
export SAFE_KEY_MASTER_PASSWORD="your-strong-password"
python -m safe_key_mcp serve --host 127.0.0.1 --port 8500
Docker
cp .env.example .env
# Edit SAFE_KEY_MASTER_PASSWORD in .env
docker compose up -d
# Server available at http://localhost:8500/sse
Connect to your AI agent
Add to your MCP client config (e.g. OpenCode, Claude Desktop):
{
"mcpServers": {
"safe-key": {
"url": "http://localhost:8500/sse"
}
}
}
Project structure
src/safe_key_mcp/
├── __init__.py # Package docstring
├── __main__.py # CLI: serve / add / list / delete
├── config.py # Configuration via environment variables
├── vault.py # AES-256-GCM encrypted storage
├── sanitizer.py # Output scrubbing
└── server.py # MCP server with 4 tools
tests/
├── conftest.py
├── test_vault.py # 8 tests — encryption, persistence, auth
├── test_sanitizer.py # 6 tests — scrubbing, edge cases
└── test_server.py # 3 tests — tool integration
Environment variables
| Variable | Default | Description |
|---|---|---|
SAFE_KEY_MASTER_PASSWORD |
(required) | Master password for vault encryption |
SAFE_KEY_VAULT_PATH |
./data/vault.enc |
Path to the encrypted vault file |
SAFE_KEY_HOST |
0.0.0.0 |
SSE server host |
SAFE_KEY_PORT |
8500 |
SSE server port |
Status
This project is under active development and has not been tested in production.
- Core vault encryption: working (17/17 tests passing)
- MCP tools: implemented, not yet tested with real services
- Docker deployment: ready, not yet deployed
- Sanitizer: functional, basic pattern matching
What's next — evolution toward a Service Gateway
During development, we realized that this "vault + secret names" approach still has a conceptual flaw: the AI knows that secrets exist. It manipulates secret names, chooses auth styles, and builds authenticated requests — it's just one abstraction layer away from the values.
The next evolution of this project will be a Service Gateway where:
- The AI doesn't know secrets exist at all
- It just calls services:
service_call("github", "GET", "/repos/owner/repo") - Auth is resolved entirely server-side by config mapping
- The AI's mental model is "use this service", not "use this secret"
This is a fundamentally different approach — closer to how a browser handles cookies than how a developer handles API keys. That work will happen in a separate repository.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。