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

jina-reader-mcp-server

v1.0.0

Published

MCP server for reading web content using Jina AI Reader API

Downloads

7

Readme

Jina Reader MCP Server

一个使用 Jina AI Reader API 的 Model Context Protocol (MCP) 服务器,可以批量读取网页内容。

功能特性

  • 🌐 批量读取多个网页内容
  • 🔄 使用 Jina AI Reader API 进行内容提取
  • 📝 支持 MCP 协议标准
  • 🚀 简单易用的命令行工具

安装

npm install -g jina-reader-mcp-server

或者使用 npx 直接运行:

npx jina-reader-mcp-server

使用方法

作为 MCP 服务器

jina-reader-mcp

在 Claude Desktop 中配置

在 Claude Desktop 的配置文件中添加:

{
  "mcpServers": {
    "jina-reader": {
      "command": "jina-reader-mcp",
      "args": []
    }
  }
}

配置文件位置

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json

可用工具

read_url

批量读取多个网页的内容。

参数

  • urls: 字符串数组,包含要读取的网页 URL

示例

{
  "urls": [
    "https://example.com",
    "https://github.com"
  ]
}

可用资源

service-info

获取服务的基本信息。

URI: info://jina-reader

开发

克隆仓库

git clone https://github.com/yourusername/jina-reader-mcp-server.git
cd jina-reader-mcp-server

安装依赖

npm install

开发模式运行

npm run dev

构建

npm run build

发布

npm publish

依赖

API 说明

本服务使用 Jina AI Reader API 来提取网页内容。该 API 可以:

  • 提取网页的主要文本内容
  • 处理 JavaScript 渲染的页面
  • 返回清洁、结构化的文本

许可证

MIT

贡献

欢迎提交 Pull Request 和 Issue!

更新日志

1.0.0

  • 初始版本
  • 支持批量网页内容读取
  • 基于 MCP 协议的服务器实现