@justmpm/mmx-cli 0.1.0

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.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @justmpm/mmx-cli - Constantes de versão
3
+ *
4
+ * Versão mínima suportada do mmx-cli.
5
+ */
6
+ /**
7
+ * Versão mínima do mmx-cli testada e suportada.
8
+ * Versões abaixo desta podem ter schemas incompatíveis.
9
+ */
10
+ export declare const MINIMUM_MMX_VERSION = "1.0.0";
11
+ //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @justmpm/mmx-cli - Constantes de versão
3
+ *
4
+ * Versão mínima suportada do mmx-cli.
5
+ */
6
+ /**
7
+ * Versão mínima do mmx-cli testada e suportada.
8
+ * Versões abaixo desta podem ter schemas incompatíveis.
9
+ */
10
+ export const MINIMUM_MMX_VERSION = "1.0.0";
11
+ //# sourceMappingURL=version.js.map
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@justmpm/mmx-cli",
3
+ "version": "0.1.0",
4
+ "description": "MCP Server que expõe o mmx-cli (MiniMax) como tools para IAs usarem diretamente. Spawn do CLI global, content types nativos (image, audio, resource).",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "bin": {
8
+ "mmx-mcp": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "dev": "tsc --watch",
13
+ "start": "node dist/index.js",
14
+ "prepare": "npm run build",
15
+ "test": "vitest run",
16
+ "test:watch": "vitest",
17
+ "test:coverage": "vitest run --coverage",
18
+ "typecheck": "tsc --noEmit"
19
+ },
20
+ "keywords": [
21
+ "mcp",
22
+ "model-context-protocol",
23
+ "minimax",
24
+ "mmx",
25
+ "ai-agents",
26
+ "image-generation",
27
+ "video-generation",
28
+ "text-to-speech",
29
+ "music-generation",
30
+ "claude",
31
+ "cursor"
32
+ ],
33
+ "author": {
34
+ "name": "Koda AI Studio",
35
+ "email": "studio.kodaai@gmail.com",
36
+ "url": "https://kodaai.app"
37
+ },
38
+ "license": "MIT",
39
+ "type": "module",
40
+ "engines": {
41
+ "node": ">=18"
42
+ },
43
+ "dependencies": {
44
+ "@modelcontextprotocol/sdk": "^1.26.0",
45
+ "zod": "^4.0.0"
46
+ },
47
+ "devDependencies": {
48
+ "@types/node": "^20.19.33",
49
+ "typescript": "^5.9.3",
50
+ "vitest": "^4.0.18"
51
+ },
52
+ "files": [
53
+ "dist/**/*.js",
54
+ "dist/**/*.d.ts",
55
+ "README.md",
56
+ "CHANGELOG.md",
57
+ "LICENSE"
58
+ ]
59
+ }