From 2de5f81871574551aed8f4abd8137b4cc798400a Mon Sep 17 00:00:00 2001 From: Bill Date: Mon, 29 Dec 2025 20:13:07 -0500 Subject: [PATCH] feat: add .env.example template --- .env.example | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..ef8f4a4 --- /dev/null +++ b/.env.example @@ -0,0 +1,15 @@ +# grist-mcp environment configuration + +# Server port (default: 3000) +PORT=3000 + +# Agent authentication token (required) +# Generate with: python -c "import secrets; print(secrets.token_urlsafe(32))" +GRIST_MCP_TOKEN=your-agent-token-here + +# Grist API keys (referenced in config.yaml) +GRIST_WORK_API_KEY=your-work-api-key +GRIST_PERSONAL_API_KEY=your-personal-api-key + +# Optional: Override config path (default: /app/config.yaml) +# CONFIG_PATH=/app/config.yaml