npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tricrepe/flownoter

v1.0.0

Published

MCP server for saving conversation notes as markdown files

Readme

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 notes folder
  • 🧹 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

Installation

Via npm

# Install globally
npm install -g @tricrepe/flownoter

# Or use with npx (no installation needed)
npx @tricrepe/flownoter

Local Development

git clone https://github.com/tricrepe/flownoter.git
cd flownoter
npm install
npm run build

Configuration

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 messages
    • Each message should have:
      • role: Either "user" or "assistant"
      • content: The message content
  • user_question (required): The user's question to use as the note title
  • num_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
  • .md extension

Example: Creating_an_MCP_server_1696348800000.md

Development

Build

npm run build

Run Locally

npm start

License

ISC