{"id":23118791,"url":"https://github.com/ryojerryyu/mcp-server-memos-py","last_synced_at":"2025-08-19T18:37:15.610Z","repository":{"id":266989571,"uuid":"899956110","full_name":"RyoJerryYu/mcp-server-memos-py","owner":"RyoJerryYu","description":"A Python package enabling LLM models to interact with the Memos server via the MCP interface for searching, creating, retrieving, and managing memos.","archived":false,"fork":false,"pushed_at":"2025-03-18T09:17:53.000Z","size":121,"stargazers_count":12,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-17T16:54:25.542Z","etag":null,"topics":["mcp","mcp-server","mcp-servers","memos","model-context-protocol","usememo"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RyoJerryYu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-07T13:29:24.000Z","updated_at":"2025-04-14T03:47:51.000Z","dependencies_parsed_at":"2024-12-07T14:39:17.552Z","dependency_job_id":null,"html_url":"https://github.com/RyoJerryYu/mcp-server-memos-py","commit_stats":null,"previous_names":["ryojerryyu/mcp-server-memos-py"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyoJerryYu%2Fmcp-server-memos-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyoJerryYu%2Fmcp-server-memos-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyoJerryYu%2Fmcp-server-memos-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyoJerryYu%2Fmcp-server-memos-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RyoJerryYu","download_url":"https://codeload.github.com/RyoJerryYu/mcp-server-memos-py/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252789575,"owners_count":21804461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp","mcp-server","mcp-servers","memos","model-context-protocol","usememo"],"created_at":"2024-12-17T05:21:58.740Z","updated_at":"2025-05-07T00:24:50.411Z","avatar_url":"https://github.com/RyoJerryYu.png","language":"Python","funding_links":[],"categories":["Other Tools and Integrations"],"sub_categories":["How to Submit"],"readme":"# MCP Server Memos 📝\n\n[![PyPI version](https://img.shields.io/pypi/v/mcp-server-memos.svg)](https://pypi.org/project/mcp-server-memos/)\n[![Python Version](https://img.shields.io/pypi/pyversions/mcp-server-memos.svg)](https://pypi.org/project/mcp-server-memos/)\n[![License](https://img.shields.io/github/license/RyoJerryYu/mcp-server-memos-py.svg)](https://github.com/RyoJerryYu/mcp-server-memos-py/blob/master/LICENSE)\n[![smithery badge](https://smithery.ai/badge/@RyoJerryYu/mcp-server-memos-py)](https://smithery.ai/server/@RyoJerryYu/mcp-server-memos-py)\n\nA Python package that provides LLM models with the ability to interact with [Memos](https://github.com/usememos/memos) server through the [MCP (Model Context Protocol)](https://modelcontextprotocol.io/introduction) interface.\n\n## 🚀 Features\n\n- 🔍 Search memos with keywords\n- ✨ Create new memos with customizable visibility\n- 📖 Retrieve memo content by ID\n- 🏷️ List and manage memo tags\n- 🔐 Secure authentication using access tokens\n\n## 🛠️ Usage\n\nYou can include this package in your config file as bellow, just as you use other Python MCP plugins.\n\n```jsonc\n{\n  ...,\n  \"mcpServers\": {\n    \"fetch\": { // other mcp servers\n      \"command\": \"uvx\",\n      \"args\": [\"mcp-server-fetch\"]\n    },\n    \"memos\": { // add this to your config\n      \"command\": \"uvx\",\n      \"args\": [\n        \"--prerelease=allow\",\n        \"mcp-server-memos\",\n        \"--host\",\n        \"localhost\",\n        \"--port\",\n        \"5230\",\n        \"--token\",\n        \"your-access-token-here\"\n      ]\n    }\n  }\n}\n```\n\n\u003cdetails\u003e\n\u003csummary\u003eOther ways to use this package\u003c/summary\u003e\n\n### 📦 Installation\n\n#### Installing via Smithery\n\nTo install mcp-server-memos-py for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@RyoJerryYu/mcp-server-memos-py):\n\n```bash\nnpx -y @smithery/cli install @RyoJerryYu/mcp-server-memos-py --client claude\n```\n\n#### Installing Manually\n```bash\npip install mcp-server-memos\n```\n\n### Command Line\n\n```bash\nmcp-server-memos --host localhost --port 8080 --token YOUR_ACCESS_TOKEN\n```\n\n### As a Library\n\n```python\nfrom mcp_server_memos import Config, serve_stdio\n\nconfig = Config(\n    host=\"localhost\",\n    port=8080,\n    token=\"YOUR_ACCESS_TOKEN\"\n)\n\nawait serve_stdio(config=config)\n```\n\n\u003c/details\u003e\n\n## 🔧 Configuration\n\n| Parameter | Description | Default |\n|-----------|-------------|---------|\n| `host` | Memos server hostname | `localhost` |\n| `port` | Memos server port | `8080` |\n| `token` | Access token for authentication | `\"\"` |\n\n## 🤝 Available Tools\n\nThis MCP server provides the following tools for interacting with Memos:\n\n| Tool Name | Description | Parameters |\n|-----------|-------------|------------|\n| `list_memo_tags` | List all existing memo tags | - `parent`: The parent who owns the tags (format: memos/{id}, default: \"memos/-\")\u003cbr\u003e- `visibility`: Tag visibility (PUBLIC/PROTECTED/PRIVATE, default: PRIVATE) |\n| `search_memo` | Search for memos using keywords | - `key_word`: The keywords to search for in memo content |\n| `create_memo` | Create a new memo | - `content`: The content of the memo\u003cbr\u003e- `visibility`: Memo visibility (PUBLIC/PROTECTED/PRIVATE, default: PRIVATE) |\n| `get_memo` | Get a specific memo by ID | - `name`: The name/ID of the memo (format: memos/{id}) |\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- [Memos](https://github.com/usememos/memos) - A lightweight, self-hosted memo hub\n- [MCP (Model Context Protocol)](https://modelcontextprotocol.io/introduction) - Protocol for LLM model applications\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryojerryyu%2Fmcp-server-memos-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryojerryyu%2Fmcp-server-memos-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryojerryyu%2Fmcp-server-memos-py/lists"}