UNPKG

mcp-chain-of-thought

Version:

Chain of Thought is a tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavi

51 lines (50 loc) 1.58 kB
{ "name": "mcp-chain-of-thought", "version": "1.0.1", "description": "Chain of Thought is a tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems", "main": "dist/index.js", "type": "module", "repository": { "type": "git", "url": "https://github.com/liorfranko/mcp-chain-of-thought" }, "bugs": { "url": "https://github.com/liorfranko/mcp-chain-of-thought/issues" }, "homepage": "https://github.com/liorfranko/mcp-chain-of-thought", "bin": { "mcp-chain-of-thought": "./dist/index.js" }, "scripts": { "build": "tsc && copyfiles -u 1 './src/**/*.md' dist && copyfiles -u 1 './src/public/**/*' dist && node scripts/add-shebang.js", "dev": "ts-node src/index.ts", "start": "node dist/index.js", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "mcp", "task-manager", "agent", "workflow", "chain-of-thought" ], "author": "", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "dotenv": "^16.5.0", "express": "^5.1.0", "get-port": "^7.1.0", "uuid": "^9.0.1", "zod": "^3.22.4", "zod-to-json-schema": "^3.24.5" }, "devDependencies": { "@types/express": "^5.0.1", "@types/node": "^20.8.2", "@types/uuid": "^9.0.6", "copyfiles": "^2.4.1", "ts-node": "^10.9.2", "typescript": "^5.2.2" } }