memopaper-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@memopaper-mcpadd a memo: buy milk tomorrow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
memopaper-mcp
MCP server for memopaper — gives AI agents direct access to your memo buffer.
Configuration
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"memopaper": {
"command": "npx",
"args": ["memopaper-mcp@latest"],
"env": {
"MEMOPAPER_API_KEY": "mp_..."
}
}
}
}Claude Code
Add .mcp.json to your project root:
{
"mcpServers": {
"memopaper": {
"command": "npx",
"args": ["memopaper-mcp@latest"],
"env": {
"MEMOPAPER_API_KEY": "mp_..."
}
}
}
}Get your API key at memopaper.dev under Dashboard → API Keys.
Note: Never commit
.mcp.jsoncontaining your API key to version control. Add it to.gitignore.
Related MCP server: mem0_mcp_server
Tool
Exposes a single memo tool with the following actions:
Action | Description | Required params |
| Save a memo |
|
| List memos | — |
| Get a memo by UUID |
|
| Get the Nth latest memo (1=newest) |
|
| Get the latest memo | — |
| Get the oldest memo | — |
| Get and delete the latest memo | — |
| Delete a memo by UUID |
|
| Edit a memo's text |
|
| Show total count and per-group breakdown | — |
Optional params on most actions: group, visibility, limit.
Environment Variables
Variable | Required | Description |
| Yes | API key from the dashboard, starting with |
Claude Code Skills
For Claude Code users, optional slash commands are available in the skills/ directory:
Skill | Description |
|
|
|
|
Install:
mkdir -p ~/.claude/commands/memopaper
cp skills/watch.md ~/.claude/commands/memopaper/watch.md
cp skills/help.md ~/.claude/commands/memopaper/help.mdUsage:
/memopaper:watch @tasks
/memopaper:watch @tasks 10
/memopaper:watch @tasks --shellWarning: All memo execution — whether as AI instructions or shell commands — runs on your machine with your permissions. You are fully responsible for the content and consequences of every memo in the queue. Use only with memo groups you fully control and trust.
Shell execution is disabled by default. Pass
--shellto enable it. Even then, destructive commands (rm,del,git reset --hard,dd, etc.) are automatically blocked and logged to@warning.
Related
memopaper.dev — web dashboard
memopaper — CLI client
Available Tools
1 toolmemoA
Save a memo or manage existing ones.
Actions and required parameters: add : text(req), group, visibility list : group, visibility, limit get : uuid(req) get_nth : index(req, 1=latest), group latest : group, visibility oldest : group, visibility pop : group — read + delete latest (destructive) delete : uuid(req) (destructive) edit : uuid(req), text(req) stats : (no params) — total and per-group count
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Memo content (max 2048 bytes). Required for: add, edit | |
| uuid | No | Memo UUID. Required for: get, delete, edit | |
| group | No | Group name filter/target (default: inbox) | |
| index | No | 1-based index (1=latest). Required for: get_nth | |
| limit | No | Max results (default: 20). Used in: list | |
| action | Yes | ||
| visibility | No | Visibility. Used in: add, list, latest, oldest |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explicitly flags 'pop' as 'read + delete latest (destructive)' and marks 'delete' as destructive, which discloses important side effects. It also lists all actions, making the tool's behavior predictable. It does not mention errors, permissions, or idempotency, but the destructive labeling is a positive contribution given the absence of annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and information-dense, using a clear 'action: parameters' format. It front-loads the tool's purpose and provides a complete action list in just a few lines, without redundant prose. Every line serves to clarify an action, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's multi-action complexity and absence of output schema, the description covers all actions, required parameters, and destructive operations. It lacks return-type descriptions, but those are not explicitly required. The description is sufficient for an agent to select and invoke actions correctly, though a brief note on expected outputs would enhance completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers 86% of parameters with descriptions, including 'Required for' annotations for text, uuid, index, limit, and visibility. The description essentially restates this information in the action list, adding little new meaning beyond the schema. It does clarify that 'group' defaults to 'inbox', which is also present in the schema. Overall, the description does not significantly augment the schema's parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as managing memos, enumerating all 10 actions (add, list, get, get_nth, latest, oldest, pop, delete, edit, stats) with required parameters. While 'Save a memo or manage existing ones' is a bit generic, the action list clarifies the full scope and distinguishes the multiple operations available.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Each action's required and optional parameters are listed, which serves as operational guidance for how to use the tool. However, there is no explicit statement of when to use this tool versus alternatives, nor any context for typical use cases. Given there are no siblings, the lack of comparison is not a major flaw, but a sentence on recommended usage would have been helpful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
v1.0.3- First observed
memo
TDQS
Scored across 1 tool
Only one tool exists, so there is no risk of confusing separate tools. The internal actions (add, list, get, delete, etc.) are distinct and well-named, making selection unambiguous.
The tool is named 'memo' and uses simple verb-based actions. While the verb_noun pattern is not used at the tool level, the internal actions are consistently lowercase verbs, and the overall naming is predictable and readable.
A single tool is quite thin for a tool surface, even though it packs many operations. The server would benefit from splitting actions into separate tools, but the current count is not a functional problem.
The tool provides full CRUD plus list, search-by-index, latest/oldest, pop (read+delete), and stats. This covers the memo domain thoroughly, leaving no obvious dead ends.
Maintenance
Related MCP Connectors
An MCP memory server. One memory your agents share — across models, devices and apps.
One memory, every AI. A shared, user-owned markdown memory your AI clients read and write over MCP.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for creating, listing, updating, deleting memos, and managing attachments via the Memos API.1210 npmMIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that provides memory management tools for AI agents, enabling adding, searching, updating, and deleting memories via the Mem0 API.22 npmMIT

@memofs/mcp-serverofficial
AlicenseNot gradedqualityBmaintenance@memofs/mcp-server lets AI coding agents (Claude Code, Claude Desktop, Codex, Cursor, opencode, Gemini CLI, GitHub Copilot, Zed, and any other MCP client) securely read and write MemoFS memory through standard Model Context Protocol tools.6MIT- AlicenseNot gradedqualityBmaintenanceMCP server wrapping a self-hosted mem0 REST API, enabling memory management with deduplication and mention-aware reranked search.MIT