cryptoseed-mcp
Enables AI agents to perform symmetric and asymmetric encryption of text and files using secure storage in the macOS Keychain. It provides tools for identity management and secure messaging compatible with the CryptoSeed iOS app and CLI.
README
cryptoseed-mcp
MCP server for CryptoSeed encryption. Gives any MCP-compatible AI agent the ability to encrypt and decrypt text and files using ChaCha20-Poly1305 (symmetric) and X25519+HKDF (asymmetric).
Keys are stored in the macOS Keychain — never on disk in plain text.
Encrypted .seed files are fully compatible with the CryptoSeed iOS app.
Setup
1. Add to Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"cryptoseed": {
"command": "npx",
"args": ["-y", "cryptoseed-mcp"]
}
}
}
Restart Claude Desktop. The 11 CryptoSeed tools will appear automatically.
2. Or run directly
npx cryptoseed-mcp
Tools
Key management (symmetric)
| Tool | Description |
|---|---|
key_new |
Generate a 256-bit key, save to Keychain |
key_list |
List saved key aliases |
Identity management (asymmetric)
| Tool | Description |
|---|---|
identity_new |
Generate an X25519 keypair, save private key to Keychain |
identity_pubkey |
Print public key as base64 (share with senders) |
identity_list |
List saved identity aliases |
Encrypt
| Tool | Description |
|---|---|
encrypt_text |
Encrypt text with a symmetric key → base64 |
encrypt_file |
Encrypt a file → .seed file (CryptoSeed-compatible) |
encrypt_asym |
Encrypt a message to a recipient's public key → base64 blob |
Decrypt
| Tool | Description |
|---|---|
decrypt_text |
Decrypt base64 ciphertext with a symmetric key |
decrypt_file |
Decrypt a .seed file, restore original |
decrypt_asym |
Decrypt a message encrypted to your identity |
Agent-to-agent encrypted messaging
This is where it gets interesting. Each agent can have its own identity:
Agent A creates identity: identity_new "agent_a"
Agent A shares pubkey: identity_pubkey "agent_a" → <pubkey_b64>
Agent B encrypts to A: encrypt_asym "<pubkey_b64>" "secret payload" → <blob>
Agent A decrypts: decrypt_asym "agent_a" "<blob>" → "secret payload"
Only Agent A's private key (in its Keychain) can decrypt. The blob can travel through any channel — email, Slack, GitHub, another AI tool — without being readable.
File format compatibility
.seed files produced by this MCP server use the exact same binary format as:
- CryptoSeed iOS app
cryptoseedmacOS CLI
This means a file encrypted here can be decrypted in the iOS app (after importing the key) and vice versa.
Key transfer between tools
This MCP server and the cryptoseed CLI use separate Keychain entries (to avoid binary format conflicts). To use a key from the CLI in the MCP server, use the CLI's export/import commands:
cryptoseed key export mykey # → recovery envelope (base64)
# then in Claude: import the envelope via key_new or a future key_import tool
Requirements
- macOS (Keychain)
- Node.js >= 18
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.