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

flowus-mcp-server

v1.0.4

Published

MCP server for FlowUS API with full block type and rich text support

Readme

FlowUS MCP Server

用于 FlowUS API 的 MCP Server,基于 stdio 运行。

安装

npx -y flowus-mcp-server@latest

国内网络不稳定时:

NPM_CONFIG_REGISTRY=https://registry.npmmirror.com npx -y flowus-mcp-server@latest

MCP 配置示例

{
  "command": "npx",
  "args": ["-y", "flowus-mcp-server@latest"],
  "env": {
    "FLOWUS_TOKEN": "your_flowus_token",
    "NPM_CONFIG_REGISTRY": "https://registry.npmmirror.com"
  },
  "type": "stdio"
}

Markdown 工具

当前新增了两类面向 AI 的 Markdown 能力:

  • read_page_as_markdown 读取页面并返回:

    • page
    • markdown
    • 可选 metadata
  • create_page_from_markdown 显式传入页面属性与 Markdown 正文,服务器会先本地解析 Markdown,再转换成 FlowUS blocks 后创建页面。

支持的 Markdown 子集

  • # ## ### 标题
  • 段落
  • 无序列表
  • 有序列表
  • 待办列表
  • 引用
  • 围栏代码块
  • 分隔线
  • 简单 Markdown 表格

表格限制

  • 只支持简单 GFM 风格表格
  • 每一行列数必须一致
  • 单元格只支持 inline 文本内容
  • malformed table 会在本地直接报错,不会发请求到 FlowUS

本地开发

npm install
npm test
npm run build

发版

npm version patch
npm publish --registry=https://registry.npmjs.org

安全

  • 不要把 FLOWUS_TOKEN 提交到仓库
  • token 泄露后先在 FlowUS 后台重置