Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MEMOS_BASE_URL | No | The base URL of your Memos instance | http://localhost:5230 |
| MEMOS_API_TOKEN | No | Your Memos API authentication token (optional for public instances) |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_memos | Search for memos with optional filters. Args: query: Text to search for in memo content creator_id: Filter by creator user ID tag: Filter by tag name visibility: Filter by visibility (PUBLIC, PROTECTED, PRIVATE) limit: Maximum number of results to return (default: 10) offset: Number of results to skip (default: 0) Returns: JSON string containing the list of matching memos |
| create_memo | Create a new memo. Args: content: The content of the memo (supports Markdown) visibility: Visibility level - PUBLIC, PROTECTED, or PRIVATE (default: PRIVATE) Returns: JSON string containing the created memo details |
| update_memo | Update an existing memo. Args: memo_uid: The UID of the memo to update (e.g., "abc123") content: New content for the memo (optional) visibility: New visibility level - PUBLIC, PROTECTED, or PRIVATE (optional) pinned: Whether to pin the memo (optional) Returns: JSON string containing the updated memo details |
| get_memo | Get a specific memo by its UID. Args: memo_uid: The UID of the memo to retrieve (e.g., "abc123") Returns: JSON string containing the memo details |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |