chore: clarifying language

This commit is contained in:
ajspig 2026-03-31 15:17:36 -04:00
parent 6886bfe88d
commit 0ca40e0694
3 changed files with 1 additions and 3 deletions

View File

@ -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):

View File

@ -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

View File

@ -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,