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

aicreate360-reader-mcp

v1.0.3

Published

MCP server that fetches any public URL as clean markdown via create360.ai.

Readme

aicreate360-reader-mcp

npm version

一個 MCP server,讓 AI 代理可以擷取任何公開網頁內容並轉換為乾淨的 Markdown。

透過 創造智能 服務,將任意 URL 的網頁內容轉為可讀的 Markdown 純文字,無需手動複製貼上。

適用於:

  • 新聞網站、部落格、技術文件
  • GitHub 頁面、Wiki
  • 任何公開可存取的網頁

部分網站受反爬蟲保護或需要驗證,這些網站將無法擷取內容,工具會回傳對應的錯誤訊息。

English README

快速開始 (npx)

無需安裝,直接使用 npx -y aicreate360-reader-mcp 執行:

{
  "mcpServers": {
    "aicreate360": {
      "command": "npx",
      "args": ["-y", "aicreate360-reader-mcp"]
    }
  }
}

將以上設定加入你的 MCP 客戶端設定檔:

| 客戶端 | 設定檔路徑 | | -------------- | ------------------------------- | | Claude Code | ~/.claude.json or .mcp.json | | Claude Desktop | claude_desktop_config.json | | Gemini CLI | ~/.gemini/settings.json |

透過 npm 安裝

npm i aicreate360-reader-mcp // 安裝至專案
npm i -g aicreate360-reader-mcp // 全域安裝

安裝完成後,將 MCP 客戶端指向安裝的進入點:

{
  "mcpServers": {
    "aicreate360": {
      "command": "npx",
      "args": ["-y", "aicreate360-reader-mcp"]
    }
  }
}

工具

此 server 提供一個工具:

fetch_url

擷取任意公開 URL,回傳該網頁的 Markdown 內容。

| 參數 | 類型 | 說明 | | ----- | -------------- | ---------------- | | url | string (URL) | 要擷取的公開網址 |

回傳格式:乾淨的 Markdown 純文字。

使用範例

  • 幫我尋找 setn.com 的十則熱門新聞
  • 幫我把這個技術文件轉成 Markdown:https://docs.github.com/en/rest
  • 分析這個部落格文章的觀點:https://blog.example.com/post/1

注意事項

  • 每次請求即時擷取,無快取。
  • 依賴 create360.ai 服務的可用性。
  • 無需任何認證即可使用。
  • 受反爬蟲保護的網站會回傳錯誤訊息。
  • 需要 Node.js >= 24。

授權條款

MIT