Install the Host Config
Run the following steps to configure Claude Code to launch the Contexity MCP server.1
Preview the config (dry run)
Inspect the changes before writing anything:
2
Apply the config
When the preview looks correct, write the configuration:
3
Confirm the MCP server command
The host install command writes the local config needed for Claude Code to launch the MCP server automatically. The server runs on stdio transport:You don’t need to run this command manually — Claude Code launches it using the config written in the previous step.
Expected Workflow
Claude Code uses Contexity the same way Codex does. At each stage of a task, it should:- Start a run — open a task-scoped context session with
context_start_run - Retrieve a pack — pull bounded, task-relevant context before making edits
- Map impact — call
context_impactbefore touching known files - Detect changes — record meaningful edits with
context_detect_changes - Capture useful events — store external sources, decisions, and signals as structured references
- Close the run — finalize the session and surface metrics with
context_close_run