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

kunpeng-mcp-server

v1.0.5

Published

MCP server for using the kunpeng crm API

Readme

Kunpeng MCP Server

MCP Server for CRM Customer Search.

Tools

  1. customer_search
    • 客户搜索服务(支持按姓名模糊搜索)
    • Input:
      • pageNo (number, 必填): 页码
      • pageSize (number, 必填): 每页大小
      • sort (string, 必填): 排序字段
      • order (string, 必填): 排序方式,可选值: "asc" 或 "desc"
      • name (string, 必填): 客户姓名
      • name-op (string, 必填): 姓名匹配方式
        • "eq": 精确匹配
        • "ct": 包含匹配(模糊搜索)
    • Returns:
      • code: 状态码(0 表示成功)
      • data.list: 客户列表,包含:
        • id: 客户 ID
        • name: 客户姓名
        • consultTel: 咨询电话
        • createTime: 创建时间(时间戳)
      • data.total: 总记录数
      • message: 错误信息(如果失败)

Setup

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "kunpeng-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "kunpeng-mcp-server"
      ],
      "type": "stdio",
      "disabled": false,
      "env": {
        "CRM_AUTH_TOKEN": "<YOUR_AUTH_TOKEN>"
      }
    }
  }
}

认证 Token 配置

本项目使用环境变量 CRM_AUTH_TOKEN 来传递认证 token。在配置文件中添加 env 字段来设置你的 token:

注意: 将 <YOUR_AUTH_TOKEN> 替换为你真实的认证 token。如果不设置 CRM_AUTH_TOKEN,系统将使用默认的测试环境 token。

Example

搜索名字包含"张三"的客户:

{
  "pageNo": 1,
  "pageSize": 10,
  "sort": "createTime",
  "order": "desc",
  "name": "张三",
  "name-op": "ct"
}

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

[email protected]