Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AIFire in da houseCheck it out free

mcp-server-flomo

MCP.Pizza Chef: chatmcp

mcp-server-flomo is a TypeScript-based MCP server that enables writing text notes to the Flomo note-taking platform. It provides a simple tool called 'write_note' that accepts content as input and sends it to Flomo via its API. This server integrates easily with MCP clients like Claude Desktop, allowing seamless note creation from within AI workflows. It supports development with auto-rebuild and requires minimal setup with environment configuration for the Flomo API URL.

Use This MCP server To

Send text notes from AI workflows directly to Flomo Automate note-taking by writing content to Flomo via MCP Integrate Flomo note creation into Claude Desktop workflows Use MCP to programmatically log ideas or reminders in Flomo Enable real-time note writing from chat or assistant sessions

README

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-server-flomo FAQ

How do I configure the Flomo API URL for this server?
Set the FLOMO_API_URL environment variable with your Flomo incoming webhook URL in the server config.
Can I use this MCP server with Claude Desktop?
Yes, you can add the server configuration to Claude Desktop's config file to enable note writing.
What programming language is this MCP server written in?
It is written in TypeScript, making it easy to build and extend.
How do I develop or debug this MCP server?
Use 'npm run watch' for auto-rebuild during development and check logs for communication over stdio.
Does this server support multiple note formats?
Currently, it supports writing plain text notes to Flomo via the 'write_note' tool.
Is this MCP server compatible with other LLM providers?
Yes, it works with any MCP client or host, including OpenAI, Claude, and Gemini, that supports MCP protocol.
How do I install dependencies for this MCP server?
Run 'npm install' to install dependencies before building or running the server.
Can I extend this server to add more Flomo features?
Yes, since it's open source and TypeScript-based, you can add more tools or API calls as needed.