Shared memory and context tools for agentic work.
Code Rooms
# MCP Host Refresh
Use this when the repo-local `m1nd-mcp` binary works, but a client such as
Codex, Claude, Cursor, Windsurf, Cline, or another MCP host still exposes an
older or partial tool surface.
The most common symptom is simple:
- local smoke sees `trust_selftest`, `ingest`, `seek`, `help`, `recovery_playbook`, and `doctor`
- the host session only sees some of those tools
- retrieval looks blocked or stale even after ingest
Another common symptom is more abrupt:
- a tool call fails with `Transport closed`
That is not graph staleness. It means the MCP transport died before m1nd could
execute a tool. Recovery tools such as `doctor`, `recovery_playbook`, and
`ingest` cannot run through that closed transport. Prove the binary locally,
restart/rebind the host MCP client or open a fresh session, then call
`trust_selftest` or `session_handshake` on the newly launched binding.
A third symptom is a cross-repo binding mismatch:
- the active graph is populated for repo A
- a tool call passes a scope/path from repo B
- retrieval returns blocked or zero candidates even though repo B has content
Current builds surface this as `wrong_workspace_binding` in `trust_selftest`,
`session_handshake`, `recovery_playbook`, `doctor`, and `validate_plan`. That
means the graph may be fine; the host is just bound to the wrong workspace for
this task.
## 1. Prove The Local Binary First
From the repo root:
```bash
cargo build -p m1nd-mcp
python3 scripts/m1nd_agent_demo.py --repo . --transport stdio --json
python3 scripts/m1nd_agent_demo.py --repo . --transport http --json
```
Both outputs should report:
- `schema=m1nd-agent-first-demo-v0`
- `trust.verdict=full_trust`
- `checks.trust_selftest_full_trust=true`
- `checks.seek_scanned_ingested_graph=true`
- `checks.negative_trust_selftest_validated=true`
If these fail, fix the local binary or repo ingest path first. Do not blame the
host binding yet.
## 2. Compare The Host Tool Surface
In the client, inspect its `tools/list` result. A safe host surface should expose
at least:
```text
health
trust_selftest
session_handshake
recovery_playbook
doctor
ingest
seek
help
If `trust_selftest` is visible, call it first:
```json
{"agent_id":"dev"}
If the task names a target repo or absolute path, pass it as `scope`:
{"agent_id":"dev","scope":"/path/to/intended/repo"}
If it returns `full_trust`, continue with m1nd-first work. If it returns any
other verdict, follow the embedded `recovery_playbook` or call
`recovery_playbook` with the same evidence.
## 3. When Only `health` Is Visible
Some hosts can still expose `health` while hiding newly added tools. In that
case, call `health` and inspect:
- `tool_surface_contract.required_host_visible_tools`
- `host_binding_alignment`
- `binding_fingerprint`
If the contract requires tools the host does not list, treat the session as
`degraded_host_tool_surface`. Use the local demo output as runtime truth and
verify final answers against files until the client refreshes its MCP binding.
## 4. Refresh The Client Binding
Recommended order:
1. Rebuild `m1nd-mcp`.
2. Confirm the MCP config points at the rebuilt binary.
3. Set `M1ND_WORKSPACE_ROOT` to the intended repo/workspace when the host lets
you configure environment variables.
4. Restart the MCP server process if the host manages it separately.
5. Reload or restart the client window/session.
6. Re-run `tools/list`.
7. Call `trust_selftest`.
If the error is `Transport closed`, the old binding is already gone. Skip graph
recovery calls in that session and relaunch the host binding first.
If you need to keep working before the host is rebound, bypass the stale host
with the agent CLI:
m1nd agent doctor --repo /path/to/project --json
m1nd agent next --repo /path/to/project --query "focused task" --json
m1nd agent recover --repo /path/to/project --from "Transport closed" --json
m1nd agent trust --repo /path/to/project --ensure-ingest --json
m1nd agent orient --repo /path/to/project --query "focused task" --mode short --json
These commands launch a fresh local runtime outside the client cache and bind it
to `M1ND_WORKSPACE_ROOT=/path/to/project`. They do not refresh the open host;
they give the agent a deterministic bypass and the exact rebind/recovery path.
`agent next`/`agent auto` only chooses the next safe command; it does not claim
the live host has reloaded tools or repaired graph truth.
For agent-driven repair, use the self-update surface first:
m1nd update check --channel beta
m1nd update status --channel beta
m1nd update plan --channel beta
m1nd update apply --channel beta --yes
m1nd update verify --repo /path/to/m1nd --transport stdio
m1nd hosts status --host all --project /path/to/project --json
m1nd hosts plan --host all --project /path/to/project --json
m1nd hosts apply --host all --project /path/to/project --yes --json
`m1nd update` is deliberately outside MCP, so it can still help when the MCP
transport is stale or closed. `check`, `status`, and `plan` never mutate.
`status` is the preferred agent cockpit when the situation is unclear: it
returns the package/runtime/PATH/agent-pack state, visible runtime process
count, and explicit `host_rebind_proven=false` so agents do not mistake a fresh
binary for a refreshed host binding. With `--yes`,
`apply` updates the npm package when the selected channel is ahead, installs the
native runtime from a GitHub Release asset when available, falls back to Cargo
when needed, refreshes agent pack files when allowed, and records a runtime
backup for rollback. Then the agent or human must restart/rebind the host so it
launches the updated binary and refreshes its cached tool list.
When the problem is host-specific, run `m1nd hosts status` before changing
anything. It is a read-only readiness contract for the supported packaged host
surfaces and reports agent-pack files, likely MCP config wiring, runtime/PATH
alignment, workspace hints, and `host_rebind_proven=false`. Treat a red host as
an installation/binding issue until a fresh host session proves otherwise.
If host config points to an absolute current managed runtime, a stale
`m1nd-mcp` on `PATH` is a shadow warning only, not proof the host is stale. If
the host launches `PATH` or the config target is unknown, stale `PATH` is
actionable. Use `m1nd hosts plan` for the exact rebind recipe, then rebind or
open a fresh host session; do not claim a cached tool list refreshed inside the
already-open client.
Then use `m1nd hosts plan` for the exact per-host recipe. It emits the MCP
snippet with `M1ND_WORKSPACE_ROOT`, candidate config paths, rebind steps, and
verification commands, but it does not edit host files.
Use `m1nd hosts apply` only when you want the local mutation step. Without
`--yes` it is still a dry-run preview. With `--yes`, it can install or refresh
agent-pack files and write canonical MCP config snippets for known hosts. It
still cannot prove rebind, refresh the live client's cached tool list, fix
graph/ingest/retrieval state, or fully automate generic-host config paths.
For a live multi-agent session, use `--no-kill` when you need to update the
managed binary without stopping current hosts:
m1nd update apply --channel beta --yes --no-kill
`m1nd restart --source /path/to/m1nd --yes` remains the lower-level source
checkout repair helper. It is useful when you are developing a local checkout
and want to build/install that checkout directly instead of resolving a release
channel.
For hosts that cache tool schemas per conversation or workspace, start a new
conversation/session after rebuilding the binary. The old conversation may keep
the previous tool registry even though the local binary is correct.
## 5. Recovery Payload For Agents
When a host surface is suspicious, pass the host evidence into `trust_selftest`
or `recovery_playbook`:
{
"agent_id": "dev",
"observed_tool": "tools/list",
"observed_proof_state": "blocked",
"observed_tool_count": 3,
"available_tools": ["health", "seek", "doctor"],
"missing_tools": ["trust_selftest", "ingest", "recovery_playbook"]
}
For blocked retrieval after a populated ingest:
"observed_tool": "seek",
"observed_candidates": 0
The important rule is to compare binding fingerprints before falling back to
manual search. If the local stdio/HTTP demo and the host session disagree, the
problem is likely host binding freshness, not the graph model itself.
For a wrong workspace binding, include the suspicious target scope:
"observed_candidates": 0,
"scope": "/path/to/intended/repo"
If the result includes `context_guard.wrong_workspace_binding=true`, rebind the
host with `M1ND_WORKSPACE_ROOT=/path/to/intended/repo`, ingest that workspace on
the same binding, or choose `federate_auto`/`federate` for intentional cross-repo
reasoning. If the open host cannot be rebound now, run an isolated local probe
with `m1nd agent orient --repo /path/to/intended/repo --mode short --json` and
use that bounded m1nd orientation before raw `rg`/manual reads. Do not keep
retrying retrieval against the old workspace.
If the active binding is inside the requested repo rather than unrelated, treat
it as partial scope: `nested_workspace_binding` for subdirectories and
`file_level_binding` for docs, PRDs, L1GHT files, or generated handoffs. These
bindings can be useful for local context, but they do not prove repo-wide code
coverage or implementation truth.
## Limits
This guide does not force any client to reload its MCP registry. It gives the
agent a deterministic way to classify the session, preserve evidence, and avoid
treating a stale host surface as a failed graph.