A Python package enabling LLM models to interact with the Memos server via the MCP interface for searching, creating, retrieving, and managing memos.
Memos π MCP server exists for a simple reason β assistants are far more useful when they can act on Memos π directly instead of describing what you should do. A Python package enabling LLM models to interact with the Memos server via the MCP interface for searching, creating, retrieving, and managing memos.
You can include this package in your config file as bellow, just as you use other Python MCP plugins.
Once Memos π is connected, these are the calls the assistant has available:
visibility β Tag visibility (PUBLIC/PROTECTED/PRIVATE, default: PRIVATE) |list_memo_tags β List all existing memo tagssearch_memo β Search for memos using keywordscreate_memo β Create a new memoget_memo β Get a specific memo by IDYou will need one environment variable: YOUR_ACCESS_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.
Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Memos π's toolset β visibility, list_memo_tags, search_memo and 2 more β is a fair guide to whether it matches your workflow. It is maintained by RyoJerryYu; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live β if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| visibility | Tag visibility (PUBLIC/PROTECTED/PRIVATE, default: PRIVATE) | |
| list_memo_tags | List all existing memo tags |
| search_memo | Search for memos using keywords |
| create_memo | Create a new memo |
| get_memo | Get a specific memo by ID |
{
...,
"mcpServers": {
"fetch": { // other mcp servers
"command": "uvx",
"args": ["mcp-server-fetch"]
},
"memos": { // add this to your config
"command": "uvx",
"args": [
"--prerelease=allow",
"mcp-server-memos",
"--host",
"localhost",
"--port",
"5230",
"--token",
"your-access-token-here"
]
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| YOUR_ACCESS_TOKEN | Credential the server authenticates with. | Yes |
Build a programmable telecommunications stack for connecting telephony services with the Internet via a cloud-based utility.
Search built for AI, not humans β semantic web search that returns model-ready content, plus code context.
Answers, not links β delegate questions to Perplexity's search-grounded models and get cited responses back.
Give your assistant a voice β text-to-speech, voice cloning and audio tools from the ElevenLabs API.
Give your assistant a real code sandbox β isolated cloud VMs for actually running the code it writes.
The ML hub in your context window β search models, datasets, papers and run Spaces from the official server.