FlowNoter MCP Server
Saves conversation notes as markdown files with automatic formatting, timestamp generation, and content filtering to create clean documentation of conversation history.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FlowNoter MCP Serversave the last 3 turns of our conversation about MCP servers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FlowNoter MCP Server
A Model Context Protocol (MCP) server for saving conversation notes as markdown files.
Features
๐ Save agent conversation history as markdown notes
๐๏ธ Automatically organizes notes in a
notesfolder๐งน Filters out thinking process and tool execution details
โฐ Adds timestamps to each note
๐ฏ Extracts clean responses from assistant messages
๐ง Configurable number of conversation turns to save
Related MCP server: AI Conversation Logger
Installation
Via npm
# Install globally
npm install -g @tricrepe/flownoter
# Or use with npx (no installation needed)
npx @tricrepe/flownoterLocal Development
git clone https://github.com/tricrepe/flownoter.git
cd flownoter
npm install
npm run buildConfiguration
Add this to your MCP settings configuration file:
Option 1: Using npx (Recommended)
{
"mcpServers": {
"flownoter": {
"command": "npx",
"args": ["-y", "@tricrepe/flownoter"]
}
}
}Option 2: Global installation
npm install -g @tricrepe/flownoter{
"mcpServers": {
"flownoter": {
"command": "flownoter"
}
}
}Option 3: Local development
{
"mcpServers": {
"flownoter": {
"command": "node",
"args": ["/path/to/flownoter/dist/index.js"]
}
}
}Available Tools
save_conversation_note
Saves recent conversation messages as a markdown note.
Parameters:
messages(required): Array of conversation messagesEach message should have:
role: Either "user" or "assistant"content: The message content
user_question(required): The user's question to use as the note titlenum_messages(optional): Number of recent conversation turns to include (default: all messages)
Example:
{
"messages": [
{
"role": "user",
"content": "How do I create an MCP server?"
},
{
"role": "assistant",
"content": "To create an MCP server, you need to..."
}
],
"user_question": "Creating an MCP server",
"num_messages": 1
}Output Format
Notes are saved in the notes/ folder with the following format:
# [User Question]
**Created:** [ISO 8601 Timestamp]
---
## Question
[User's question]
## Answer
[Assistant's clean response without thinking process or tool calls]File Naming
Note files are named using:
Sanitized version of the user's question (alphanumeric characters and Chinese characters only)
Timestamp for uniqueness
.mdextension
Example: Creating_an_MCP_server_1696348800000.md
Development
Build
npm run buildRun Locally
npm startLicense
ISC
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseBqualityDmaintenanceA tool that preserves chat history as Markdown files, automatically adding timestamps and supporting conversation identification through session IDs.Last updated15MIT
- FlicenseBqualityDmaintenanceEnables AI assistants to automatically log and manage conversation history with developers in structured markdown format. Provides powerful search and context suggestions to help AI understand project history and maintain continuity across sessions.Last updated41
- FlicenseAqualityDmaintenanceTransforms chat conversations with AI into structured markdown summaries and automatically saves them to organized files in your notes directory. Supports different summary styles, handles large conversations through chunking, and provides tools to manage your saved summaries.Last updated4
- AlicenseAqualityDmaintenanceAutomatically records AI conversation turns and code changes to local Markdown files to provide persistent context across chat sessions. It enables AI agents to search history through MCP tools and provides a web viewer for browsing past discussions.Last updated34Apache 2.0
Related MCP Connectors
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Persistent memory for AI agents โ verbatim conversations, searchable by meaning.
Long-term memory for AI assistants. Hybrid retrieval, query expansion, auto-topics.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CestcaVision/flownoter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server