Overview
MCP Server Flomo is a TypeScript-based server that allows users to write notes directly to Flomo, a note-taking application.
To use MCP Server Flomo, you need to install the server and configure it with your Flomo API URL. You can run the server using the command line with the appropriate configurations.
- Write text notes to Flomo using the
write_notetool. - Easy installation and configuration for different operating systems. - Debugging support through MCP Inspector for easier troubleshooting.
- Quickly jotting down notes from various applications to Flomo.
- Automating note-taking processes for developers and researchers.
- Integrating with other tools to enhance productivity.
Tools
write_note
Write note to flomo
Write note to flomo
Add to your AI client
Use these steps to connect mcp-server-flomo MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-flomo-chatmcp": {
"command": "npx",
"args": [
"-y",
"@chatmcp/mcp-server-flomo"
],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-flomo-chatmcp": {
"command": "npx",
"args": [
"-y",
"@chatmcp/mcp-server-flomo"
],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-flomo-chatmcp": {
"command": "npx",
"args": [
"-y",
"@chatmcp/mcp-server-flomo"
],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-flomo-chatmcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@chatmcp/mcp-server-flomo"
],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-flomo-chatmcp": {
"command": "npx",
"args": [
"-y",
"@chatmcp/mcp-server-flomo"
],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-flomo-chatmcp": {
"command": "npx",
"args": [
"-y",
"@chatmcp/mcp-server-flomo"
],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}FAQ
How do I find my Flomo API URL?
You can find your Flomo API URL by visiting [this link](https://v.flomoapp.com/mine?source=incoming_webhook).
Is MCP Server Flomo free to use?
Yes! MCP Server Flomo is free to use for everyone.
What programming language is MCP Server Flomo built with?
MCP Server Flomo is built using TypeScript.