-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@dioptx/mcp-atom-of-thoughts",
"version": "3.0.0",
"description": "MCP server for structured reasoning via Atom of Thoughts — decompose problems into atomic units with confidence tracking and interactive visualization",
"main": "build/index.js",
"type": "module",
"bin": {
"mcp-atom-of-thoughts": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js && cp assets/d3.v7.min.js build/",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"files": [
"build",
"assets/d3.v7.min.js",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"mcp",
"model-context-protocol",
"reasoning",
"atom-of-thoughts",
"decomposition",
"claude",
"ai-reasoning",
"visualization",
"d3"
],
"author": "dioptx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dioptx/mcp-atom-of-thoughts.git"
},
"homepage": "https://github.com/dioptx/mcp-atom-of-thoughts#readme",
"bugs": {
"url": "https://github.com/dioptx/mcp-atom-of-thoughts/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.0",
"chalk": "^5.3.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.13.13",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
}
}