MCP Flomo笔记助手
一个基于 TypeScript 的 MCP 服务器,帮助您将笔记写入 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
Writes notes to Flomo.
This is a TypeScript-based MCP server that helps you write notes to Flomo.

Features
Tools
write_note- Writes a text note to Flomo- Requires content as a mandatory parameter
Development
Install dependencies:
npm install
Build the server:
npm run build
For auto-rebuilding during development:
npm run watch
Installation
To use in Claude Desktop, add the server configuration:
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 the MCP server communicates via standard input and output, 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 where you can access the debugging tools in your browser.