From e042b6d26d7dbc71f11ff068eb5361eb3a004adf Mon Sep 17 00:00:00 2001 From: mathias Date: Thu, 2 Jul 2026 07:00:53 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20add=20.mcp.json=20(brain=20+=20gitea)?= =?UTF-8?q?=20=E2=80=94=20wire=20tapir=20for=20the=20single-harness=20work?= =?UTF-8?q?flow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tapir had no MCP config at all — a hyperguild session here couldn't reach brain or Gitea, breaking the report-back path before it could start. Matches the shape now standard post-consolidation (hyperguild#75/#76, infra#178 template refresh). Prerequisite for tapir#20 being run as the first real workflow test. --- .mcp.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..c967ef1 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,18 @@ +{ + "mcpServers": { + "brain": { + "type": "http", + "url": "https://brain-mcp.d-ma.be/mcp", + "headers": { + "Authorization": "Bearer ${BRAIN_MCP_TOKEN}" + } + }, + "gitea": { + "type": "http", + "url": "https://git-mcp.d-ma.be/mcp", + "headers": { + "Authorization": "Bearer ${GITEA_MCP_TOKEN}" + } + } + } +}