config: add MCP server and environment configuration

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
main
Fadhli Azhari 2026-03-12 16:57:08 +08:00
parent a3eab2d644
commit 007af2bf38
2 changed files with 14 additions and 0 deletions

2
.env.example 100644
View File

@ -0,0 +1,2 @@
OPENPROJECT_URL=https://your-instance.openproject.com
OPENPROJECT_API_KEY=your-api-key-here

12
.mcp.json.example 100644
View File

@ -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": "<YOUR_API_KEY_HERE>"
}
}
}
}