knomit for Claude Cowork — MCP memory integration
Claude Cowork talks to knomit through the same stdio MCP bridge that every
other MCP client uses. There is no Cowork-specific code in knomit — you register
knomit-bridge as an MCP server in Cowork’s configuration, exactly as you would
for Claude Desktop.
Prerequisites
Section titled “Prerequisites”- A running knomit server. The simplest path is the
desktop app (
Knomit.app/knomit-desktop), which boots the server on a local port and writes theserver.jsonlockfile the bridge uses to discover it. A bareknomit serveonlocalhost:19278works too. - The
knomit-bridgebinary on disk. The desktop app symlinks it into$KNOMIT_HOME/bin(default~/.knomit/bin) on launch; otherwise point at the built binary.
Configure Cowork
Section titled “Configure Cowork”Add knomit-bridge as an MCP server in the Claude Cowork config file (see
Cowork’s own documentation for the exact config-file location and schema). The
entry mirrors a Claude Desktop server:
{ "mcpServers": { "knomit": { "command": "/Users/<you>/.knomit/bin/knomit-bridge" } }}Optional arguments select a different repo, or bind the server to a lens instead:
{ "mcpServers": { "knomit": { "command": "/Users/<you>/.knomit/bin/knomit-bridge", "args": ["--repo", "work"] } }}- Exactly one of
--repo <name>or--lens <name>is required — there is no default repo to fall back to.--lensconnects to/api/v1/lenses/<name>/mcpinstead, and the two are mutually exclusive. - There is no
--profileflag. Profile is a per-repo server setting; the?profile=query parameter is deprecated and ignored. - If the server is not on the default port and the lockfile isn’t found, pass the
base URL as a positional argument (or set
KNOMIT_BASE_URL), e.g."args": ["http://localhost:19278"].
Once registered, Cowork sees the eight knomit MCP tools — see
MCP tools. knomit_repos is the one to call first: it takes
no parameters and returns the binding name plus a mount table (name, repo id,
branch, read or read+write role, and the src:// source slug where one is
set), which tells a Cowork session what it is actually pointed at.