A local-first cognitive substrate for neurodivergent professionals. Gives Claude memory, a sense of time, a translator for corporate ambiguity, and a guardrail that refuses to amplify rumination, hyperfocus, or sycophancy. MCP-native. No telemetry. AGPL-3.0-or-later. Self-ID sufficient — no diagnosis gating.
- ✓Open-source license (AGPL-3.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
claude mcp add neurodock -- npx -y @neurodock/cli{
"mcpServers": {
"neurodock": {
"command": "npx",
"args": ["-y", "@neurodock/cli"]
}
}
}MCP Servers overview
<p align="center"> <img src="./assets/icon-512.png" alt="NeuroDock" width="180"> </p> <h1 align="center">NeuroDock</h1> <p align="center"><em>A cognitive substrate that remembers, paces, and refuses. Built with neurodivergent professionals, not for them.</em></p> <p align="center"> <a href="./LICENSE"><img src="https://img.shields.io/badge/license-AGPL--3.0--or--later-1f1f1f.svg" alt="License AGPL-3.0-or-later"></a> <img src="https://img.shields.io/badge/python-3.11%2B-1f1f1f.svg" alt="Python 3.11+"> <img src="https://img.shields.io/badge/node-22%2B-1f1f1f.svg" alt="Node 22+"> <a href="https://www.npmjs.com/package/@neurodock/cli"><img src="https://img.shields.io/npm/v/@neurodock/cli?label=%40neurodock%2Fcli&color=1f1f1f" alt="@neurodock/cli on npm"></a> <a href="https://pypi.org/project/neurodock-mcp-chronometric/"><img src="https://img.shields.io/pypi/v/neurodock-mcp-chronometric?label=pypi%3A%20mcp-servers&color=1f1f1f" alt="neurodock-mcp-* on PyPI"></a> </p> <p align="center"> <img src="https://img.shields.io/badge/cross--platform-macos%20%C2%B7%20linux%20%C2%B7%20windows-1f1f1f.svg" alt="Cross-platform"> <img src="https://img.shields.io/badge/MCP-native-1f1f1f.svg" alt="MCP-native"> <img src="https://img.shields.io/badge/local--first-default-1f1f1f.svg" alt="Local-first by default"> <img src="https://img.shields.io/badge/telemetry-none-1f1f1f.svg" alt="No telemetry"> <img src="https://img.shields.io/badge/self--ID-sufficient-1f1f1f.svg" alt="Self-ID sufficient"> </p> ## 5-second TL;DR - **What it does:** gives Claude a memory of your work, a sense of time, a refuse-rumination guardrail, and a translator for corporate ambiguity. - **Who it's for:** neurodivergent people — self-ID only, no diagnosis required, no gatekeeping. - **How to install:** one command, below. NeuroDock plugs into Claude Desktop / Claude Code / Cursor (any MCP-aware client). Local-first by default. No telemetry. AGPL-3.0-or-later. ## How it fits together You chat with Claude exactly like normal. Under the hood, Claude calls NeuroDock's local MCP servers; they read and write your local store; the result flows back into Claude's reply. <p align="center"> <img src="./assets/branding/architecture-request-path.svg" alt="Request path: you talk to Claude; Claude calls five NeuroDock MCP servers (chronometric, cognitive-graph, task-fractionator, translation, guardrail) plus the evals harness; they read and write ~/.neurodock on your local machine; results flow back into Claude's reply. All local by default, no telemetry, your data stays your data." width="100%"> </p> Everything runs on your laptop. Nothing leaves your machine unless you explicitly turn on a cloud option. <p align="center"> <img src="./assets/branding/onboarding-3-steps.svg" alt="Install NeuroDock in three steps: 1) Run npx @neurodock/cli@latest install-all (under 5 minutes). 2) Full-quit Claude with Cmd+Q or Ctrl+Q so it re-reads its MCP config (30 seconds). 3) Start talking to Claude — for example, ask 'What was I working on yesterday?'" width="100%"> </p> ## Install ```sh npx --yes @neurodock/cli@latest install-all ``` One command. It pip-installs the five MCP servers (plus the `neurodock-evals` harness), wires Claude Desktop / Claude Code / Cursor, and drops a starter profile at `~/.neurodock/profile.yaml`. Then, **in any conversation**, try one of: ``` What was I working on yesterday? Plan my morning. Decompose this goal into atomic tasks. ``` Claude calls the MCP tools under the hood; you just talk. > ### 🛑 First-time gotcha: full-quit Claude before testing > > Claude only reads its MCP config at startup. **Closing the window is not > enough.** This is the #1 silent failure people hit. > > - **macOS:** `Cmd + Q` (or Claude menu → Quit Claude). > - **Windows:** right-click the Claude icon in the system tray → **Quit**. > - **Linux:** kill the process (`pkill -f Claude` or quit from the tray). > > Then reopen Claude and try one of the prompts above. Requires Python 3.11+ and Node 22+. Works on macOS, Linux, Windows. > **Why `@latest`?** If you previously ran `npm install -g @neurodock/cli`, > npx will silently reuse that older global install instead of fetching the > current version — and old versions don't have `install-all`. The `@latest` > tag forces npx to resolve against the npm registry every time. Same reason > we use it on `update`. <details> <summary><strong>Want to install it step-by-step instead?</strong></summary> NeuroDock ships across two registries: the Python **MCP servers** (MCP = Model Context Protocol — the standard that lets Claude call local tools) on PyPI, and the user-facing **CLI** on npm. The CLI wraps everything else. **1. Install the six MCP servers** ```sh pip install neurodock-mcp-chronometric neurodock-mcp-cognitive-graph neurodock-mcp-task-fractionator neurodock-mcp-translation neurodock-mcp-guardrail neurodock-evals ``` **2. Wire them into your MCP-aware client** ```sh npx --yes @neurodock/cli@latest init ``` Detects Claude Desktop, Claude Code, or Cursor and writes the server entries automatically. **3. Restart Claude** (full quit, not close-window — see the callout above). **About the `neurodock` command** — it lives on npm as `@neurodock/cli`, **not** on PyPI. The `pip install` step gives you the MCP server binaries that Claude calls over stdio; the CLI is separate. Two ways to run it: ```sh # Option A — run via npx, no install npx --yes @neurodock/cli@latest doctor # Option B — install once, call 'neurodock' from anywhere npm install -g @neurodock/cli neurodock doctor ``` `@neurodock/cli` exposes: `init`, `doctor`, `validate`, `update`, `sync`, `uninstall`, `host install`, `host uninstall`, `profile show`, `profile validate`, `install-all`, `install-hooks`, `examples`, `plugin add/remove/list/enable/disable/validate`. ### Proactive guardrails (optional, recommended) By default NeuroDock waits for you to ask. That's the wrong shape — an ND user in hyperfocus is the one least likely to remember to run a break tool. One command flips it: ```sh neurodock install-hooks --self-test ``` This wires a small Python script (bundled, stdlib-only — no extra install needed) into Claude Code's hook system. It then runs silently on every tool call and auto-fires the chronometric / rumination / sycophancy heuristics when patterns trip. You get a one-line stderr banner on the next prompt — never blocked, always dismissible. For host-agnostic coverage (catches you working in the terminal at 02:00 too), add the standalone daemon: ```sh neurodock install-hooks --install-daemon --self-test ``` That registers a per-user autostart entry (HKCU Run on Windows, LaunchAgent on macOS, systemd `--user` on Linux). The daemon polls every 5 min and surfaces OS-native notifications. Opt out anytime: ```sh neurodock install-hooks --uninstall # removes both export NEURODOCK_GUARDRAILS=off # disables without removing ``` The browser extension carries its own equivalent (Phase 2 watchdog) — it's enabled by default and toggleable from `chrome.storage.local` via the popup Settings tab. See [`docs/.../proactive-guardrails`](./docs/src/content/docs/concepts/proactive-guardrails.mdx) for the design behind this and the opt-out matrix. Want to see it work without installing from PyPI/npm at all? `TESTING_LOCAL.md` walks through the from-clone path. </details> <details> <summary><strong>Prefer a plugin, a one-click desktop extension, or the MCP Registry?</strong></summary> The `install-all` command above is the recommended path. The same servers are also distributed through three standard channels — all install the identical local stdio servers, so you can pick whichever fits your client: **Claude Code plugin** — bundles the five MCP servers _and_ a set of ND-aware skills in one step. Requires [`uv`](https://docs.astral.sh/uv/) (the servers run via `uvx`). ``` /plugin marketplace add tlennon-ie/neurodock /plugin install neurodock@neurodock ``` **Claude Desktop extension (`.mcpb`)** — one-click install, no config editing. One bundle per server under [`mcpb/`](./mcpb/); build with `npx @anthropic-ai/mcpb pack mcpb/neurodock-mcp-translation` and drag the `.mcpb` onto Claude Desktop → Settings → Extensions. Requires `uv`. **Official MCP Registry** — each server ships a [`server.json`](./packages/mcp-translation/server.json) and is published to [registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io) under the `io.github.tlennon-ie/*` namespace, so MCP-aware clients can discover them directly. **Hosted remote server (no install)** — the stateless tools (translation, guardrail, and `decompose`) are also served over OAuth at a hosted HTTPS endpoint, so you can use them with no local install and no `uv`: ``` https://mcp.neurodock.org/mcp ``` In Claude (claude.ai or Desktop) → **Settings → Connectors → Add custom connector** → paste that URL → complete the sign-in prompt. The eight stateless tools appear immediately. An opt-in memory surface (`enable_hosted_storage`, `connect_byos_storage`, `record_fact`, `recall_entity`, …) is also exposed but does nothing until you explicitly enable storage for your signed-in account. The personal cognitive graph and neurotype profile are **never** hosted — they stay on the local install. Full walkthrough: [Hosted server](./docs/src/content/docs/getting-started/remote.mdx). The hosted remote server is live at `mcp.neurodock.org`. </details> ## Update ```sh npx --yes @neurodock/cli@latest update ``` One command. Upgrades all six MCP servers (`pip install --upgrade` / `uv tool install`), refreshes your wired client configs, and re-registers the optional native-messaging host. Same flags as `install-all` (`--client`, `--profile`, `--installer`, `--dry-run`, `--no-native-host`, `--yes`). The browser extension auto-updates through the Chrome / Firefox / Edge store; sideloaded users `git pull` and rebuild. > Full-quit Claude after u
What people ask about neurodock
What is tlennon-ie/neurodock?
+
tlennon-ie/neurodock is mcp servers for the Claude AI ecosystem. A local-first cognitive substrate for neurodivergent professionals. Gives Claude memory, a sense of time, a translator for corporate ambiguity, and a guardrail that refuses to amplify rumination, hyperfocus, or sycophancy. MCP-native. No telemetry. AGPL-3.0-or-later. Self-ID sufficient — no diagnosis gating. It has 3 GitHub stars and was last updated today.
How do I install neurodock?
+
You can install neurodock by cloning the repository (https://github.com/tlennon-ie/neurodock) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is tlennon-ie/neurodock safe to use?
+
Our security agent has analyzed tlennon-ie/neurodock and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains tlennon-ie/neurodock?
+
tlennon-ie/neurodock is maintained by tlennon-ie. The last recorded GitHub activity is from today, with 1 open issues.
Are there alternatives to neurodock?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy neurodock to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/tlennon-ie-neurodock)<a href="https://claudewave.com/repo/tlennon-ie-neurodock"><img src="https://claudewave.com/api/badge/tlennon-ie-neurodock" alt="Featured on ClaudeWave: tlennon-ie/neurodock" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。