📦
Pete Thinking Server
Enable AI agents to perform sequential thinking processes with dynamic thought branching and confidence scoring. Facilitate complex reasoning workflows by exposing tools that manage and evaluate thought branches. Simplify integration with a ready-to-run server supporting local and Docker deployments.
0 installs
Trust: 34 — Low
Commerce
Ask AI about Pete Thinking Server
Powered by Claude · Grounded in docs
I know everything about Pete Thinking Server. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Pete Thinking MCP Server
Quick Start
Local Setup
- Clone the repository.
- Install dependencies:
npm install - Start the server:
npm start
Docker Setup
- Build the Docker image:
docker build -t sequential-thinking-mcp . - Run the Docker container:
docker run -p 3000:3000 sequential-thinking-mcp
Environment Variables
- Copy
.env.exampleto.envand set your API keys.
Example CURL Calls
List Tools
curl -X POST http://localhost:3000/api/mcp -H "Content-Type: application/json" -d '{ "jsonrpc": "2.0", "method": "tools/list", "id": 1 }'
Call Tool
curl -X POST http://localhost:3000/api/mcp -H "Content-Type: application/json" -d '{ "jsonrpc": "2.0", "method": "tools/call", "params": { "toolName": "dynamic_thought_branching", "thought": "Example thought", "branch_id": "1234", "confidence_score": 0.9 }, "id": 1 }'
