mcp_flomo_123

dbz216/mcp_flomo_123
Hosted
0 Stars 27 次浏览 更新于 2026-08-23

一个基于TypeScript的MCP服务器,帮助您将笔记写入Flomo。它包含了一个`write_note`工具,可以直接向您的Flomo账户发送文本笔记。

MCP 服务配置

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

{
  "mcpServers": {
    "mcp-server-flomo": {
      "args": [
        "-y",
        "@chatmcp/mcp-server-flomo"
      ],
      "command": "npx",
      "env": {
        "FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
      }
    }
  }
}

该服务需要配置环境变量:FLOMO_API_URL

可用工具 (1 个)

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

write_note 1 个参数 需填 1 项

Write note to flomo

必填参数:content

服务介绍

mcp-server-flomo MCP Server

write notes to Flomo.

This is a TypeScript-based MCP server help you write notes to Flomo.

preview

Features

Tools

  • write_note - Write text notes to Flomo
    • Takes content as required parameters

Development

Install dependencies:

npm install

Build the server:

npm run build

For development with auto-rebuild:

npm run watch

Installation

To use with Claude Desktop, add the server config:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "mcp-server-flomo": {
      "command": "npx",
      "args": ["-y", "@chatmcp/mcp-server-flomo"],
      "env": {
        "FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
      }
    }
  }
}

Find Your Flomo_API_URL here

Debugging

Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.

相关 MCP 服务