package.json•853 B
{
"name": "clear-thought-mcp-server",
"version": "1.1.2",
"description": "A Model Context Protocol (MCP) server that provides systematic thinking, mental models, and debugging approaches for enhanced problem-solving capabilities",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc -w & node --watch dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"model-context-protocol",
"thinking",
"mental-models",
"debugging",
"problem-solving"
],
"author": "Chirag Singhal",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"chalk": "^5.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"typescript": "^5.3.3"
}
}