Notes MCP Server
Enables listing, reading, and writing notes with automatic version snapshots before edits, secured by token authentication.
README
inktrace-mcp-template
A minimal remote MCP (Model Context Protocol) server you can run in ten minutes: Hono, the official MCP SDK over streamable HTTP, token auth with a constant-time comparison, Zod-validated tools, and Postgres via Drizzle. The domain is a toy notes table, but the structure is the one I run in production for InkTrace — this repo is a clean-room extraction of that pattern, written for reading. The full design write-up is in the inktrace-showcase repo.
What it demonstrates
- Stateless streamable HTTP. A fresh
McpServer+ transport per request, so the same code runs on a laptop, a container, or a serverless function with nothing to desynchronize. Seesrc/index.ts— the whole transport dance is five lines. - Token auth done carefully. SHA-256 both sides, then
timingSafeEqual(src/auth.ts). Hashing first equalizes buffer lengths so a wrong-length guess can't throw. The secret is accepted as a Bearer header (preferred) or a URL path segment for connector UIs that can't send headers — with a comment explaining why the header variant is preferred (URLs end up in logs). - Policy in the protocol. Write tools carry a "requires prior explicit user approval" prefix and the server
instructionsstate the rules of engagement, so a well-behaved client asks the user before mutating anything (src/mcp/server.ts,src/mcp/tools.ts). - Snapshot before destructive writes.
write_noteversions the current content before overwriting it and prunes history to the newest 20 (snapshotBeforeEditinsrc/mcp/tools.ts). Undo is a data-model feature, not a support ticket. - Zod on every tool input, and a
safe()wrapper that turns thrown exceptions into MCP tool errors instead of protocol crashes. - No delete tool. The worst realistic failure of a confused model is an unwanted addition — visible and reversible — not silent destruction.
Quickstart
You need Node 20+ and a Postgres database.
npm install
cp .env.example .env # fill in DATABASE_URL and MCP_SECRET
npm run db:push # create the notes / note_versions tables
npm run dev # http://localhost:3001/mcp
Connect from Claude Code:
claude mcp add --transport http notes http://localhost:3001/mcp \
--header "Authorization: Bearer <your MCP_SECRET>"
Then ask Claude to list_notes, have it draft something, approve it, and watch write_note create the row — and snapshot before any edit.
Layout
src/
├── index.ts # Hono app, health check, MCP mount, stateless transport
├── auth.ts # timing-safe token middleware (Bearer or path segment)
├── db.ts # postgres.js + Drizzle, serverless-friendly pool size
├── schema.ts # notes + note_versions
└── mcp/
├── server.ts # server identity + usage-policy instructions
└── tools.ts # 3 read tools + 1 write tool with pre-write snapshot
What the production version adds
Since this template is deliberately single-file-per-concern, it's worth naming what the real InkTrace server layers on top: per-tool project-ownership checks, Postgres row-level security pinned per request as a second authorization layer, HTML sanitization on rich-text input, batch caps on bulk operations, and rate limiting inherited from the surrounding API. The auth gate here is single-tenant by design; the multi-user path is OAuth, which replaces tokenAuth without touching any tool.
License
MIT — take the structure, replace the notes.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.