mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-26 07:45:20 +02:00
Progress so far: - Sequential thinking: Converted to McpServer with Zod schemas (complete) - Memory: Converted to use registerTool API (needs Zod conversion) - Filesystem: Converted to use registerTool API (needs Zod conversion) - Everything: Converted to use register* APIs (needs Zod conversion) Key learnings: - registerTool/registerResource/registerPrompt only exist on McpServer class - McpServer expects Zod schemas, not JSON schemas - Updated SDK versions to ^1.20.1 for all servers Status: Work in progress - code does not compile yet Next steps: Convert remaining servers' JSON schemas to Zod schemas 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
867 B
JSON
33 lines
867 B
JSON
{
|
|
"name": "@modelcontextprotocol/server-sequential-thinking",
|
|
"version": "0.6.2",
|
|
"description": "MCP server for sequential thinking and problem solving",
|
|
"license": "MIT",
|
|
"author": "Anthropic, PBC (https://anthropic.com)",
|
|
"homepage": "https://modelcontextprotocol.io",
|
|
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
|
|
"type": "module",
|
|
"bin": {
|
|
"mcp-server-sequential-thinking": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && shx chmod +x dist/*.js",
|
|
"prepare": "npm run build",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.20.1",
|
|
"chalk": "^5.3.0",
|
|
"yargs": "^17.7.2",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22",
|
|
"@types/yargs": "^17.0.32",
|
|
"shx": "^0.3.4",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
} |