From 497e99eed4a26d497ec5c45ac7d5aabbdb843ac9 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 20 Jul 2026 02:13:39 +0000 Subject: [PATCH] chore(mcp): add project-scoped .mcp.json for Render MCP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Registers Render's hosted MCP as a project-scoped HTTP server so Claude Code sessions on this repo pick it up automatically. Auth is header-only with ${RENDER_API_KEY} env-var expansion — no secret is committed; set RENDER_API_KEY in the environment config. Sessions without the var just get a missing-variable warning and skip the server. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01WNFuSyshwpRcxozVZEui5K --- .mcp.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 000000000..b7f2433ac --- /dev/null +++ b/.mcp.json @@ -0,0 +1,11 @@ +{ + "mcpServers": { + "render": { + "type": "http", + "url": "https://mcp.render.com/mcp", + "headers": { + "Authorization": "Bearer ${RENDER_API_KEY}" + } + } + } +}