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

joyagent-mcp

v0.0.6

Published

JoyAgent MCP 是调用[JoyAgent](https://joyagent.jd.com/) 智能体服务进行交互。允许用户通过 MCP 协议调用各种智能体功能,如油价查询、等智能体中的服务等。

Readme

JoyAgent MCP

JoyAgent MCP 是调用JoyAgent 智能体服务进行交互。允许用户通过 MCP 协议调用各种智能体功能,如油价查询、等智能体中的服务等。

快速开始

安装

npm install joyagent-mcp

配置

创建 MCP 服务器配置:

{
  "mcpServers": {
    "joyagent": {
      "command": "npx",
      "args": ["joyagent-mcp"],
      "env": {
        "AGENT_ID": "your-agent-id",
        "TOKEN": "your-token",
        "AUTHORIZATION": "your-authorization",
        "ERP": "your-erp",
        "TOOL_NAME": "your-tool-name",
        "TOOL_DESC": "your-tool-description"
      }
    }
  }
}

环境变量

| 变量名 | 描述 | 必需 | | --------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------- | | AGENT_ID | 智能体 ID | ✅ | | TOKEN | API 服务密钥 | ✅ | | AUTHORIZATION | 授权令牌 (获取方式:1.如果调用公网 API 请联系交付人员; 2.如果调用私有化部署服务需要从本地后台管理系统中获取) | ✅ | | ERP | 用户 ERP | ✅ | | TOOL_NAME | 工具名称 | ❌ (默认: ai_chat) | | TOOL_DESC | 工具描述 | ❌ (默认: 与智能体进行对话) |

配置示例

油价查询智能体

{
  "mcpServers": {
    "oil-price": {
      "command": "npx",
      "args": ["joyagent-mcp"],
      "env": {
        "AGENT_ID": "22070",
        "TOKEN": "your-token",
        "AUTHORIZATION": "your-auth",
        "ERP": "your-erp",
        "TOOL_NAME": "今日油价",
        "TOOL_DESC": "查询今日油价信息"
      }
    }
  }
}

许可证

本项目采用 MIT 许可证 - 详情请参见 LICENSE 文件。


注意: 使用本软件需要有效的 JoyAgent 服务凭证。请确保您有相应的权限和授权。