Install
Install the CLI globally:
npm install -g wydcode
Or run it one-off with npx if you do not want a global install.
WYD Code is the developer-facing product built on top of MumpixDB. Use it to link projects, inspect runtime health, expose MCP tools to Codex, Claude, and Cursor, and carry shared memory across repos and sessions.
Install the CLI globally:
npm install -g wydcode
Or run it one-off with npx if you do not want a global install.
This is the fastest end-to-end check: initialize WYD Code, write one memory key, read it back, then verify the same flow from Codex through MCP.
npm install -g wydcode wydcode-mcp
wydcode init --cloud
wydcode status --cloud
cd /path/to/your-repo
wydcode link
wydcode projects
With wydcode-mcp configured in Codex, ask:
Store "hello from codex" at memory^project^yourrepo^hello.
Read memory^project^yourrepo^hello.
Initialize WYD Code in cloud mode:
wydcode init --cloud
wydcode status --cloud
This creates your local config in ~/.wydcode/config.json and points the CLI at the hosted runtime.
It does not change your code. It bootstraps the WYD Code runtime config and project registration so your tools can share the same memory base.
Run this once in each repo you want attached to the same memory ledger:
cd /path/to/project
wydcode link
Useful checks:
wydcode projects
wydcode projects --json
wydcode where
wydcode init --cloud
wydcode link
wydcode doctor --cloud
wydcode status --cloud --json
wydcode projects --json
wydcode version
wydcode where
Install the MCP bridge:
npm install -g wydcode-mcp
Then register it in your MCP-capable tools.
[mcp_servers.wydcode]
command = "wydcode-mcp"
{
"mcpServers": {
"wydcode": {
"command": "wydcode-mcp"
}
}
}
Once the MCP server is loaded, AI tools can call these WYD Code tools:
Check WYD Code status in cloud mode.
List my linked WYD Code projects.
Store "from codex" at memory^project^myrepo^hello.
Read memory^project^myrepo^hello.