remo-mcp
v0.1.0
Published
MCP server for Remo — read and capture your notes from MCP-compatible LLM clients.
Readme
remo-mcp
MCP server for Remo — read and capture your notes from any MCP-compatible LLM client (Claude Desktop/Code, Cursor, …).
It's a thin, local (stdio) wrapper over Remo's API. No data is stored; every call hits your Remo account directly.
Setup
- Generate an API key in Remo → Settings → API Keys (it starts with
remo_). - Add the server to your MCP client config:
{
"mcpServers": {
"remo": {
"command": "npx",
"args": ["-y", "remo-mcp"],
"env": { "REMO_API_KEY": "remo_xxxxxxxx" }
}
}
}That's it — no install step, npx fetches and runs the latest version.
Tools
Read-only and capture tools (no destructive operations):
| Tool | Description |
| -------------------- | --------------------------------------------------------------------- |
| remo_recent_notes | List your most recently updated notes. |
| remo_search_notes | Keyword / semantic search over your notes. |
| remo_list_notes | List notes with filters (folder, tags, deleted). |
| remo_list_folders | List folders. |
| remo_ask_ai | Answer a question over your notes (RAG), with citations. |
| remo_create_note | Create a note from markdown (optional title, tags, folder, AI format).|
| remo_quick_capture | Quickly capture a markdown snippet as a note. |
remo_ask_ai and the capture tools consume your plan's API quota; rate limits surface as a clean tool error.
