compy-mcp
MCP server for searching and reading notes captured with the Compy Chrome extension, allowing AI agents to access local highlights and tasks on demand.
README
compy-mcp
Let your AI agent search and read the notes you captured on the web with Compy.
Compy is a local-first Chrome extension for highlighting and note-taking on any web page. compy-mcp is a Model Context Protocol server that exposes those notes to an MCP client (Claude Code, Claude Desktop, …) so your agent can pull the relevant highlights and tasks on demand — no copy-paste.
100% local. Read-only. No account, no network — it just reads a JSON file that Compy writes on your machine.
How it works
Compy (browser) ──"Sync for AI"──▶ ~/Downloads/compy/compy-export.json
│ (watched)
compy-mcp (stdio)
│ tools + resources
Claude Code / any MCP client
- In Compy's dashboard, open the Copy for AI menu → Sync for AI. This writes
~/Downloads/compy/compy-export.json. Re-run it whenever you want the agent to see your latest notes. - Register this server with your MCP client (below).
- Ask your agent things like "check Compy for anything I flagged on the billing page" — it calls
search_notesand gets your notes, quotes, tags and URLs.
Install
Requires Node 18+.
Claude Code
claude mcp add compy -- npx -y compy-mcp
Claude Desktop / other clients
Add to your MCP config:
{
"mcpServers": {
"compy": { "command": "npx", "args": ["-y", "compy-mcp"] }
}
}
Custom file location
By default it reads ~/Downloads/compy/compy-export.json. Override with an env var or flag:
COMPY_FILE=/path/to/compy-export.json npx compy-mcp
# or
npx compy-mcp --file /path/to/compy-export.json
Tools
| Tool | What it does |
|---|---|
search_notes |
Ranked keyword search over note text, quotes, titles and tags. Filter by site / label. |
list_tasks |
List notes/tasks, optionally filtered by site / label. |
list_sites |
Sites you have notes on, with counts. Good first call. |
get_note |
Fetch one note by id. |
get_markdown |
Render notes as a Markdown task list (optionally scoped to a site). |
Resource: compy://sites — overview of sites + counts.
Why keyword search, not embeddings?
The note set is small (tens to a few hundred short notes) and the calling model is the semantic layer — it reasons over what search_notes returns. Fast substring/token ranking is plenty at this scale and keeps everything local, with zero setup and no API keys.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.