MCP-Flomo-Server
Overview
MCP-Flomo-Server is a server application based on the Model Context Protocol (MCP) that allows AI assistants (like Claude) to directly record content into the Flomo note-taking application. This service enables users to easily save valuable information during conversations with AI.
To use MCP-Flomo-Server, clone the repository, install the dependencies, configure the Flomo API key, and run the server. Once the server is running, AI assistants can call the flomo tool via the MCP protocol to record notes.
- Provides MCP tool interface for direct AI assistant calls - Sends content to the user's Flomo account via Flomo API - Supports environment variable configuration for personalization - Developed in TypeScript for type safety
- Recording notes during AI-assisted conversations
- Saving important information from AI interactions directly to Flomo
- Enhancing productivity by integrating AI with note-taking
Add to your AI client
Use these steps to connect MCP-Flomo-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-flomo-server-codeugar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-flomo-server-codeugar"
]
}
}
}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-flomo-server-codeugar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-flomo-server-codeugar"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-flomo-server-codeugar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-flomo-server-codeugar"
]
}
}
}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-flomo-server-codeugar": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-flomo-server-codeugar"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-flomo-server-codeugar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-flomo-server-codeugar"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-flomo-server-codeugar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-flomo-server-codeugar"
]
}
}
}