You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,6 +174,14 @@ Example `config/tool_config.json`:
174
174
export TOOLS_FOLDER=/srv/mcp_tools
175
175
```
176
176
177
+
- **`SERVER_TOOLNAME_SEPERATOR`**: (Optional) Defines the separator used to combine the server name and tool name when generating the unique key for tools (e.g., `server-key--tool-name`). This key is used internally and in the `tool_config.json` file.
178
+
- Default: `--`.
179
+
- Must be at least 2 characters long and contain only letters (a-z, A-Z), numbers (0-9), hyphens (`-`), and underscores (`_`).
180
+
- If the provided value is invalid, the default (`--`) will be used, and a warning will be logged.
181
+
```bash
182
+
export SERVER_TOOLNAME_SEPERATOR="___" # Example: using triple underscore
183
+
```
184
+
177
185
- **`LOGGING`**: (Optional) Controls the minimum log level output by the server.
178
186
- Possible values (case-insensitive): `error`, `warn`, `info`, `debug`.
179
187
- Logs at the specified level and all levels above it will be shown.
0 commit comments