UNPKG

think-mcp

Version:

A minimal MCP Server based on the Anthropic's "think" tool research

35 lines (34 loc) 905 B
{ "name": "think-mcp", "version": "0.1.5", "description": "A minimal MCP Server based on the Anthropic's \"think\" tool research", "keywords": [ "think", "anthropic", "mcp", "think tool" ], "author": "Kenji Gutierrez Jimenez", "license": "MIT", "type": "module", "bin": { "think-mcp": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && echo '#!/usr/bin/env node\n' | cat - build/index.js > build/index.tmp.js && mv build/index.tmp.js build/index.js && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.10.0", "zod": "^3.24.3" }, "devDependencies": { "@types/node": "^20.11.24", "typescript": "^5.3.3" } }