package.json•1.22 kB
{
"name": "@langgpt/sequential-thinking-mcp",
"version": "1.0.1",
"description": "LangGPT Demo: MCP server for sequential thinking and problem solving based on Anthropic's original implementation",
"license": "MIT",
"author": "LangGPT <contact@langgpt.ai>",
"homepage": "https://github.com/langgpt/sequential-thinking-mcp",
"bugs": "https://github.com/langgpt/sequential-thinking-mcp/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/langgpt/sequential-thinking-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"thinking",
"ai-tools",
"langgpt",
"demo",
"anthropic"
],
"type": "module",
"bin": {
"sequential-thinking-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.5.0",
"chalk": "^5.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22",
"@types/yargs": "^17.0.32",
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}