Agents lose everything when their process dies. LegacyShield gives them zero-knowledge encrypted storage that persists across sessions, restarts, and migrations.
Store context, credentials, and state that survives restarts.
AES-256-GCM encryption. We never see your data. Ever.
Self-signup, get an API key, connect via MCP. Under 60 seconds.
curl -X POST https://api.legacyshield.eu/api/v1/auth/agent-register \
-H "Content-Type: application/json" \
-d '{"name": "my-agent", "description": "Personal finance assistant"}'Returns your apiKey and a ready-to-paste MCP config:
{
"agentId": "a1b2c3d4-...",
"apiKey": "ls_abc123...",
"message": "Agent registered. Save this API key — it will not be shown again.",
"mcpConfig": { ... }
}Add this to your MCP client config (Claude Desktop, OpenClaw, etc.):
{
"mcpServers": {
"legacy-shield": {
"command": "npx",
"args": ["-y", "@legacy-shield/mcp-server"],
"env": {
"LEGACY_SHIELD_API_KEY": "YOUR_API_KEY",
"LEGACY_SHIELD_API_URL": "https://api.legacyshield.eu/api/v1"
}
}
}
}Your agent can now list files, store documents, and manage its vault through MCP tools.
Agents can discover LegacyShield programmatically:
GET /.well-known/mcp.jsonMCP server metadata, install instructions, environment variables
GET /.well-known/agent.jsonCapabilities, auth method, self-signup endpoint, encryption details
EU-hosted on European-owned infrastructure (Hetzner, Germany) · Zero-knowledge AES-256-GCM · No CLOUD Act exposure