A small bridge that connects Claude Code, Claude Desktop, and any MCP client to your boards. Your assistant can create notes, search what you've written, and see your canvases. You point it at a board and it does the writing.
Summarize this thread and put it on my Research board.
Compare these three libraries in a table on Research.
What have I already written about pricing?
Save this SQL snippet to Snippets so I don't lose it.
It picks whichever it needs. Everything it writes is plain markdown. It renders exactly like a note you typed yourself and is instantly searchable.
Lists every board by name and id, so the agent knows where a note can go before it writes one.
Spin up a fresh canvas, rename one, or delete it. Deleted boards and their notes stay restorable in the app for 30 days.
Drops a markdown note onto the board you name, with headings, task checkboxes, bold, code, links, and images. The position is optional.
Read a board's notes with their ids, rewrite a note's text, move it, or delete it.
A live job card goes queued → running → done on your canvas. When it finishes, the result settles in as a plain note.
Drops a table you can keep editing by hand, or a live embed — YouTube, Spotify, Figma — and updates it as it works.
Full-text search across all your notes, returning highlighted snippets so the agent can find and quote what's already there.
In the app, open the command palette (⌘K / Ctrl-K), run API tokens, name it, and hit Create. Copy the jnt_… secret. It is shown once. Revoke it anytime to instantly cut off access.
The server is published as @codellyson/justanotetaker-mcp, so your agent runs it straight from npm via npx. There is nothing to check out or build.
Add it to your MCP config: .mcp.json for Claude Code, or the Claude Desktop config. Restart, and the tools show up.
{
"mcpServers": {
"justanotetaker": {
"command": "npx",
"args": ["-y", "@codellyson/justanotetaker-mcp"],
"env": {
"JUSTNOTE_TOKEN": "jnt_…",
"JUSTNOTE_API_URL": "https://api.justanotetaker.kreativekorna.com"
}
}
}
} JUSTNOTE_API_URL is optional. Set it to your own deployment if you self-host the API.
A stdio server that the agent launches as a subprocess. Nothing listens on a network port.
The token sees only your account's notes and boards. It can't touch your account or password.
Stored server-side as a hash. Revoke it and whatever was using it stops immediately.