Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Context Manager MCP Server
by
docherty
Verified
GitHub
Developer Tools
Version Control
JavaScript
AGPL 3.0
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
contextmgr-mcp
src
client.debug
cline-system-prompt.md
.gitignore
input.txt
LICENSE
mcp-implementation.md
package.json
package-lock.json
README.md
server.debug
test.json
tools-documentation.md
tsconfig.json
{ "name": "contextmgr-mcp", "version": "1.0.0", "description": "MCP server for managing development context and workflow", "type": "module", "main": "dist/mcp-entry.js", "types": "dist/mcp-entry.d.ts", "bin": { "mcp-server": "./dist/mcp-entry.js" }, "files": [ "dist" ], "scripts": { "build": "tsc", "dev": "tsx --no-warnings src/mcp-entry.ts", "start": "node dist/mcp-entry.js", "test": "jest", "prepublishOnly": "npm run build", "postbuild": "chmod +x dist/mcp-entry.js", "watch": "tsc -w" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "sqlite-vss": "^0.1.1", "sqlite3": "^5.1.6", "uuid": "^9.0.1", "zod": "^3.24.2" }, "devDependencies": { "@types/jest": "^29.5.11", "@types/json-schema": "^7.0.15", "@types/node": "^20.10.6", "@types/uuid": "^9.0.7", "jest": "^29.7.0", "ts-jest": "^29.1.1", "ts-node-dev": "^2.0.0", "tsx": "^4.19.3", "typescript": "^5.3.3" }, "engines": { "node": ">=18" } }