aixx-mcp 1.0.0 → 1.0.1
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/index.js +1 -1
- package/package.json +20 -5
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.
|
|
141
|
+
serverInfo: { name: 'aixx-mcp', version: '1.0.1' }
|
|
142
142
|
});
|
|
143
143
|
}
|
|
144
144
|
if (method === 'notifications/initialized') return; // no response
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aixx-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "AIXX MCP server — one key to every AI model
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "AIXX MCP server — one API key to every AI model (Claude/GPT/Gemini/DeepSeek/Qwen/GLM) + image & video generation. Unified AI gateway, OpenAI-compatible. Works with any MCP client (CodeBuddy, Claude Code, Cursor, Cline).",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"bin": {
|
|
@@ -14,16 +14,31 @@
|
|
|
14
14
|
"keywords": [
|
|
15
15
|
"aixx",
|
|
16
16
|
"mcp",
|
|
17
|
+
"mcp-server",
|
|
17
18
|
"model-context-protocol",
|
|
19
|
+
"ai-gateway",
|
|
20
|
+
"llm-gateway",
|
|
21
|
+
"one-api",
|
|
22
|
+
"multi-model",
|
|
23
|
+
"openai",
|
|
18
24
|
"openai-compatible",
|
|
25
|
+
"openai-api",
|
|
19
26
|
"llm",
|
|
20
27
|
"ai",
|
|
21
|
-
"image-generation",
|
|
22
|
-
"video-generation",
|
|
23
28
|
"claude",
|
|
29
|
+
"claude-code",
|
|
24
30
|
"gpt",
|
|
25
31
|
"gemini",
|
|
26
|
-
"deepseek"
|
|
32
|
+
"deepseek",
|
|
33
|
+
"qwen",
|
|
34
|
+
"glm",
|
|
35
|
+
"cursor",
|
|
36
|
+
"cline",
|
|
37
|
+
"codebuddy",
|
|
38
|
+
"image-generation",
|
|
39
|
+
"text-to-image",
|
|
40
|
+
"video-generation",
|
|
41
|
+
"text-to-video"
|
|
27
42
|
],
|
|
28
43
|
"engines": {
|
|
29
44
|
"node": ">=18"
|