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

@qixin-api/apiservice-mcp

v0.0.6

Published

Qixin API Service MCP Server - A Model Context Protocol server for enterprise information queries

Readme

@qixin-api/apiservice-mcp

启信宝MCP是基于启信开放平台现有接口,赋能AI大模型快速获取启信开放平台所有API接口数据,在此基础上开展进一步分析处理,通过快速、安全、精准获取并处理企业数据,打通从数据获取到智能决策的“最后一公里”。以查询公司法人信息为例,业务人员在提问后,AI大模型会分析链接的MCP有无相关数据,若有则返回结构化数据,最终由AI大模型结合提问生成自然语言回答,在大幅提升效率的同时,也保证了数据传输的准确性与安全性。

数据维度

  • 企业搜索:支持关键词模糊匹配查找企业
  • 企业信息查询:获取详细的工商信息、股东结构、主要高管及经营状况等数据
  • 风险分析:多维度综合风险评估
  • 高管信息:查询公司高管详细资料及背景
  • 法律信息:诉讼统计及法律程序数据

安装方法

npm install -g @qixin-api/apiservice-mcp

或直接使用 npx 运行:

npx @qixin-api/apiservice-mcp

配置方法

在使用本 MCP 服务前,需要将企信 API 的凭证设置为环境变量:

export QIXIN_APP_KEY="your_app_key_here"
export QIXIN_SECRET_KEY="your_secret_key_here"

如何获取启信key

搭配 Claude Desktop 使用

claude_desktop_config.json 中添加如下配置:

{
  "mcpServers": {
    "qixin-apiservice": {
      "command": "npx",
      "args": ["@qixin-api/apiservice-mcp"],
      "env": {
        "QIXIN_APP_KEY": "your_app_key_here",
        "QIXIN_SECRET_KEY": "your_secret_key_here"
      }
    }
  }
}

当前可用接口列表 (更多接口可支持定制开发)

  1. advSearch 使用关键词进行企业模糊搜索。

  2. getEnterpriseInfo 获取企业的全面信息,包括工商详情、股东、高管和经营状况等。

  3. getAllRiskInfo 获取企业在工商、法律、财务、税务等多维度的综合风险信息。

  4. getAllPersonInfo 查询企业高管的详细信息,包括任职、投资及风险情况等。

  5. sumLawsuit 获取企业整体诉讼统计,包括裁判文书、开庭公告、执行公告、法院公告等。