Skip to main content
ClaudeWave
MCP ServersOfficial Registry0 stars0 forksJavaScriptMITUpdated 2d ago
ClaudeWave Trust Score
85/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Topics declared
  • Documented (README)
Flags
  • !No description
Last scanned: 8/23/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/Goran-Arsov/freshjots-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "freshjots-mcp": {
      "command": "node",
      "args": ["/path/to/freshjots-mcp/dist/index.js"],
      "env": {
        "FRESHJOTS_TOKEN": "<freshjots_token>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/Goran-Arsov/freshjots-mcp and follow its README for install instructions.
Detected environment variables
FRESHJOTS_TOKEN
Use cases

MCP Servers overview

# freshjots-mcp

[![smithery badge](https://smithery.ai/badge/arsphy/freshjots-mcp)](https://smithery.ai/servers/arsphy/freshjots-mcp)

A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server for [Fresh Jots](https://freshjots.com). It exposes your Fresh Jots notes as MCP tools, so any MCP client — Claude Desktop, Claude Code, Cursor, and others — can read and write them directly. Point your AI agent's output at a Fresh Jots note, log your coding sessions, or let an assistant search and update your notebook, all through the API.

MCP is an open standard for connecting AI assistants to external tools and data — think of it as a universal adapter, so one integration works across every compatible client.

## What you can do

The server talks to the [Fresh Jots REST API](https://freshjots.com/docs) over a bearer token and exposes these tools:

**Notes** — `list_notes`, `read_note`, `create_note`, `append_to_note`, `update_note`, `delete_note`, `move_note`

**Folders** — `list_folders`, `create_folder`, `rename_folder`, `delete_folder`

The standout is **`append_to_note`**: it appends to a note addressed by an exact filename (e.g. `ai-sessions.txt`) and creates the note on first write. Call it repeatedly to accumulate a log — AI session transcripts, cron output, a running journal — in one place.

Notes are **plain text** through the API: rich (Trix) notes can be listed and read, but only plain notes can be created or edited here.

## Requirements

- Node.js 18 or newer
- A Fresh Jots API token (Dev or Team plan). Create one at <https://freshjots.com/settings/api_tokens>. Tokens look like `mn_…`.

## Install

Until this is published to npm, build it from source:

```bash
git clone https://github.com/Goran-Arsov/freshjots-mcp.git
cd freshjots-mcp
npm install        # also builds via the prepare script
npm run build      # or build explicitly
```

The runnable server is then `dist/index.js`.

## Configuration

The server reads its token from the environment:

- `FRESHJOTS_TOKEN` (required) — your `mn_…` API token. `FRESHJOTS_API_TOKEN` is also accepted.
- `FRESHJOTS_BASE_URL` (optional) — defaults to `https://freshjots.com/api/v1`. Override for a self-hosted or staging instance.
- `FRESHJOTS_PASSPHRASE` (optional) — enables transparent client-side encryption (see below).

## Encryption

Set `FRESHJOTS_PASSPHRASE` and the server can keep notes Fresh Jots cannot read. `create_note` and `append_to_note` take an `encrypt: true` argument that encrypts the body **locally** before it ever leaves your machine, and marks the note client-encrypted; `read_note` takes `decrypt: true` to decrypt it back. The model works in plaintext while Fresh Jots stores only ciphertext — you hold the only key, so **lose the passphrase and the note is unrecoverable**. Encryption is per-note and personal-only (not team notes); a note's title and metadata stay in the clear. The format (`fj1`: AES-256-CBC + HMAC-SHA256, PBKDF2) is interoperable with the JS, Python, Ruby, and shell clients. See <https://freshjots.com/encrypted-notes>.

### Claude Desktop

Add to `claude_desktop_config.json` (Settings → Developer → Edit Config):

```json
{
  "mcpServers": {
    "freshjots": {
      "command": "node",
      "args": ["/absolute/path/to/freshjots-mcp/dist/index.js"],
      "env": { "FRESHJOTS_TOKEN": "mn_your_token_here" }
    }
  }
}
```

### Claude Code

```bash
claude mcp add freshjots --scope user \
  -e FRESHJOTS_TOKEN='${FRESHJOTS_TOKEN}' \
  -- node /absolute/path/to/freshjots-mcp/dist/index.js
```

Using `'${FRESHJOTS_TOKEN}'` (single-quoted) stores the *reference*, not the secret — Claude Code expands it from your shell environment at launch, so keep `export FRESHJOTS_TOKEN=mn_…` in your shell profile. Or pass the literal token with `-e FRESHJOTS_TOKEN=mn_…` if you prefer it in the config.

### Cursor

Add to `~/.cursor/mcp.json` (or a project `.cursor/mcp.json`):

```json
{
  "mcpServers": {
    "freshjots": {
      "command": "node",
      "args": ["/absolute/path/to/freshjots-mcp/dist/index.js"],
      "env": { "FRESHJOTS_TOKEN": "mn_your_token_here" }
    }
  }
}
```

Once published to npm, `command: "npx"`, `args: ["-y", "freshjots-mcp"]` will replace the local path in any of the above.

## Development

```bash
npm run build   # compile TypeScript to dist/
npm test        # unit tests (fetch stubbed; no network)
node smoke.mjs  # live end-to-end test against the real API — needs FRESHJOTS_TOKEN;
                # creates only clearly-marked [mcp-test] notes/folders and deletes them
```

## License

MIT © Goran Arsov
claudemcpmodel-context-protocolnotesproductivity

What people ask about freshjots-mcp

What is Goran-Arsov/freshjots-mcp?

+

Goran-Arsov/freshjots-mcp is mcp servers for the Claude AI ecosystem with 0 GitHub stars.

How do I install freshjots-mcp?

+

You can install freshjots-mcp by cloning the repository (https://github.com/Goran-Arsov/freshjots-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is Goran-Arsov/freshjots-mcp safe to use?

+

Our security agent has analyzed Goran-Arsov/freshjots-mcp and assigned a Trust Score of 85/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains Goran-Arsov/freshjots-mcp?

+

Goran-Arsov/freshjots-mcp is maintained by Goran-Arsov. The last recorded GitHub activity is dated 2026-08-20, with 0 open issues.

Are there alternatives to freshjots-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy freshjots-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: Goran-Arsov/freshjots-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/goran-arsov-freshjots-mcp)](https://claudewave.com/repo/goran-arsov-freshjots-mcp)
<a href="https://claudewave.com/repo/goran-arsov-freshjots-mcp"><img src="https://claudewave.com/api/badge/goran-arsov-freshjots-mcp" alt="Featured on ClaudeWave: Goran-Arsov/freshjots-mcp" width="320" height="64" /></a>

More MCP Servers

freshjots-mcp alternatives