NodeBook
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NodeBookCreate an epic for the new onboarding flow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
NodeBook
Issue-native wiki, planning, reminders, attachments, and MCP workspace — built natively on Cloudflare Workers.
Canonical PRD: https://github.com/and1truong/wiki/issues/229
What it is
NodeBook is a single-owner workspace where every issue is a first-class node in a wiki graph:
Issues — all PRD types (
task,bug,epic,story,decision,finding,incident,learning,wiki,note) with open/closed state, labels, priorities, Markdown bodies, and durable audit history.Graph — parent/child hierarchy, typed relationships (
related,depends_on,blocks,supersedes,duplicates), and#123references that resolve even when the target is created later.Wiki — hierarchy tree navigation, breadcrumbs, backlinks, and related-content panels.
Search — FTS5 full-text search over titles, bodies, comments, labels, and attachment metadata, with type/state/label filters and PRD
search_knowledgesemantics.Planning — Inbox / Today / Upcoming / Overdue views in the owner's timezone; recurring tasks (RFC 5545 rules) record occurrences and advance planning dates instead of closing.
Reminders & notifications — absolute, before-due, and recurring reminders delivered to an in-app notification inbox by a one-minute Cron Trigger, with idempotent delivery and expiring claim locks.
Attachments — private R2 blobs with checksum deduplication, inline previews or forced downloads, range support, soft deletion, and daily garbage collection.
MCP — a Streamable HTTP MCP server on
/mcpexposing 18 scoped read/write tools that share the exact same services, validation, and audit trail as the web UI.
Related MCP server: mcp-jira
Architecture
Browser (React SPA) ── Cloudflare Access ──▶ Worker ──▶ D1 (domain data + FTS5)
│ ├── R2 (private blobs)
MCP clients ── PAT (nbk_…) ──▶ /mcp ──▶ Durable Object (session state)
│
Cron Triggers (1 min / daily) ───────────────▶ scheduled handlersOne TypeScript project, one deployable Worker. No Node.js runtime (nodejs_compat is not required). See docs/architecture.md, docs/deployment.md, and docs/mvp-scope.md.
Quick start
npm ci
cp .dev.vars.example .dev.vars # local identity (owner@nodebook.local)
# Terminal 1 — the Worker (API + MCP + UI on :8787)
npm run db:migrate:local
npm run dev:worker
# Terminal 2 — the Vite dev server with API proxy (optional, hot reload on :5173)
npm run dev:web
# Or run the built SPA directly through the Worker:
npm run build # then just use http://localhost:8787Quality gates
npm run lint # ESLint (source + tests)
npm run typecheck # TypeScript strict across client, Worker, services, MCP
npm test # unit tests (recurrence, timezones, refs, auth, search utils)
npm run test:integration # integration tests under the Workers runtime (D1/R2/DO)
npm run test:e2e # Playwright acceptance flow against a local Worker
npm run build # production client bundle
npx wrangler d1 migrations apply nodebook --local # migrations prove clean
npx wrangler deploy --dry-run # packaging + bindings checkCI/CD
CI:
.github/workflows/ci.ymlruns every gate above (plus e2e) on every pull request and every push tomain— one job onubuntu-latest, failing fast on any red step. A red check blocks merge.CD: production deploys via Cloudflare's Git integration (Workers Builds): a push to
mainmakes Cloudflare runnpm ci && npm run buildandnpx wrangler deployagainst this repo. CI never deploys.Manual/staging:
npm run deployruns the same build + deploy from your machine and remains the staging path.
The one-time Cloudflare dashboard setup (connect the repo, D1 database_id,
secrets) is documented in docs/deployment.md §5.
MCP
Create a scoped token in Settings → MCP tokens, then point any MCP client at:
URL: https://<your-worker>/mcp
Auth: Authorization: Bearer nbk_…Tokens are stored as SHA-256 hashes with display prefixes, support expiration, and revoke immediately. Every tool call is re-checked against the database on each request. get_today/get_upcoming accept an optional timezone argument (IANA).
Production notes
The web/API hostname must be protected with Cloudflare Access (
ACCESS_TEAM+ACCESS_AUD); only/mcpbypasses Access, and it still rejects every request without a valid scoped token.Disable
workers.devaccess or keepAUTH_DEV_EMAILunset in production.Back up D1 before applying migrations (
wrangler d1 export), and deploy migrations to staging first.See docs/deployment.md for the full runbook.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceProvides MCP tools for interacting with Redmine, including issues, projects, wiki pages, time entries, and more.161MIT
- Alicense-qualityBmaintenanceProvides JIRA issue search, retrieval, and update functionalities via MCP.51MIT
- Flicense-qualityDmaintenanceEnables to interact with Redmine issues through the MCP protocol, allowing operations like get, list, create, and update tickets.15
- Alicense-qualityBmaintenanceMCP server for the Plane project management API, enabling issue retrieval, listing, commenting, state changes, and creation.1MIT
Related MCP Connectors
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/and1truong/nodebook'
If you have feedback or need assistance with the MCP directory API, please join our Discord server