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

yuqing-fullsearch-mcp

v1.0.6

Published

MCP server for 国内舆情全文检索:fullsearch_information_list、yuqing_industry_list、yuqing_event_list

Readme

yuqing-fullsearch-mcp

国内舆情全文检索 MCP Server,供 Cursor、Kilo Code 等支持 MCP 的客户端调用。

功能

  • fullsearch_information_list:全文检索舆情,支持 keyword、时间范围、行业/事件/省份/城市等筛选。
  • yuqing_industry_list:获取行业列表,用于结果过多时按行业二次筛选。
  • yuqing_event_list:获取事件列表,用于结果过多时按事件二次筛选。

安装

npm install -g yuqing-fullsearch-mcp

或使用 npx 直接运行(无需全局安装):

npx yuqing-fullsearch-mcp

在 MCP 客户端中配置

方式一:npx(推荐,无需克隆项目)

{
  "yuqing-fullsearch": {
    "command": "npx",
    "args": ["-y", "yuqing-fullsearch-mcp"],
    "env": { "NPM_CONFIG_REGISTRY": "https://registry.npmjs.org/" },
    "alwaysAllow": ["*"]
  }
}

若出现 Connection closed (-32000)(多见于 Windows),可改用 cmd 启动:

{
  "yuqing-fullsearch": {
    "command": "cmd",
    "args": ["/c", "npx", "-y", "yuqing-fullsearch-mcp"],
    "env": { "NPM_CONFIG_REGISTRY": "https://registry.npmjs.org/" },
    "alwaysAllow": ["*"]
  }
}

方式二:本地安装后用 node 直接跑(最稳定)

在项目根目录执行 npm install yuqing-fullsearch-mcp,再在 mcp.json 中配置:

{
  "yuqing-fullsearch": {
    "command": "node",
    "args": ["node_modules/yuqing-fullsearch-mcp/server.js"],
    "env": {},
    "alwaysAllow": ["*"]
  }
}

(需保证 MCP 启动时当前工作目录为该项目根目录。)

接口说明

  • 检索接口基础地址:https://stonedtapi-w.bu3skq6y.hqxin.net
  • keyword 中不要包含省份、城市,省份填 province,城市填 city
  • 调用 fullsearch_information_list 时建议适当加大 page_size(如 30),写入采集文档前请先筛选有用内容。

要求

  • Node.js >= 18

License

MIT