{"id":50807288,"url":"https://github.com/jacaudi/critical-thinking","last_synced_at":"2026-06-13T02:10:58.200Z","repository":{"id":315982217,"uuid":"1061463719","full_name":"jacaudi/critical-thinking","owner":"jacaudi","description":"MCP server for critical, narrated, sequential thinking","archived":false,"fork":false,"pushed_at":"2026-06-10T15:16:59.000Z","size":306,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-10T16:24:48.061Z","etag":null,"topics":["critical-thinking","mcp","renovate","sequential-thinking","streamable-http-transport"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"camilovelezr/server-sequential-thinking","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jacaudi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-22T00:20:13.000Z","updated_at":"2026-06-10T14:56:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jacaudi/critical-thinking","commit_stats":null,"previous_names":["jacaudi/http-sequential-thinking","jacaudi/rubber-ducky-mcp","jacaudi/critical-thinking-plugin","jacaudi/critical-thinking-mcp","jacaudi/critical-thinking"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/jacaudi/critical-thinking","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacaudi%2Fcritical-thinking","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacaudi%2Fcritical-thinking/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacaudi%2Fcritical-thinking/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacaudi%2Fcritical-thinking/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacaudi","download_url":"https://codeload.github.com/jacaudi/critical-thinking/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacaudi%2Fcritical-thinking/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34269459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["critical-thinking","mcp","renovate","sequential-thinking","streamable-http-transport"],"created_at":"2026-06-13T02:10:57.579Z","updated_at":"2026-06-13T02:10:58.186Z","avatar_url":"https://github.com/jacaudi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Critical Thinking\n\nA Model Context Protocol server for **critical, narrated, sequential thinking**. Think one step at a time, out loud — with required confidence calibration and adversarial self-critique on every thought.\n\nIt fuses three disciplines:\n\n1. **Sequential thinking** — break problems into ordered, numbered steps; revise; branch.\n2. **Thinking out loud** — explain each thought in first-person, exploratory voice. Putting half-formed reasoning into words is itself the double-check on it.\n3. **Critical self-examination** — every thought is paired with confidence, assumptions, critique, and a counter-argument.\n\nThe single tool is `criticalthinking`. Every call must include the four critical-thinking fields — there is no opt-out, by design.\n\n**Install \u0026 usage → [docs/usage.md](docs/usage.md).** One-line install:\n\n```bash\ngo install github.com/jacaudi/critical-thinking/cmd/critical-thinking@latest\n```\n\n## One-call example\n\nRequest:\n\n```json\n{\n  \"thought\": \"I think we should normalize first because reads dominate writes.\",\n  \"thoughtNumber\": 1, \"totalThoughts\": 3, \"nextThoughtNeeded\": true,\n  \"confidence\": 0.6,\n  \"assumptions\": [\"read:write ratio is ~10:1\"],\n  \"critique\": \"Drifted into solution mode without confirming the ratio.\",\n  \"counterArgument\": \"If writes dominate, monolith-first is simpler.\",\n  \"nextStepRationale\": \"Verify the read:write ratio before committing to normalization.\"\n}\n```\n\nResponse (`structuredContent`):\n\n```json\n{ \"branches\": [], \"thoughtHistoryLength\": 1, \"sessionConfidence\": 0.6 }\n```\n\nThe `text` content is a rendered transcript in first-person, exploratory voice. Subsequent calls can omit `thoughtNumber` (auto-assigned) and `totalThoughts` (inherited). Keep each field to one tight sentence — the tool description asks for that brevity; the server does not enforce a hard limit. The full contract lives in the tool description itself.\n\n## Resources\n\nThe server exposes `thinking://current` — a per-session JSON snapshot of the full thought history (trunk + branches, all critical-thinking fields preserved).\n\n## Documentation\n\n- [docs/usage.md](docs/usage.md) — install, MCP-server \u0026 CLI-pipe usage, a worked session\n  - [Install](docs/usage.md#install) · [As an MCP server](docs/usage.md#as-an-mcp-server) · [As a CLI pipe](docs/usage.md#as-a-cli-pipe-no-mcp-host) · [Worked session](docs/usage.md#a-worked-session)\n- [docs/clients.md](docs/clients.md) — Claude Desktop, Codex CLI, VS Code, Cursor recipes\n- [docs/configuration.md](docs/configuration.md) — env vars, HTTP endpoints, [logging](docs/configuration.md#logging), CORS, session lifecycle\n- [docs/migration.md](docs/migration.md) — breaking changes since `http-sequential-thinking`\n- [docs/development.md](docs/development.md) — building, testing, debugging with MCP Inspector\n\n## License\n\n[MIT](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacaudi%2Fcritical-thinking","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacaudi%2Fcritical-thinking","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacaudi%2Fcritical-thinking/lists"}