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

@sup-platform/mcp-server

v1.2.4

Published

SupOS Platform MCP Server - Model Context Protocol Server for SupOS

Readme

supOS MCP Server

supOS MCP Server 是一个基于 Model Context Protocol (MCP) 的服务器,用于与 SupOS CE 平台进行交互。

安装

npm install -g @sup-platform/mcp-server

使用方法

命令行参数

MCP Server 支持以下命令行参数:

| 参数 | 描述 | 默认值 | 示例 | |------|------|--------|------| | --port | 服务器监听端口号 | 3000 | --port 8080 | | --transport | 传输类型,支持 stdio 或 streamable | stdio | --transport streamable | | --supos-api-url | SupOS API 的基础 URL | - | --supos-api-url https://api.supos.com | | --supos-api-key | SupOS API 的访问密钥 | - | --supos-api-key your-api-key | | --openapi-path | OpenAPI 规范文件的路径 | ${supos-api-url}/swagger-ui/v3/api-docs/supOS-openAPI | --openapi-path http://api.supos.com/openapi.yaml |

环境变量

除了命令行参数外,MCP Server 还支持通过环境变量配置:

| 环境变量 | 描述 | 对应的命令行参数 | |----------|------|-----------------| | SUPOS_API_URL | SupOS API 的基础 URL | --supos-api-url | | SUPOS_API_KEY | SupOS API 的访问密钥 | --supos-api-key |

桌面应用集成

要将 MCP Server 集成到桌面应用中,请在应用的服务器配置中添加以下内容(以 Cline 插件为例):

{
  "mcpServers": {
    "mcp-server-supos-stdio": {
      "disabled": false,
      "timeout": 60,
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@sup-platform/mcp-server"],
      "env": {
        "SUPOS_API_URL": "xxx",
        "SUPOS_API_KEY": "xxx"
      }
    },
    "mcp-server-supos-streamable": {
      "timeout": 60,
      "url": "http://localhost:3000/mcp", // streamable 服务器监听地址
      "type": "streamableHttp"
    }
  }
}

开发

本地开发调试

stdio 模式(默认)

stdio 模式下直接使用:

pnpm run inspector

streamable 模式

streamable 模式下使用以下命令:

  1. 先启动 streamable 服务
pnpm run start:streamable
  1. 然后启动 inspector
pnpm run inspector

自定义参数示例

指定端口

pnpm run start:streamable --port 8080

指定 SupOS API URL 和 Key

pnpm run start:streamable --supos-api-url https://api.supos.com --supos-api-key your-api-key

指定 OpenAPI 规范文件路径

pnpm run start:streamable --openapi-path ./path/to/openapi.yaml

组合使用多个参数

pnpm run start:streamable --port 8080 --transport streamable --openapi-path ./path/to/openapi.yaml

构建

pnpm run build

许可证

ISC