overmind-mcp 1.6.0 → 1.7.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.
- package/package.json +85 -84
package/package.json
CHANGED
|
@@ -1,84 +1,85 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "overmind-mcp",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Orchestrateur universel agents IA multi-modeles via MCP. Inclut le protocole 'Custom-Nickname' pour identifier vos agents avec des surnoms originaux (The Chaos Prophet, Shadow Sniper, etc.), l'isolation mémoire (Private Memory Context) et le support pour QwenCli et Nous Hermes.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"bin": {
|
|
9
|
-
"overmind": "dist/bin/cli.js"
|
|
10
|
-
},
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/index.js",
|
|
14
|
-
"types": "./dist/index.d.ts"
|
|
15
|
-
},
|
|
16
|
-
"./package.json": "./package.json"
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"dist",
|
|
20
|
-
"assets",
|
|
21
|
-
"README.md"
|
|
22
|
-
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "tsc",
|
|
25
|
-
"rebuild": "rimraf dist && tsc",
|
|
26
|
-
"clean": "rimraf dist",
|
|
27
|
-
"start": "node --no-warnings --env-file=.env dist/bin/cli.js",
|
|
28
|
-
"dev": "node --no-warnings --watch --env-file=.env dist/bin/cli.js",
|
|
29
|
-
"build:fix": "pnpm run clean && pnpm install && pnpm run build",
|
|
30
|
-
"lint": "eslint .",
|
|
31
|
-
"lint:fix": "eslint . --fix",
|
|
32
|
-
"format": "prettier --write .",
|
|
33
|
-
"check-types": "tsc --noEmit",
|
|
34
|
-
"test": "vitest run",
|
|
35
|
-
"prepublishOnly": "pnpm run rebuild"
|
|
36
|
-
},
|
|
37
|
-
"keywords": [
|
|
38
|
-
"mcp",
|
|
39
|
-
"model-context-protocol",
|
|
40
|
-
"claude-code",
|
|
41
|
-
"ai-agent",
|
|
42
|
-
"llm",
|
|
43
|
-
"orchestration",
|
|
44
|
-
"automation"
|
|
45
|
-
],
|
|
46
|
-
"author": "DeaMoN888",
|
|
47
|
-
"license": "MIT",
|
|
48
|
-
"repository": {
|
|
49
|
-
"type": "git",
|
|
50
|
-
"url": "git+https://github.com/DeamonDev888/overmind-mcp.git"
|
|
51
|
-
},
|
|
52
|
-
"bugs": {
|
|
53
|
-
"url": "https://discord.gg/4AR82phtBz"
|
|
54
|
-
},
|
|
55
|
-
"homepage": "https://deamondev888.github.io/overmind-mcp/",
|
|
56
|
-
"engines": {
|
|
57
|
-
"node": ">=20.0.0 <25"
|
|
58
|
-
},
|
|
59
|
-
"packageManager": "pnpm@10.18.0",
|
|
60
|
-
"devDependencies": {
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"@types/
|
|
64
|
-
"@types/
|
|
65
|
-
"
|
|
66
|
-
"eslint
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"typescript
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"pino
|
|
81
|
-
"pino-
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "overmind-mcp",
|
|
3
|
+
"version": "1.7.0",
|
|
4
|
+
"description": "Orchestrateur universel agents IA multi-modeles via MCP. Inclut le protocole 'Custom-Nickname' pour identifier vos agents avec des surnoms originaux (The Chaos Prophet, Shadow Sniper, etc.), l'isolation mémoire (Private Memory Context) et le support pour QwenCli et Nous Hermes.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"overmind": "dist/bin/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./package.json": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"assets",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsc",
|
|
25
|
+
"rebuild": "rimraf dist && tsc",
|
|
26
|
+
"clean": "rimraf dist",
|
|
27
|
+
"start": "node --no-warnings --env-file=.env dist/bin/cli.js",
|
|
28
|
+
"dev": "node --no-warnings --watch --env-file=.env dist/bin/cli.js",
|
|
29
|
+
"build:fix": "pnpm run clean && pnpm install && pnpm run build",
|
|
30
|
+
"lint": "eslint .",
|
|
31
|
+
"lint:fix": "eslint . --fix",
|
|
32
|
+
"format": "prettier --write .",
|
|
33
|
+
"check-types": "tsc --noEmit",
|
|
34
|
+
"test": "vitest run",
|
|
35
|
+
"prepublishOnly": "pnpm run rebuild"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"mcp",
|
|
39
|
+
"model-context-protocol",
|
|
40
|
+
"claude-code",
|
|
41
|
+
"ai-agent",
|
|
42
|
+
"llm",
|
|
43
|
+
"orchestration",
|
|
44
|
+
"automation"
|
|
45
|
+
],
|
|
46
|
+
"author": "DeaMoN888",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://github.com/DeamonDev888/overmind-mcp.git"
|
|
51
|
+
},
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://discord.gg/4AR82phtBz"
|
|
54
|
+
},
|
|
55
|
+
"homepage": "https://deamondev888.github.io/overmind-mcp/",
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=20.0.0 <25"
|
|
58
|
+
},
|
|
59
|
+
"packageManager": "pnpm@10.18.0",
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@changesets/cli": "^2.31.0",
|
|
62
|
+
"@eslint/js": "^9.39.4",
|
|
63
|
+
"@types/node": "^22.19.17",
|
|
64
|
+
"@types/pg": "^8.20.0",
|
|
65
|
+
"@types/pino": "^7.0.5",
|
|
66
|
+
"eslint": "^9.39.4",
|
|
67
|
+
"eslint-config-prettier": "^10.1.8",
|
|
68
|
+
"globals": "^17.5.0",
|
|
69
|
+
"prettier": "^3.8.3",
|
|
70
|
+
"rimraf": "^6.1.3",
|
|
71
|
+
"typescript": "^5.9.3",
|
|
72
|
+
"typescript-eslint": "^8.58.2",
|
|
73
|
+
"vitest": "^4.1.4"
|
|
74
|
+
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"dotenv": "^17.4.2",
|
|
77
|
+
"fastmcp": "^3.35.0",
|
|
78
|
+
"overmind-postgres-mcp": "^1.1.6",
|
|
79
|
+
"pg": "^8.20.0",
|
|
80
|
+
"pino": "^9.14.0",
|
|
81
|
+
"pino-pretty": "^13.1.3",
|
|
82
|
+
"pino-roll": "^2.2.0",
|
|
83
|
+
"zod": "^4.3.6"
|
|
84
|
+
}
|
|
85
|
+
}
|