bios-mcp 0.1.0 → 0.1.1-dev.10

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -2
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-usf-deployment-key"
16
+ "BIOS_INFERENCE_KEY": "sk-bios-deployment-key"
17
17
  }
18
18
  }
19
19
  ```
20
20
 
21
- `BIOS_*` is the canonical environment prefix; the legacy `BIOS_*` names are
22
- still read as a fallback, so existing client configs keep working.
21
+ `BIOS_*` is the canonical environment prefix. API keys start with `bios-`;
22
+ legacy `usf-` keys are still accepted.
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.1-dev.10",
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,5 +34,6 @@
34
34
  },
35
35
  "engines": {
36
36
  "node": ">=18.0.0"
37
- }
37
+ },
38
+ "homepage": "https://usbios.ai/docs/mcp"
38
39
  }