bios-mcp 0.1.0-rc.4 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -13,13 +13,13 @@ Set these environment variables in the MCP client configuration:
|
|
|
13
13
|
"BIOS_API_KEY": "bios-...",
|
|
14
14
|
"BIOS_BASE_URL": "https://api.usbios.ai",
|
|
15
15
|
"BIOS_WORKSPACE_ID": "workspace-id",
|
|
16
|
-
"BIOS_INFERENCE_KEY": "sk-
|
|
16
|
+
"BIOS_INFERENCE_KEY": "sk-usf-deployment-key"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
`BIOS_*` is the canonical environment prefix
|
|
22
|
-
|
|
21
|
+
`BIOS_*` is the canonical environment prefix; the legacy `BIOS_*` names are
|
|
22
|
+
still read as a fallback, so existing client configs keep working.
|
|
23
23
|
|
|
24
24
|
`https://api.usbios.ai` is the canonical production hostname. Use
|
|
25
25
|
`https://api-dev.usbios.ai` explicitly during dev.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bios-mcp",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "BIOS MCP server — train and deploy AI models from MCP-compatible automation clients",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -34,6 +34,5 @@
|
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=18.0.0"
|
|
37
|
-
}
|
|
38
|
-
"homepage": "https://usbios.ai/docs/mcp"
|
|
37
|
+
}
|
|
39
38
|
}
|