There was an error while loading. Please reload this page.
1 parent 84fdd64 commit 0d5563cCopy full SHA for 0d5563c
1 file changed
content/docs/features/server-tools.mdx
@@ -81,12 +81,24 @@ Only providers that define `"server_tools"` will have the **SERVER TOOLS** tab e
81
82
### Example `llms.json` Provider Snippet
83
84
+If upgrading from an older version of `llms.json`, you can add the `"server_tools"` array to your provider definitions like this:
85
+
86
```json
87
{
88
"providers": {
89
+ "anthropic": {
90
+ "enabled": true,
91
+ "server_tools": [
92
+ "tool://anthropic/web_search",
93
+ "tool://anthropic/web_fetch",
94
+ "tool://anthropic/code_execution",
95
+ "tool://anthropic/advisor",
96
+ "tool://anthropic/tool_search",
97
+ "tool://anthropic/mcp_toolset"
98
+ ]
99
+ },
100
"openrouter": {
101
"enabled": true,
- "id": "openrouter",
102
"server_tools": [
103
"tool://openrouter/web_search",
104
"tool://openrouter/datetime",
0 commit comments