diff --git a/docs/v3/guides/integrations/claude-code.mdx b/docs/v3/guides/integrations/claude-code.mdx index 2e49a9c6..cdec3237 100644 --- a/docs/v3/guides/integrations/claude-code.mdx +++ b/docs/v3/guides/integrations/claude-code.mdx @@ -344,7 +344,7 @@ Navigate to Claude Desktop's custom MCP servers settings and add Honcho: } ``` -**Optional customization** — You can also set a custom assistant name: +**Optional customization** — You can also set a custom assistant name and workspace ID: ```json { @@ -359,20 +359,21 @@ Navigate to Claude Desktop's custom MCP servers settings and add Honcho: "--header", "X-Honcho-User-Name:${USER_NAME}", "--header", - "X-Honcho-Assistant-Name:${ASSISTANT_NAME}" + "X-Honcho-Assistant-Name:${ASSISTANT_NAME}", + "--header", + "X-Honcho-Workspace-ID:${WORKSPACE_ID}" ], "env": { "AUTH_HEADER": "Bearer ", "USER_NAME": "", - "ASSISTANT_NAME": "" + "ASSISTANT_NAME": "", + "WORKSPACE_ID": "" } } } } ``` -Workspace is selected per tool via `workspace_id`. You can also set `X-Honcho-Workspace-ID` on the connection to fill that argument by default. Use `list_workspaces` to discover IDs. - ### Step 3: Restart Claude Desktop Upon relaunch, Honcho should start and the tools will be available.