From 0ca40e0694a6f16bf8f734cebb574e7ce84aef5b Mon Sep 17 00:00:00 2001 From: ajspig Date: Tue, 31 Mar 2026 15:17:36 -0400 Subject: [PATCH] chore: clarifying language --- docs/v3/guides/integrations/mcp.mdx | 1 - mcp/README.md | 1 - mcp/src/index.ts | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/v3/guides/integrations/mcp.mdx b/docs/v3/guides/integrations/mcp.mdx index 27c049c5..37d2f977 100644 --- a/docs/v3/guides/integrations/mcp.mdx +++ b/docs/v3/guides/integrations/mcp.mdx @@ -236,7 +236,6 @@ You can customize the assistant name and workspace ID by adding extra headers. B | `X-Honcho-User-Name` | *required* | What the AI should call you | | `X-Honcho-Assistant-Name` | `"Assistant"` | Name for the AI peer | | `X-Honcho-Workspace-ID` | `"default"` | Isolate memory per project | -| `X-Honcho-Base-URL` | `https://api.honcho.dev` | For self-hosted instances | Example with all headers (Claude Desktop format): diff --git a/mcp/README.md b/mcp/README.md index f21a3768..e7e3cd14 100644 --- a/mcp/README.md +++ b/mcp/README.md @@ -34,7 +34,6 @@ A Cloudflare Worker that implements the [Model Context Protocol (MCP)](https://m | Header | Default | Description | | --- | --- | --- | | `X-Honcho-Workspace-ID` | `"default"` | Workspace to operate in | -| `X-Honcho-Base-URL` | `https://api.honcho.dev` | Custom API base URL | ## Available Tools diff --git a/mcp/src/index.ts b/mcp/src/index.ts index fae572cb..15733beb 100644 --- a/mcp/src/index.ts +++ b/mcp/src/index.ts @@ -5,7 +5,7 @@ import { createServer } from "./server.js"; const CORS_ORIGIN = "*"; const CORS_METHODS = "GET, POST, DELETE, OPTIONS"; const CORS_ALLOWED_HEADERS = - "Content-Type, Authorization, X-Honcho-User-Name, X-Honcho-Base-URL, X-Honcho-Workspace-ID, X-Honcho-Assistant-Name"; + "Content-Type, Authorization, X-Honcho-User-Name, X-Honcho-Workspace-ID, X-Honcho-Assistant-Name"; const CORS_HEADERS = { "Access-Control-Allow-Origin": CORS_ORIGIN,