MCP サーバーメモ 📝
LLM モデルにMCP (モデル コンテキスト プロトコル)インターフェイスを介してMemosサーバーと対話する機能を提供する Python パッケージ。
🚀 機能
- 🔍 キーワードでメモを検索する
- ✨ 表示設定をカスタマイズして新しいメモを作成
- 📖 IDでメモの内容を取得する
- 🏷️ メモタグの一覧表示と管理
- 🔐 アクセストークンを使用した安全な認証
🛠️ 使用方法
他の Python MCP プラグインを使用する場合と同様に、このパッケージを以下のように設定ファイルに含めることができます。
📦 インストール
Smithery経由でインストール
Smithery経由で Claude Desktop 用の mcp-server-memos-py を自動的にインストールするには:
手動でインストールする
コマンドライン
図書館として
🔧 構成
パラメータ | 説明 | デフォルト |
---|---|---|
host | メモサーバのホスト名 | localhost |
port | メモサーバーポート | 8080 |
token | 認証用のアクセストークン | "" |
🤝 利用可能なツール
この MCP サーバーは、メモと対話するための次のツールを提供します。
ツール名 | 説明 | パラメータ |
---|---|---|
list_memo_tags | 既存のメモタグをすべて一覧表示する | - parent : タグを所有する親 (形式: memos/{id}、デフォルト: "memos/-") - visibility : タグの可視性 (PUBLIC/PROTECTED/PRIVATE、デフォルト: PRIVATE) |
search_memo | キーワードを使ってメモを検索する | - key_word : メモの内容で検索するキーワード |
create_memo | 新しいメモを作成する | - content : メモの内容visibility : メモの可視性(PUBLIC/PROTECTED/PRIVATE、デフォルト: PRIVATE) |
get_memo | IDで特定のメモを取得する | - name : メモの名前/ID (形式: memos/{id}) |
🤝 貢献する
貢献を歓迎します!お気軽にプルリクエストを送信してください。
📄 ライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。
🙏 謝辞
- Memos - 軽量でセルフホスト型のメモハブ
- MCP (モデルコンテキストプロトコル) - LLM モデルアプリケーション用のプロトコル
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
LLM モデルがモデル コンテキスト プロトコル インターフェイスを介して Memos サーバーと対話し、メモの検索、作成、取得、管理を可能にする Python パッケージです。
Related Resources
Related MCP Servers
- -securityAlicense-qualityA Model Context Protocol server that enables LLMs to interact directly with MongoDB databases, allowing users to query collections, inspect schemas, and manage data through natural language.Last updated -756MIT License
- AsecurityFlicenseAqualityA Model Context Protocol server that allows LLMs to interact with Python environments, execute code, and manage files within a specified working directory.Last updated -956Python
- -securityAlicense-qualityA Python implementation of the Model Context Protocol that allows applications to provide standardized context for LLMs, enabling creation of servers that expose data and functionality to LLM applications through resources, tools, and prompts.Last updated -PythonMIT License
- AsecurityFlicenseAqualityA Model Context Protocol server that allows LLMs to interact with Python environments, enabling code execution, file operations, package management, and development workflows.Last updated -9Python