context-tracker-mcp1.0 1.0.6
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/bin/context-tracker-mcp.cmd +2 -0
- package/bin/context-tracker-mcp.js +4 -0
- package/dist/config-manager.d.ts +32 -0
- package/dist/config-manager.d.ts.map +1 -0
- package/dist/config-manager.js +103 -0
- package/dist/config-manager.js.map +1 -0
- package/dist/context-tracker.d.ts +73 -0
- package/dist/context-tracker.d.ts.map +1 -0
- package/dist/context-tracker.js +375 -0
- package/dist/context-tracker.js.map +1 -0
- package/dist/documentation-generator.d.ts +13 -0
- package/dist/documentation-generator.d.ts.map +1 -0
- package/dist/documentation-generator.js +308 -0
- package/dist/documentation-generator.js.map +1 -0
- package/dist/error-analyzer.d.ts +21 -0
- package/dist/error-analyzer.d.ts.map +1 -0
- package/dist/error-analyzer.js +69 -0
- package/dist/error-analyzer.js.map +1 -0
- package/dist/file-watcher.d.ts +36 -0
- package/dist/file-watcher.d.ts.map +1 -0
- package/dist/file-watcher.js +225 -0
- package/dist/file-watcher.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +476 -0
- package/dist/index.js.map +1 -0
- package/dist/mutex.d.ts +137 -0
- package/dist/mutex.d.ts.map +1 -0
- package/dist/mutex.js +276 -0
- package/dist/mutex.js.map +1 -0
- package/dist/project-intelligence.d.ts +24 -0
- package/dist/project-intelligence.d.ts.map +1 -0
- package/dist/project-intelligence.js +101 -0
- package/dist/project-intelligence.js.map +1 -0
- package/dist/resource-manager.d.ts +33 -0
- package/dist/resource-manager.d.ts.map +1 -0
- package/dist/resource-manager.js +188 -0
- package/dist/resource-manager.js.map +1 -0
- package/mcp-config.json +125 -0
- package/package.json +56 -0
package/mcp-config.json
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"context-tracker": {
|
|
4
|
+
"command": "node",
|
|
5
|
+
"args": ["./dist/index.js"],
|
|
6
|
+
"env": {
|
|
7
|
+
"NODE_ENV": "production",
|
|
8
|
+
"CONTEXT_DATA_DIR": "./context-data"
|
|
9
|
+
},
|
|
10
|
+
"description": "Context Tracker MCP - Never lose development context and auto-generate documentation",
|
|
11
|
+
"version": "1.0.0",
|
|
12
|
+
"author": "Context Tracker Team"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"tools": [
|
|
16
|
+
{
|
|
17
|
+
"name": "track_context",
|
|
18
|
+
"description": "Track current development context and progress",
|
|
19
|
+
"parameters": {
|
|
20
|
+
"action": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"enum": ["start", "update", "complete"],
|
|
23
|
+
"description": "Action to perform on context"
|
|
24
|
+
},
|
|
25
|
+
"description": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"description": "Description of current work"
|
|
28
|
+
},
|
|
29
|
+
"files": {
|
|
30
|
+
"type": "array",
|
|
31
|
+
"items": {"type": "string"},
|
|
32
|
+
"description": "Files being modified"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "get_context_history",
|
|
38
|
+
"description": "Get complete context history",
|
|
39
|
+
"parameters": {
|
|
40
|
+
"limit": {
|
|
41
|
+
"type": "number",
|
|
42
|
+
"description": "Number of recent entries to retrieve"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "generate_documentation",
|
|
48
|
+
"description": "Generate comprehensive documentation",
|
|
49
|
+
"parameters": {
|
|
50
|
+
"type": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"enum": ["features", "errors", "styling", "complete"],
|
|
53
|
+
"description": "Type of documentation to generate"
|
|
54
|
+
},
|
|
55
|
+
"format": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"enum": ["markdown", "json"],
|
|
58
|
+
"description": "Output format"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "log_error",
|
|
64
|
+
"description": "Log errors with context and solutions",
|
|
65
|
+
"parameters": {
|
|
66
|
+
"error": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "Error message"
|
|
69
|
+
},
|
|
70
|
+
"solution": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "How the error was fixed"
|
|
73
|
+
},
|
|
74
|
+
"context": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"description": "Context when error occurred"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "track_styling",
|
|
82
|
+
"description": "Track styling changes and their locations",
|
|
83
|
+
"parameters": {
|
|
84
|
+
"element": {
|
|
85
|
+
"type": "string",
|
|
86
|
+
"description": "CSS element or component"
|
|
87
|
+
},
|
|
88
|
+
"styles": {
|
|
89
|
+
"type": "object",
|
|
90
|
+
"description": "Applied styles"
|
|
91
|
+
},
|
|
92
|
+
"location": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"description": "File location"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"resources": [
|
|
100
|
+
{
|
|
101
|
+
"uri": "context://history",
|
|
102
|
+
"name": "Complete Context History",
|
|
103
|
+
"description": "Full history of all tracked context and changes",
|
|
104
|
+
"mimeType": "application/json"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"uri": "context://documentation",
|
|
108
|
+
"name": "Generated Documentation",
|
|
109
|
+
"description": "Comprehensive documentation of the project",
|
|
110
|
+
"mimeType": "text/markdown"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"uri": "context://errors",
|
|
114
|
+
"name": "Error Log",
|
|
115
|
+
"description": "Complete log of errors and their solutions",
|
|
116
|
+
"mimeType": "application/json"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"uri": "context://styling",
|
|
120
|
+
"name": "Styling History",
|
|
121
|
+
"description": "History of all styling changes",
|
|
122
|
+
"mimeType": "application/json"
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "context-tracker-mcp1.0",
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"description": "MCP server for tracking context, code changes, and generating documentation",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"context-tracker-mcp": "bin/context-tracker-mcp.js",
|
|
9
|
+
"setup-mcp-workflows": "dist/setup-workflows.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/**/*",
|
|
13
|
+
"bin/**/*",
|
|
14
|
+
"README.md",
|
|
15
|
+
"mcp-config.json"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc",
|
|
19
|
+
"setup-workflows": "node dist/setup-workflows.js",
|
|
20
|
+
"dev": "tsx src/index.ts",
|
|
21
|
+
"start": "node dist/index.js",
|
|
22
|
+
"test": "jest",
|
|
23
|
+
"test:watch": "jest --watch",
|
|
24
|
+
"test:coverage": "jest --coverage",
|
|
25
|
+
"test:ci": "jest --ci --coverage --reporters=default --reporters=jest-junit",
|
|
26
|
+
"prepublishOnly": "npm run build && npm test"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"mcp",
|
|
30
|
+
"context-tracking",
|
|
31
|
+
"documentation",
|
|
32
|
+
"vscode",
|
|
33
|
+
"windsurf"
|
|
34
|
+
],
|
|
35
|
+
"author": "Context Tracker MCP",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
39
|
+
"chokidar": "^3.5.3",
|
|
40
|
+
"fs-extra": "^11.1.1",
|
|
41
|
+
"glob": "^10.3.10",
|
|
42
|
+
"semver": "^7.5.4",
|
|
43
|
+
"uuid": "^9.0.1"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/fs-extra": "^11.0.4",
|
|
47
|
+
"@types/jest": "^30.0.0",
|
|
48
|
+
"@types/node": "^20.10.0",
|
|
49
|
+
"@types/semver": "^7.5.6",
|
|
50
|
+
"@types/uuid": "^9.0.7",
|
|
51
|
+
"jest": "^30.3.0",
|
|
52
|
+
"ts-jest": "^29.4.6",
|
|
53
|
+
"tsx": "^4.6.0",
|
|
54
|
+
"typescript": "^5.3.0"
|
|
55
|
+
}
|
|
56
|
+
}
|