Connect Penlo to Claude

Search your handwritten notes from Claude, ChatGPT, and any AI assistant

Power plan required

1. What is Penlo MCP?

Penlo MCP is a small connector that lets any AI assistant — Claude, ChatGPT, Cursor, VS Code, and others — search and read your handwritten notes during a conversation. No copy-paste, no file uploads, no export step. Ask the assistant a question about something you wrote in a notebook, and it queries Penlo directly to find the answer.

Under the hood it speaks the Model Context Protocol (MCP), an open standard from Anthropic. Penlo runs an MCP server that exposes three tools:

Each user's API key is scoped to their own notes only. The MCP server filters every query by the authenticated user — there's no shared index and no cross-user access.

2. Prerequisites

Before you start, make sure you have:

OCR must finish before MCP can read a notebook. Notebooks that failed OCR or are still pending won't appear in search results. Check the status badge in your Penlo dashboard.

3. Generate your API key

Every client you install needs the same API key. Generate one first, then reuse it.

  1. In Penlo, open Settings → API.
  2. Click Generate API Key.
  3. Copy the key immediately and store it somewhere safe — a password manager is ideal. The full key is shown only once and cannot be retrieved later.

If you lose your key, generate a new one and update each client. Old keys can be revoked anytime from Settings → API.

4. Install in Claude Desktop

Claude Desktop supports a one-click installer format called .mcpb (MCP Bundle). It's the cleanest install path — no JSON editing, no terminal commands.

Download the Penlo extension

Download .mcpb
~5 MB · macOS, Windows, Linux · Claude Desktop 0.10+

Path A — Double-click

  1. Find penlo-mcp.mcpb in your Downloads folder.
  2. Double-click the file. Claude Desktop opens automatically and shows an install dialog for Penlo.
  3. Click Install.

Path B — Install from inside Claude Desktop

Useful if double-clicking is blocked by macOS Gatekeeper.

  1. Open Claude Desktop and go to Settings → Extensions.
  2. Click Advanced settings and find the Extension Developer section.
  3. Click Install Extension… and select the penlo-mcp.mcpb file you downloaded.

Enter your API key

After installing, Claude Desktop prompts you for a Penlo API Key. Paste the key from Section 3 and click Save. Claude stores the key securely in your operating system's keychain.

5. Your first conversation

Start a new chat in Claude and try one of these prompts:

Claude will expand a tool-call panel showing which Penlo tool it's using and the result it received, then weave that into its response.

6. Install in ChatGPT

ChatGPT supports custom MCP servers via Developer Mode in Connectors. Available on Plus, Pro, Business, Enterprise, and Education plans.

Step 1 — Install Node.js (if you don't have it)

Check by running node --version in a terminal. If not installed, get it from nodejs.org.

Step 2 — Add the connector

  1. In ChatGPT (web), click your profile icon → Settings → Connectors.
  2. Toggle on Developer Mode.
  3. Click Add MCP server and fill in:
Name:    Penlo
Command: npx
Args:    -y @penloapp/mcp-server

Environment variables:
  PENLO_API_URL = https://notes.penlo.app/mcp
  PENLO_API_KEY = your_penlo_api_key_here

7. Install in Cursor

Reference your handwritten notes while you code. Cursor reads MCP config from a JSON file.

Config file location

Add the Penlo entry

{
  "mcpServers": {
    "penlo": {
      "command": "npx",
      "args": ["-y", "@penloapp/mcp-server"],
      "env": {
        "PENLO_API_URL": "https://notes.penlo.app/mcp",
        "PENLO_API_KEY": "your_penlo_api_key_here"
      }
    }
  }
}

Restart Cursor. Penlo tools appear in Cursor's chat tool list.

8. Install in VS Code

Use Penlo from GitHub Copilot Chat inside Visual Studio Code. Create .vscode/mcp.json in your project root:

{
  "servers": {
    "penlo": {
      "command": "npx",
      "args": ["-y", "@penloapp/mcp-server"],
      "env": {
        "PENLO_API_URL": "https://notes.penlo.app/mcp",
        "PENLO_API_KEY": "your_penlo_api_key_here"
      }
    }
  }
}

Note: VS Code uses servers (not mcpServers like Cursor). Run Developer: Reload Window from the command palette.

9. Install in Claude Code

If you use Claude Code (the CLI), register Penlo with a single command:

claude mcp add penlo \
  --command npx \
  --args "-y @penloapp/mcp-server" \
  --env PENLO_API_URL=https://notes.penlo.app/mcp \
  --env PENLO_API_KEY=your_penlo_api_key_here

10. Other MCP clients

Windsurf, Zed, Cline, Continue, and Gemini desktop apps all support MCP. The config shape matches the Cursor or VS Code example above — find your client's MCP config docs and drop in the same command / args / env block.

If your client supports MCP and Penlo doesn't work after configuration, let us know at hello@penlo.app.

11. Troubleshooting

SymptomLikely cause & fix
"Invalid API key" errorThe key was rotated or copied with whitespace. Generate a new key in Settings → API.
"Upgrade required" or 403Your account is not on the Power plan. Upgrade in Settings → Subscription.
Tools don't appearRestart the client after install. For JSON-config clients, check that the file is valid JSON.
Search returns emptyOCR may still be processing. Check sync status in the Penlo dashboard.
macOS "unidentified developer"Use Path B — install from inside Claude Desktop's Settings → Extensions.
npx: command not foundNode.js 18+ is not installed. Get it from nodejs.org.
Answers are wrongThe OCR may have misread your handwriting. Open the notebook in Penlo and verify the OCR text.

12. Privacy & what gets shared

When you use Penlo MCP, the AI client sends a search query to Penlo's server, and Penlo returns matching OCR text from your notebooks. The AI client then uses that text to compose its response.

For full details, see the Penlo Privacy Policy.

13. Support

Run into something this guide doesn't cover?

Email: hello@penlo.app
Release notes: penlo.app/changelog