@aggc/or-info 0.2.4 → 0.2.6
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 +11 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -27,6 +27,16 @@ npx -y @aggc/or-info models --limit 5
|
|
|
27
27
|
|
|
28
28
|
Requires Node.js 22 or later.
|
|
29
29
|
|
|
30
|
+
### Install from Smithery
|
|
31
|
+
|
|
32
|
+
Each release is also published as a Smithery MCPB bundle, importable in one click
|
|
33
|
+
from clients that support the MCPB format (Claude Desktop, etc.):
|
|
34
|
+
|
|
35
|
+
https://smithery.ai/server/aggc/or-info
|
|
36
|
+
|
|
37
|
+
The bundle is attached as an asset to every GitHub release (`or-info.mcpb`) and
|
|
38
|
+
can also be installed manually by dropping the file into the client.
|
|
39
|
+
|
|
30
40
|
Supported runtimes and platforms:
|
|
31
41
|
|
|
32
42
|
- Node.js 22+
|
|
@@ -321,7 +331,7 @@ The package is public under the `@aggc` npm scope.
|
|
|
321
331
|
Release checklist:
|
|
322
332
|
|
|
323
333
|
1. Update `CHANGELOG.md`.
|
|
324
|
-
2. Bump `version` in `package.json
|
|
334
|
+
2. Bump `version` in `package.json` **and** `manifest.json` (must match).
|
|
325
335
|
3. Run `npm test`.
|
|
326
336
|
4. Commit and push to `main`.
|
|
327
337
|
5. Create and push a matching tag:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aggc/or-info",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "CLI + MCP server for OpenRouter models: prices, benchmarks, context and comparisons",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"test:local": "node --test test/local/**/*.mjs",
|
|
20
20
|
"test:online:smoke": "node --test test/online/cli.mjs test/online/mcp.mjs",
|
|
21
21
|
"test:online": "node --test --test-concurrency=1 test/online/**/*.mjs",
|
|
22
|
-
"test:watch": "node --test --watch test/local/**/*.mjs test/online/cli.mjs test/online/mcp.mjs"
|
|
22
|
+
"test:watch": "node --test --watch test/local/**/*.mjs test/online/cli.mjs test/online/mcp.mjs",
|
|
23
|
+
"build:mcpb": "rm -rf .mcpb-build or-info.mcpb && mkdir .mcpb-build && cp -R bin lib mcp package.json package-lock.json README.md LICENSE manifest.json icon.png .mcpb-build/ && (cd .mcpb-build && npm ci --omit=dev --ignore-scripts && zip -qr ../or-info.mcpb .)"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
26
|
"@modelcontextprotocol/sdk": "^1.29.0",
|