- Home
- MCP servers
- Flomo
Flomo
- javascript
1
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months 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-flomo-mcp": {
"command": "npx",
"args": [
"-y",
"flomo-mcp"
],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}You can use the flomo MCP server to send notes to flomo from your MCP client. It acts as a bridge between your automation or scripts and the flomo service, enabling you to publish notes programmatically with a simple, configurable command. This makes it easy to integrate note-taking into your workflows, bots, or automation pipelines.
How to use
To use this MCP server, connect your MCP client to the flomo_mcp endpoint by running the provided stdio configuration. Start the server in your environment where you have Node and npm available, and ensure the FLOMO_API_URL is set to your target flomo URL. Once running, your MCP client can invoke the server to post notes to Flomo using the API URL you configured.
How to install
Prerequisites: ensure you have Node.js installed (which also provides npm). You can verify by running node -v and npm -v.
Create the MCP configuration file with the stdio setup shown in the example, and place it in a location of your choice, for example mcp.json.
Set the FLOMO_API_URL environment variable to your Flomo API endpoint. For example:
On Linux/macOS:
export FLOMO_API_URL=https://flomoapp.com/iwh/xxx/xxx/
On Windows (PowerShell):
$Env:FLOMO_API_URL = 'https://flomoapp.com/iwh/xxx/xxx/'
Install dependencies and run the MCP server using the stdio command shown in the configuration.
Additional sections
Configuration details from the source define a single MCP server named flomo_mcp that runs via npx with arguments -y and flomo-mcp. It passes an environment variable FLOMO_API_URL to connect to Flomo.
Configuration snippet to start the server programmatically is provided below. Save this as part of your MCP setup to enable the server.
{
"mcpServers": {
"flomo_mcp": {
"type": "stdio",
"name": "flomo_mcp",
"command": "npx",
"args": ["-y", "flomo-mcp"],
"env": {
"FLOMO_API_URL": "https://flomoapp.com/iwh/xxx/xxx/"
}
}
}
}