mcp.so submission — Fresh Jots (copy/paste source)
Field-by-field values for the mcp.so "Submit" form. All values are reconciled against what is live as of 2026-06-05: npm freshjots-mcp v0.1.3, the hosted remote at https://freshjots.com/mcp, and the official registry name io.github.Goran-Arsov/freshjots-mcp. Copy each section into the matching form field.
Name
Fresh Jots
Short description (one line)
Read and write your Fresh Jots notes from Claude, Cursor, and any MCP client.
Tags
notes, note-taking, productivity, knowledge-management, journaling, logging, ai-memory, plain-text
Avatar image URL
https://freshjots.com/icon-192.png
Fallbacks if the form rejects that one: https://freshjots.com/icon.png (canonical app icon) or https://freshjots.com/icon.svg (vector).
GitHub repo / npm / homepage
- Repository: https://github.com/Goran-Arsov/freshjots-mcp
- npm package: freshjots-mcp
- Homepage / docs: https://freshjots.com/for/developers
Server Config
Paste the local (npm/stdio) block, which is the self-contained installable form the field expects. The env var the server reads is FRESHJOTS_TOKEN (it also accepts FRESHJOTS_API_TOKEN, plus an optional FRESHJOTS_BASE_URL); the token uses the mn_ prefix, so leave the placeholder for users to swap in their own.
{
"mcpServers": {
"freshjots": {
"command": "npx",
"args": ["-y", "freshjots-mcp"],
"env": { "FRESHJOTS_TOKEN": "mn_your_token_here" }
}
}
}
If the form accepts a second, remote config, add the hosted endpoint as well; it needs no token because OAuth handles authentication.
{
"mcpServers": {
"freshjots": { "url": "https://freshjots.com/mcp" }
}
}
Content (the detail-page body — markdown)
Everything below this line, down to the end of the file, is the page body. Copy it verbatim.
Fresh Jots
Read and write your Fresh Jots notes from Claude, Cursor, and any MCP client. Fresh Jots is a fast, API-first plain-text notebook; this server lets your AI assistant manage your notes and folders directly instead of you copy-pasting.
Tools (11)
Notes: list · read · create · append · update · delete · move Folders: list · create · rename · delete
The standout tool is append-to-note: it appends to a note addressed by an exact filename and creates it on first write. That makes it the natural home for AI session transcripts, cron output, and running journals.
Connect
Hosted (recommended) — OAuth 2.1, nothing to install:
{
"mcpServers": {
"freshjots": { "url": "https://freshjots.com/mcp" }
}
}
Local (stdio) — zero-dependency npm server with an API token:
{
"mcpServers": {
"freshjots": {
"command": "npx",
"args": ["-y", "freshjots-mcp"],
"env": { "FRESHJOTS_TOKEN": "mn_your_token_here" }
}
}
}
Auth
OAuth 2.1 for the hosted remote, or a bearer API token for the local server. Create a token at freshjots.com/settings/api_tokens. Requires a Fresh Jots Pro or Team plan.
Links
Server Config
{
"mcpServers": {
"freshjots": {
"command": "npx",
"args": [
"-y",
"freshjots-mcp"
],
"env": {
"FRESHJOTS_TOKEN": "mn_your_token_here"
}
}
}
}