Walrus Memory MCP
Provides tools for interacting with Walrus Memory, a decentralized memory service on the Sui blockchain, allowing agents to remember, recall, analyze, and restore memory entries with Sui wallet-based authentication.
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., "@Walrus Memory MCPRemember that I prefer dark mode"
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.
Walrus Memory MCP
Walrus Memory MCP is a stdio Model Context Protocol server for Walrus Memory. It lets MCP clients such as Cursor, Claude Desktop, Antigravity, and Claude Code connect to the Walrus Memory relayer without manually configuring remote headers or auth tokens.
On first use, the package advertises a memwal_login tool to the MCP client. The agent can call it inline — no separate CLI command needed. The tool opens a browser-based wallet login flow and stores local credentials at ~/.memwal/credentials.json. A matching memwal_logout tool clears the saved credentials.
Quick Start
Add Walrus Memory MCP to your MCP client config:
{
"mcpServers": {
"memwal": {
"command": "npx",
"args": ["-y", "@mysten-incubation/memwal-mcp"]
}
}
}Related MCP server: LedgerMem MCP Server
Login
Run the login flow manually:
npx -y @mysten-incubation/memwal-mcp loginThe command opens your browser, asks you to connect your Sui wallet, and saves credentials locally.
Commands
memwal-mcp
memwal-mcp login
memwal-mcp --logout
memwal-mcp --helpOptions
Use CLI flags or environment variables to override the default Walrus Memory endpoints.
CLI flag | Environment variable | Description |
|
| Override the relayer base URL. |
|
| Override the web app URL used during login. |
|
| Friendly delegate-key label shown in Walrus Memory. |
|
| Default memory namespace applied when the agent omits one. |
Enable verbose stderr logging with MEMWAL_MCP_DEBUG=1.
Default Namespace
By default the MCP tool schemas expose an optional namespace argument and the
agent has to pass it on every memwal_remember / memwal_recall /
memwal_analyze call (and memwal_restore requires it). Set a default once in
your client config instead:
{
"mcpServers": {
"memwal": {
"command": "npx",
"args": ["-y", "@mysten-incubation/memwal-mcp", "--namespace", "work"]
}
}
}Or with an environment variable (e.g. Claude Desktop / Codex env blocks):
{
"mcpServers": {
"memwal": {
"command": "npx",
"args": ["-y", "@mysten-incubation/memwal-mcp"],
"env": { "MEMWAL_NAMESPACE": "work" }
}
}
}Resolution and precedence:
Per-call wins: an explicit, non-empty
namespacein a tool call is always used as-is — the configured default never overrides it.Configured default: when the agent omits
namespace, the package injects--namespace(CLI) orMEMWAL_NAMESPACE(env); CLI wins over env.Unset: if neither is configured, the call is forwarded without a
namespaceand the relayer applies its own"default"namespace.
memwal_restore still advertises namespace as required in its schema, so
agents normally pass one explicitly. If a default is configured and the agent
calls memwal_restore without a namespace, the configured default is filled
in the same way.
Verifying namespace injection
No automated test runner ships with this package (consistent with the rest of the monorepo). To verify manually:
Start the server pinned to a namespace and with debug logging:
MEMWAL_MCP_DEBUG=1 npx -y @mysten-incubation/memwal-mcp --namespace demo-nsFrom your MCP client, ask the agent to remember a fact without specifying a namespace, then recall it without a namespace — the recall should return that fact (both landed in
demo-ns).Ask the agent to recall with an explicit different namespace (e.g.
other) — it should not return the fact, proving the per-call value overrode the default.
The injection itself is the pure, exported applyDefaultNamespace(msg, ns)
function in src/bridge.ts if you want to assert it directly.
Environment Presets
memwal-mcp --prod
memwal-mcp --staging
memwal-mcp --localYou can also pass explicit URLs:
{
"mcpServers": {
"memwal": {
"command": "npx",
"args": [
"-y",
"@mysten-incubation/memwal-mcp",
"--relayer",
"https://relayer-staging.memory.walrus.xyz"
]
}
}
}Credential Storage
Credentials are stored locally in ~/.memwal/credentials.json. To remove them:
npx -y @mysten-incubation/memwal-mcp --logoutLicense
Apache-2.0
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- -license-quality-maintenanceIntegrates the Mem0 Memory API with MCP-compatible clients to provide AI agents with persistent, long-term memory capabilities. It enables users to add, search, update, and delete memories to maintain context and personalization across different interactions.

LedgerMem MCP Serverofficial
Alicense-qualityBmaintenanceEnables persistent memory storage and retrieval for MCP clients, allowing AI assistants to remember facts and context across conversations.10MIT
Kova Mind MCP Serverofficial
AlicenseAqualityCmaintenanceEnables AI memory persistence and secure credential management via vault tools for MCP-compatible clients like Claude Desktop, Cursor, and VS Code.126MIT- Alicense-qualityCmaintenanceProvides encrypted, portable memory for AI agents via MCP, allowing fact storage, conversation recall, and cross-machine sync using Arweave.1050MIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Cross-vendor AI memory over MCP. One semantic store, readable and writeable from every MCP client.
Cross-AI personal memory. Save once in ChatGPT, recall in Claude, Mistral, Grok, or any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/CommandOSSLabs/walrus-memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server