Skip to content

Commit 42cf480

Browse files
ktamas77claude
andcommitted
fix(mcp): declare TIMEBOOK_API_URL/TIMEBOOK_WEB_URL env vars in server.json
The README documents these as supported overrides for self-hosted/local-dev Timebook setups, but the server.json registry entry didn't declare them, so MCP clients reading the registry had no way to know they exist or surface them in their UIs. Adding both as optional, non-secret string env vars. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 44401f2 commit 42cf480

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

server.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,22 @@
2121
"type": "positional",
2222
"value": "mcp"
2323
}
24+
],
25+
"environmentVariables": [
26+
{
27+
"name": "TIMEBOOK_API_URL",
28+
"description": "Override the Timebook API base URL. Defaults to https://usetimebook.com.",
29+
"isRequired": false,
30+
"isSecret": false,
31+
"format": "string"
32+
},
33+
{
34+
"name": "TIMEBOOK_WEB_URL",
35+
"description": "Override the Timebook web URL used during `timebook login`. Defaults to https://usetimebook.com.",
36+
"isRequired": false,
37+
"isSecret": false,
38+
"format": "string"
39+
}
2440
]
2541
}
2642
]

0 commit comments

Comments
 (0)