The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the NoteFlow MCP listing page.
noteflow-mcp is a FastMCP v2 server that connects to a notes-style API.
Install dependencies:
Create your environment file:
Then update .env with your real notes API settings.
The current default uses DummyJSON's free posts API as a notes backend:
GET https://dummyjson.com/postsPOST https://dummyjson.com/posts/addDummyJSON does not require an API key, so NOTES_API_KEY can stay empty.
Or:
create_note(title, content)list_notes()create_note maps note content to DummyJSON's body field. DummyJSON simulates writes for testing, so created notes are not persisted server-side.