From 593335648fbaa1cc5d3d262a78b0014e524f9725 Mon Sep 17 00:00:00 2001 From: Pouzor Date: Fri, 13 Mar 2026 16:45:51 +0100 Subject: [PATCH] chore: add mcp/.env.example --- mcp/.env.example | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mcp/.env.example diff --git a/mcp/.env.example b/mcp/.env.example new file mode 100644 index 0000000..104ba2e --- /dev/null +++ b/mcp/.env.example @@ -0,0 +1,12 @@ +# MCP Server — copy to .env and fill in values + +# Authenticates AI clients (Claude Code, Claude Desktop, etc.) → MCP server +# Generate: python3 -c "import secrets; print('mcp_sk_' + secrets.token_hex(24))" +MCP_API_KEY=mcp_sk_changeme + +# Authenticates MCP server → backend (must match MCP_SERVICE_KEY in backend .env) +# Generate: python3 -c "import secrets; print('svc_' + secrets.token_hex(24))" +MCP_SERVICE_KEY=svc_changeme + +# Backend URL — use http://backend:8000 in Docker, http://localhost:8000 for local dev +BACKEND_URL=http://localhost:8000