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

@suiyongsuiqi/sysq-mcp

v0.1.0

Published

Official stdio-only MCP server for SYSQ mailbox automation.

Readme

@suiyongsuiqi/sysq-mcp

Official stdio-only MCP server for SYSQ mailbox automation.

sysq-mcp is the official MCP server for SYSQ. It currently focuses on local stdio usage, so MCP-compatible LLM clients such as Claude Desktop, Cursor, and Cherry Studio can directly use SYSQ mailbox capabilities. It reads SYSQ credentials from the local environment and maps LLM tool calls to sysq-sdk and SYSQ OpenAPI.

Positioning

This package is a local MCP bridge for LLM clients.

  • It runs on stdio
  • It reads SYSQ_BASE_URL and SYSQ_API_KEY from the local environment
  • It uses @suiyongsuiqi/sysq-sdk to call SYSQ OpenAPI

It does not provide a public Streamable HTTP endpoint in v1.

Install

From npm:

npm i -g @suiyongsuiqi/sysq-mcp

From source:

git clone https://github.com/suiyongsuiqi/sysq-mcp.git
cd sysq-mcp
pnpm install
pnpm build

Required Environment Variables

export SYSQ_BASE_URL="https://www.suiyongsuiqi.com/openapi/api"
export SYSQ_API_KEY="ak-xxxxxxxx"

Notes:

  • SYSQ_API_KEY should be created from the SYSQ console
  • the underlying SDK will automatically send Tenant-Id: 000000
  • this MCP server is single-user per process, because one process maps to one SYSQ API key

Run Locally

sysq-mcp

Or from source:

pnpm dev

MCP Clients

Claude Desktop

{
  "mcpServers": {
    "sysq": {
      "command": "sysq-mcp",
      "env": {
        "SYSQ_BASE_URL": "https://www.suiyongsuiqi.com/openapi/api",
        "SYSQ_API_KEY": "ak-xxxxxxxx"
      }
    }
  }
}

Cursor

{
  "mcpServers": {
    "sysq": {
      "command": "node",
      "args": ["E:/path/to/sysq-mcp/dist/stdio.js"],
      "env": {
        "SYSQ_BASE_URL": "https://www.suiyongsuiqi.com/openapi/api",
        "SYSQ_API_KEY": "ak-xxxxxxxx"
      }
    }
  }
}

Exposed Tools

  • sysq_mailbox_list
  • sysq_mailbox_buy
  • sysq_mailbox_buy_random
  • sysq_mailbox_buy_batch
  • sysq_mailbox_bind
  • sysq_mailbox_remove
  • sysq_mailbox_remove_batch
  • sysq_mail_unread_summary
  • sysq_mail_unread_list
  • sysq_mail_messages
  • sysq_mail_mark_read

Exposed Resources

  • sysq://mail/config
  • sysq://mail/suffixes
  • sysq://mail/stats
  • sysq://user/mailboxes
  • sysq://user/mailboxes/{current}/{size}
  • sysq://user/unread-mailboxes
  • sysq://user/unread-mailboxes/{current}/{size}
  • sysq://mailbox/{mailBoxId}/messages/{current}/{size}
  • sysq://mailbox/{mailBoxId}/messages/{current}/{size}/after/{afterId}

Exposed Prompts

  • sysq_mailbox_triage
  • sysq_buy_mailbox_for_task
  • sysq_cleanup_mailboxes

Development

pnpm install
pnpm typecheck
pnpm test
pnpm build