From 1cdb1ec5955c92c4c5a87bb1e4865c60c2220cd8 Mon Sep 17 00:00:00 2001 From: ajspig Date: Tue, 11 Aug 2026 17:45:22 -0400 Subject: [PATCH] chore: adding server schema --- mcp/server.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 mcp/server.json diff --git a/mcp/server.json b/mcp/server.json new file mode 100644 index 00000000..3257b9d3 --- /dev/null +++ b/mcp/server.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json", + "name": "io.github.plastic-labs/honcho", + "title": "Honcho", + "description": "Memory that reasons: continual learning for stateful agents. Better context, fewer tokens.", + "version": "3.0.0", + "repository": { + "url": "https://github.com/plastic-labs/honcho", + "source": "github" + }, + "remotes": [ + { + "type": "streamable-http", + "url": "https://mcp.honcho.dev", + "headers": [ + { + "name": "Authorization", + "description": "Honcho API key as a Bearer token. Create one at https://app.honcho.dev (starts with hch-). Send as: Bearer hch-...", + "isRequired": true, + "isSecret": true + }, + { + "name": "X-Honcho-Workspace-ID", + "description": "Optional. Target Honcho workspace; defaults to 'default' when omitted.", + "isRequired": false, + "isSecret": false + } + ] + } + ] +}