From 007af2bf38c6849f921ec797c9dae0d325782397 Mon Sep 17 00:00:00 2001 From: Fadhli Azhari Date: Thu, 12 Mar 2026 16:57:08 +0800 Subject: [PATCH] config: add MCP server and environment configuration Co-Authored-By: Claude Opus 4.6 --- .env.example | 2 ++ .mcp.json.example | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .env.example create mode 100644 .mcp.json.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..15889c1 --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +OPENPROJECT_URL=https://your-instance.openproject.com +OPENPROJECT_API_KEY=your-api-key-here diff --git a/.mcp.json.example b/.mcp.json.example new file mode 100644 index 0000000..b08539e --- /dev/null +++ b/.mcp.json.example @@ -0,0 +1,12 @@ +{ + "mcpServers": { + "openproject": { + "command": "node", + "args": ["mcp/openproject/dist/index.js"], + "env": { + "OPENPROJECT_URL": "https://openproject.kollect.biz/openproject", + "OPENPROJECT_API_KEY": "" + } + } + } +}