About
jotnow - Save useful agent outputs
README
Tell your agent to "jot that down" and it's saved to your account at jotnow.dev: tagged, searchable, exportable. Works with Claude Code, Codex, and any other MCP client, plus a terminal CLI.
Free to sign in, and use. Export all your notes in markdown anytime, no vendor-lockin.
Setup
- Sign up (free) at jotnow.dev, then open the confirmation email; its link confirms your address and signs you in. Or sign in to an existing account.
- Open Settings > API keys and create a key.
- Install and store the key once for this machine:
npm install --global jotnow
jotnow key
jotnow key prompts for the key, validates it against the API, and saves it to a config file so every later jotnow command and MCP config on this machine picks it up automatically. It then prints the MCP configuration for your client, plus equivalent commands for Claude Code and Codex.
Once connected, ask your agent to "jot that down", find your jots, or list your recent jots.
Prefer not to install globally, or want to configure an MCP client without touching your terminal first? Use the env-var flow instead:
npx jotnow init --key jn_live_your_key
This validates the key and prints an MCP config block with the key embedded in its env, plus equivalent commands for Claude Code and Codex.
MCP configuration
Claude Code
For Claude Code or similar clients that use a JSON MCP configuration, once a key is stored via jotnow key, no env block is needed:
{
"mcpServers": {
"jotnow": {
"command": "npx",
"args": ["-y", "jotnow"]
}
}
}
Otherwise, configure a key directly in the MCP config (what jotnow init prints):
{
"mcpServers": {
"jotnow": {
"command": "npx",
"args": ["-y", "jotnow"],
"env": {
"JOTNOW_API_KEY": "jn_live_your_key"
}
}
}
}
Codex
After storing your key with jotnow key, add JotNow to Codex:
codex mcp add jotnow -- npx -y jotnow
Codex stores MCP configuration in ~/.codex/config.toml. The Codex CLI, IDE extension, and desktop app share this configuration. To configure JotNow manually instead of using codex mcp add, add:
[mcp_servers.jotnow]
command = "npx"
args = ["-y", "jotnow"]
The server provides these tools:
jot: save a notefind_jots: search notes by keywordrecall_jots: search notes by meaning (Pro)get_jot: read one note by ID or short ID prefixlist_recent_jots: list recently updated notes
CLI
After a global install, store your key once:
npm install --global jotnow
jotnow key
Then run commands directly:
jotnow add "Useful fix" --body "Restart the worker after changing its environment."
jotnow search "worker environment"
jotnow recall "why deployments use stale configuration"
jotnow get <id>
jotnow recent 10
Everything above also works without a global install by prefixing npx, e.g. npx jotnow recent — npx jotnow key stores the key the same way.
Environment variables
JOTNOW_API_KEY: your user-scoped API key from Jotnow settings. If set, it is used instead of (and takes priority over) any key stored byjotnow key— useful for CI or containers where nothing should be written to disk.JOTNOW_API_URL: optional API endpoint override for local development or self-hostingJOTNOW_CONFIG_DIR: optional override for wherejotnow keystores its config file (default~/.jotnow)
jotnow key stores the key in ~/.jotnow/config.json (or $JOTNOW_CONFIG_DIR/config.json), created with permissions that only your user can read.
The npm package contains no account credentials or service-role secret. Each installation uses the API key supplied by its user. Keep that key private and revoke it from Jotnow settings if it is exposed.
Requirements
- Node.js 18 or newer
License
MIT
Installing Jotnow
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/zainzaidi37/jotnow-mcpFAQ
Is Jotnow MCP free?
Yes, Jotnow MCP is free — one-click install via Unyly at no cost.
Does Jotnow need an API key?
No, Jotnow runs without API keys or environment variables.
Is Jotnow hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Jotnow in Claude Desktop, Claude Code or Cursor?
Open Jotnow on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Jotnow with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
