aixx-mcp 1.0.2 → 1.0.3

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.
Binary file
package/index.js CHANGED
@@ -138,7 +138,7 @@ async function handle(msg) {
138
138
  return reply(id, {
139
139
  protocolVersion: '2024-11-05',
140
140
  capabilities: { tools: {} },
141
- serverInfo: { name: 'aixx-mcp', version: '1.0.1' }
141
+ serverInfo: { name: 'aixx-mcp', version: '1.0.2' }
142
142
  });
143
143
  }
144
144
  if (method === 'notifications/initialized') return; // no response
package/package.json CHANGED
@@ -1,11 +1,21 @@
1
1
  {
2
2
  "name": "aixx-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "AIXX MCP Server - AI capability gateway (list models / chat / image / video / task)",
5
5
  "type": "module",
6
- "bin": { "aixx-mcp": "./index.js" },
7
- "keywords": ["aixx", "mcp", "ai", "llm", "gateway"],
6
+ "bin": {
7
+ "aixx-mcp": "./index.js"
8
+ },
9
+ "keywords": [
10
+ "aixx",
11
+ "mcp",
12
+ "ai",
13
+ "llm",
14
+ "gateway"
15
+ ],
8
16
  "author": "AIXX",
9
17
  "license": "ISC",
10
- "engines": { "node": ">=16" }
18
+ "engines": {
19
+ "node": ">=16"
20
+ }
11
21
  }