package.json•957 B
{
"name": "think-tool-mcp",
"version": "1.0.2",
"description": "An MCP server implementing the think tool for Claude and other LLMs",
"repository": {
"type": "git",
"url": "git+https://github.com/abhinav-mangla/think-tool-mcp.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-think-tool": "dist/index.js"
},
"directories": {
"example": "examples"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest"
},
"keywords": [
"mcp",
"llm",
"claude",
"think",
"tool"
],
"author": "abhinav-mangla",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.11.24",
"jest": "^30.0.5",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}