This server is under active development and is not production-ready. APIs, tool names, and environment variables may change without notice. Do not rely on this server for anything beyond experimentation.
For a fully functional MCP server, use
apps/truvera-api.
A Model Context Protocol (MCP) server for interacting with the Truvera Wallet SDK using direct core/data-store packages (@docknetwork/wallet-sdk-core + @docknetwork/wallet-sdk-data-store-web). When complete, it will allow AI assistants to manage DIDs, hold credentials, and support DIDComm messaging via a local wallet.
| Area | Status |
|---|---|
| MCP server transport (stdio/http) | ✅ Scaffolded |
| Wallet SDK integration | ✅ Direct SDK integration (core + data-store packages) |
| DID management tools | ✅ Implemented (get_default_did, create_did, list_dids) |
| Credential management | ⏳ Planned |
| DIDComm messaging | ⏳ Planned |
| Tests | ⏳ Minimal |
| Docker support | ⏳ Not yet |
| Production hardening | ⏳ Not yet |
- In-memory storage only: The current wallet-server wiring uses in-memory local storage adapters. This is suitable for development and tests, but persistence and cloud sync hardening are still pending.
- No Docker image: There is no Dockerfile yet. The server can only be run locally via Node.js.
- No CI coverage: The wallet-server is not yet included in automated CI tests.
If you want to work on this server, here is how to get it running locally.
npm installcp .env.example .env
# Edit .env — at minimum, set WALLET_MASTER_KEYnpm run build# HTTP mode
MCP_MODE=http npm start
# STDIO mode
MCP_MODE=stdio npm start
# Development mode with hot-reload
npm run devUse the shared MCP Inspector instructions in the repo root README:
| Variable | Required | Default | Description |
|---|---|---|---|
WALLET_MASTER_KEY |
Yes | — | Master encryption key for the wallet |
MCP_MODE |
No | stdio |
Transport: http or stdio |
MCP_PORT |
No | 3010 |
HTTP port (only used when MCP_MODE=http) |
CHEQD_NETWORK |
No | testnet |
Cheqd network: testnet or mainnet |
EDV_STORAGE_URL |
No | https://edv.dock.io |
EDV cloud storage endpoint |
WALLET_NAME |
No | mcp-wallet |
Wallet label |
See WALLET_MCP_PLAN.md at the repo root for the full development plan.
apps/wallet-server/
├── src/
│ ├── index.ts # Server entry point
│ ├── wallet-client.ts # Wallet SDK wrapper
│ └── features/
│ ├── dids/ # DID management tools
│ └── credentials/ # Credential tools (planned)
├── package.json
├── tsconfig.json
└── README.md