local-kms-mcp-server
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., "@local-kms-mcp-serverGenerate a new Ed25519 signing key for agent-1"
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.
local-kms-mcp-server
Local-first, lightweight MCP server for per-agent key management.
Give every agent its own signing identity - without relying on external KMS or exposing private keys.
local-kms-mcp-server generates, stores, rotates, and uses signing keypairs entirely on the local machine. Keys never
leave the process, never touch the network, and stay under control.
Itβs built for MCP clients and agent runtimes that need isolated, composable identities for tasks such as DID/SSI flows, auth handshakes, challenge signing, and any workflow where agents must prove something cryptographically
What It Does
Generates signing keypairs scoped to a keyId (one identity per agent or task)
Stores keys locally using a simple file-based keystore
Rotates keys safely while preserving algorithm consistency
Signs base64 payloads without ever exposing private key material
Optionally encrypts keys at rest using AES-256-GCM
Runs over MCP via stdio (default) or HTTP when needed
Supported Algorithms
Algorithm | Tool value | Notes |
Ed25519 |
| Good default for general signing and DID-style use cases |
ECDSA secp256k1 |
| Common for Ethereum, Bitcoin, and other Web3 flows |
ECDSA P-256 |
| ES256, WebAuthn, and common cloud KMS compatibility |
ECDSA P-384 |
| Higher-security NIST P-384 environments |
Requirements
Node.js
>=24.0.0An MCP client that supports stdio or HTTP MCP servers
Quick Start
Stdio transport
Use stdio when running from Claude Desktop, Cursor, or another local MCP client.
{
"mcpServers": {
"local-kms": {
"command": "npx",
"args": ["-y", "local-kms-mcp-server"],
"env": {
"STORE_PATH": "/Users/yourname/.local-kms",
"ENCRYPT_STORE": "true",
"STORE_ENCRYPTION_KEY": "<base64-32-byte-key>"
}
}
}
}HTTP transport
Use HTTP only when you explicitly want a local network endpoint.
TRANSPORT=http PORT=8080 npx local-kms-mcp-serverEndpoint:
POST http://localhost:8080/mcpInstallation
Run directly with npx:
npx -y local-kms-mcp-serverOr install globally:
npm install -g local-kms-mcp-server
local-kms-mcp-serverConfiguration
Environment variable | Default | Description |
|
| Directory used for persisted key files |
|
| MCP transport: |
|
| HTTP port used only when |
|
| Set to |
| none | Base64-encoded 32-byte key required when encryption is enabled |
For local development there is an example file at .env.example, but for actual MCP client usage it is better to pass
values through the client's env configuration so startup is deterministic.
Generate an encryption key:
node -e "console.log(require('node:crypto').randomBytes(32).toString('base64'))"Tool Reference
All tool inputs are validated with Zod. Public keys and signatures are returned as base64 strings.
Tool | Purpose | Input | Output |
| Check whether a key exists |
|
|
| List all stored key IDs |
|
|
| Create and persist a new keypair |
|
|
| Return the stored public key for a key ID |
|
|
| Rotate an existing keypair using its stored algorithm |
|
|
| Sign a base64-encoded payload |
|
|
Notes:
generate_keyfails if thekeyIdalready existsrotate_keyincrements the storedversionsign_messageexpectsmessageto already be base64-encodedsign_messageaccepts an optionalalgooverride, but in normal usage the stored algorithm is usually what you want
Typical Usage Flow
Call
generate_keyfor a newkeyIdCall
get_key_infoto retrieve the public key for registration or distributionCall
sign_messagewhenever the agent needs to sign a challenge or payloadCall
rotate_keywhen you need new key material for the samekeyIdCall
check_keypairorlist_keysfor inventory and existence checks
Example sign_message payload:
{
"keyId": "key-1",
"message": "eyJub25jZSI6IjEyMyJ9"
}Storage Model
Unencrypted keys are stored as one file per key under ${STORE_PATH}:
${STORE_PATH}/${keyId}.jsonStored records contain:
{
"keyId": "key-1",
"algo": "ed25519",
"publicKey": "...",
"privateKey": "...",
"version": 1,
"createdAt": "2026-04-18T12:34:56.000Z"
}When ENCRYPT_STORE=true, the file contents are encrypted and persisted as base64 ciphertext instead of plaintext JSON.
Security Notes
Private keys never leave the server through MCP responses
Key files are written with
0600permissionsAt-rest encryption is optional but recommended for anything beyond throwaway local development
HTTP mode does not add authentication or TLS by itself; keep it behind a trusted local boundary or your own reverse proxy
keyIdvalues become filenames, so use stable, filesystem-safe IDs
Development
pnpm install
pnpm build
pnpm test
pnpm lint
pnpm format:checkRun locally after building:
pnpm startWatch the built output during development:
pnpm start:devExtending With New Algorithms
Implement a new adapter by extending
KeyAlgorithmAdapterRegister it in
src/keystore/index.tsExpose the adapter name through the relevant tool schema if users should be able to select it
import { KeyAlgorithmAdapter } from '../adapter.js';
import type { KeyPair } from '../types.js';
export class MyAdapter extends KeyAlgorithmAdapter {
readonly name = 'my-algo';
generate(): KeyPair {
/* ... */
}
sign(privateKey: string, data: Buffer): string {
/* ... */
}
verify(publicKey: string, data: Buffer, signature: string): boolean {
/* ... */
}
rotate(_currentKeyPair: KeyPair): KeyPair {
return this.generate();
}
}Project Layout
src/
config/ environment parsing and validation
keystore/ adapters, registry, and file-based storage
tools/ MCP tool registration and handlers
utils/ crypto helpers, errors, serializers
server.ts MCP server construction
main.ts stdio and HTTP entry point
test/ unit testsLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/Diegoescalonaro/local-kms-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server