- Home
- MCP servers
- mcp-server-flomo
mcp-server-flomo
- javascript
56
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"chatmcp-mcp-server-flomo": {
"command": "npx",
"args": [
"-y",
"@chatmcp/mcp-server-flomo"
],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}You can run a small MCP server that sends your text notes straight to Flomo. This server exposes a write_note tool you can call from MCP clients to create notes in Flomo automatically. It’s useful for turning ideas, reminders, or quick thoughts into Flomo notes without leaving your workflow.
How to use
Connect to the MCP server from your MCP client by selecting the available server named mcp-server-flomo and using the write_note tool to send note content. You can supply the note text as the main content you want saved to Flomo. The server handles sending that content to Flomo via the configured API URL and creates a new Flomo note for you. If you work with automation, you can integrate the write_note tool into your workflows to capture ideas, meeting notes, or summaries as Flomo entries.
How to install
Prerequisites: Node.js (and npm) must be installed on your system. You will also use npm and npx to run the MCP server. Ensure you have network access to reach Flomo.”
Step 1: Install dependencies for the server project.
npm install
Step 2: Build the server.
npm run build
Step 3: Run in watch mode for auto-rebuild during development.
npm run watch
Additional sections
Configuration for Claude Desktop users is provided as a ready-to-use MCP server entry. You would typically place this in your Claude desktop config file to enable the server.
{
"mcpServers": {
"mcp-server-flomo": {
"command": "npx",
"args": ["-y", "@chatmcp/mcp-server-flomo"],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}
Available tools
write_note
Writes text notes to Flomo using the configured API URL. You provide the note content and the server sends it to Flomo as a note.