@toolsdk.ai/registry 1.0.163 → 1.0.164

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.
@@ -4101,6 +4101,7 @@
4101
4101
  "find-flights-(duffel)",
4102
4102
  "transport-nsw",
4103
4103
  "jr-east-train-delay",
4104
+ "@cabin/agent",
4104
4105
  "singapore-lta",
4105
4106
  "mcp-12306",
4106
4107
  "tripadvisor-vacation-planner",
@@ -56654,8 +56654,8 @@
56654
56654
  }
56655
56655
  },
56656
56656
  "@cabin/agent": {
56657
- "category": "uncategorized",
56658
- "path": "uncategorized/cabin-flights.json",
56657
+ "category": "travel-transportation",
56658
+ "path": "travel-transportation/cabin-flights.json",
56659
56659
  "validated": false,
56660
56660
  "tools": {}
56661
56661
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.163",
3
+ "version": "1.0.164",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -0,0 +1,31 @@
1
+ {
2
+ "type": "mcp-server",
3
+ "name": "Cabin Flights",
4
+ "packageName": "@cabin/agent",
5
+ "description": "AI-first travel booking with natural language. Search flights with crypto micropayments.",
6
+ "url": "https://github.com/yolo-maxi/cabin",
7
+ "runtime": "node",
8
+ "license": "MIT",
9
+ "env": {
10
+ "X402_PRIVATE_KEY": {
11
+ "description": "EVM wallet private key for x402 micropayments (0x-prefixed hex string)",
12
+ "required": true,
13
+ "secret": true
14
+ },
15
+ "CABIN_API_URL": {
16
+ "description": "Cabin API base URL",
17
+ "required": false,
18
+ "default": "https://api.cabin.team"
19
+ },
20
+ "X402_NETWORK": {
21
+ "description": "Blockchain network for payments (base, ethereum, polygon)",
22
+ "required": false,
23
+ "default": "base"
24
+ },
25
+ "LOG_LEVEL": {
26
+ "description": "Log level (debug, info, warn, error)",
27
+ "required": false,
28
+ "default": "info"
29
+ }
30
+ }
31
+ }