m

mcp-memos

@jkawamoto/mcp-memos
0 Stars 40 次浏览 jkawamoto 更新于 2026-08-23

An MCP server for interacting with Memos.

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "https://github.com/jkawamoto/mcp-memos/releases/download/v0.1.0/mcp-memos.mcpb": {
      "args": [],
      "command": ""
    }
  }
}

可用工具 (5 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

tavily_search 14 个参数 需填 1 项

Search the web for current information on any topic. Use for news, facts, or data beyond your knowledge cutoff. Returns snippets and source URLs.

必填参数:query

tavily_extract 6 个参数 需填 1 项

Extract content from URLs. Returns raw page content in markdown or text format.

必填参数:urls

tavily_crawl 11 个参数 需填 1 项

Crawl a website starting from a URL. Extracts content from pages with configurable depth and breadth.

必填参数:url

tavily_map 8 个参数 需填 1 项

Map a website's structure. Returns a list of URLs found starting from the base URL.

必填参数:url

tavily_research 2 个参数 需填 1 项

Perform comprehensive research on a given topic or question. Use this tool when you need to gather information from multiple sources to answer a question or complete a task. Returns a detailed response based on the research findings.

必填参数:input

服务介绍

Memos MCP Server

Python Application
GitHub License
![pre-commit](https://img.shields.io/badge/pre- -commit-enabled-brightgreen?logo=pre-commit)
Ruff

An MCP server for interacting with Memos.

# Tools

This MCP server provides the following tools:

# # create_memo

Create a memo and return the name of the memo.

# # # Parameters

  • content (string): The content of the memo in Markdown format.
  • visibility (string, optional): The visibility of the memo (private, protected, public).

# # attach_file

Attach a file to a memo.

# # # Parameters

  • memo_name (string): The name of the memo.
  • filename (string): The name of the file.
  • content (string): Base64 representation of a file or a URL to a file to attach to the memo.
  • mime_type (string, optional): The MIME type of the file.

# Installation

[!NOTE]
You'll need uv installed on your system to use uvx command.

# # For Claude Desktop

Download the latest MCP bundle mcp-memos.mcpb from
the Releases page,
then open the downloaded .mcpb file or drag it into the Claude Desktop's Settings window.

You can also manually configure this server for Claude Desktop.
Edit the claude_desktop_config.json file by adding the following entry under mcpServers:

{
  "mcpServers": {
    "bear": {
      "command": "uvx",
      "args": [
        "- -from",
        "git+https://github.com/jkawamoto/mcp-memos",
        "mcp-memos",
        "- -endpoint",
        "<Memos server address>",
        "- -token",
        "<Your token>"
      ]
    }
  }
}

After editing, restart the application.
For more information,
see: For Claude Desktop Users - Model Context Protocol.

# # For Goose CLI

To enable the Bear extension in Goose CLI,
edit the configuration file ~/.config/goose/config.yaml to include the following entry:

extensions:
  bear:
    name: Memos
    cmd: uvx
    args: [- -from, git+https://github.com/jkawamoto/mcp-memos, mcp-memos]
    envs: {
      "MEMOS_API_ENDPOINT": "<Memos server address>",
      "MEMOS_API_TOKEN": "<Your token>"
    }
    enabled: true
    type: stdio

# # For Goose Desktop

Add a new extension with the following settings:

  • Type: Standard IO
  • ID: memos
  • Name: Memos MCP Server
  • Description: An MCP server for interacting with Memos
  • Command: uvx - -from git+https://github.com/jkawamoto/mcp-memos mcp-memos
  • Environment Variables: Add MEMOS_API_ENDPOINT with Memos server address and MEMOS_API_TOKEN with your api token

For more details on configuring MCP servers in Goose Desktop,
refer to the documentation:
[Using Extensions - MCP Servers](https://block.github.io/goose/docs/getting-started/using-extensions# mcp-servers).

# License

This application is licensed under the MIT License. See the LICENSE file for more details.

相关 MCP 服务