Skip to content

Commit 58313e2

Browse files
John-Linclaude
andcommitted
docs: move model config from env var to servers_config.json
OPENAI_MODEL is no longer read from env; set "model" in servers_config.json instead. Document per-server timeout and enabled options. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c5bd685 commit 58313e2

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ Create a `.envrc` or `.env` file in the root directory:
4141
export SLACK_BOT_TOKEN=""
4242
export SLACK_APP_TOKEN=""
4343
export OPENAI_API_KEY=""
44-
export OPENAI_MODEL="gpt-5.4"
4544
4645
# Local shell (disabled by default)
4746
# export SHELL_ENABLED=1
@@ -53,7 +52,6 @@ If you are using Azure OpenAI (v1 API) or another OpenAI-compatible endpoint:
5352
```
5453
export OPENAI_API_KEY=""
5554
export OPENAI_BASE_URL="https://<resource-name>.openai.azure.com/openai/v1/"
56-
export OPENAI_MODEL="gpt-5.4"
5755
```
5856

5957
Optional HTTP proxy for outbound requests:
@@ -106,6 +104,7 @@ Create a `servers_config.json` file to add your MCP servers. If this file is not
106104

107105
```json
108106
{
107+
"model": "gpt-5.4",
109108
"mcpServers": {
110109
"my-server": {
111110
"command": "uvx",
@@ -115,6 +114,8 @@ Create a `servers_config.json` file to add your MCP servers. If this file is not
115114
}
116115
```
117116

117+
`model` is optional and defaults to `gpt-5.4`. Each MCP server also accepts `timeout` (seconds, default `30.0`) and `enabled` (default `true`).
118+
118119
For HTTP-based MCP servers (Streamable HTTP), use `url`:
119120

120121
```json
@@ -197,7 +198,6 @@ docker run -d \
197198
-e SLACK_BOT_TOKEN="" \
198199
-e SLACK_APP_TOKEN="" \
199200
-e OPENAI_API_KEY="" \
200-
-e OPENAI_MODEL="gpt-5.4" \
201201
-e SHELL_ENABLED=1 \
202202
-e SHELL_SKILLS_DIR=/app/skills \
203203
-v /path/to/instructions.md:/app/instructions.md \
@@ -213,7 +213,6 @@ docker run -d \
213213
-e SLACK_BOT_TOKEN="" \
214214
-e SLACK_APP_TOKEN="" \
215215
-e OPENAI_API_KEY="" \
216-
-e OPENAI_MODEL="gpt-5.4" \
217216
-e SHELL_ENABLED=1 \
218217
-e SHELL_SKILLS_DIR=/app/skills \
219218
-v /path/to/instructions.md:/app/instructions.md \

0 commit comments

Comments
 (0)