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

@zizaiwork/mcp

v0.3.0

Published

MCP Server for 自在招聘 API.

Readme

自在招聘 MCP Server

MCP Server for 自在招聘 API.

自在招聘

自在招聘(https://zizai.work)是一个基于专业测评的新一代智能招聘平台,帮助人才与职位高效、精准的智能匹配。

加入我们,立即体验智能招聘的魅力!

Tools

求职者

  1. get-job-list

    • 获取推荐的职位列表
    • Input:
      • keyword (string, 可选): 职位搜索关键词。
      • recruitType (number, 可选): 职位类型,1-社招,2-校招,2-实习
    • Returns:
      • Array of {
        • workPin: string
        • name: string
        • entityName: string
        • entityShortname: string
        • responsibility: string
        • requirement: string
        • welfare: string
        • salary: { minSalary: number, maxSalary: number } | string
        • detailUrl: string }
  2. apply-for-job

    • 投递职位
    • Input:
      • workPin (string) 职位唯一码
    • Returns:

招聘端

  1. get-entity-list

    • 获取管理的实体列表
    • Input:
    • Returns:
      • Array of {
        • entityPin: string
        • entityName: string
        • entityShortname: string
        • unifiedSocialCreditCode: string
        • entityLogo: string
        • detailUrl: string }
  2. get-entity-jobs

    • 获取实体下发布的职位
    • Input:
      • entityPin (string): 实体唯一码
    • Returns:
      • Array of {
        • workPin: string
        • name: string
        • entityPin: string
        • responsibility: string
        • requirement: string
        • welfare: string
        • salary: { minSalary: number, maxSalary: number } | string
        • detailUrl: string }
  3. get-recommend-talents

    • 获取职位的推荐人才
    • Input:
      • workPin (string): 职位唯一码
    • Returns:
      • Array of {
        • userPin: string
        • birthday: string
        • university: string
        • major: string
        • highestEducation: string
        • workYears: number
        • workName: string
        • matchDegree: number }
  4. get-field-list

    • 获取领域列表
    • Input:
    • Returns:
      • Array of {
        • fid: number
        • name: string }
  5. post-a-job

    • 发布职位
    • Input:
      • entityPin (string): 实体唯一码
      • fid (number): 职位所属领域
      • jobName (string): 职位名称
      • responsibility (string): 工作职责
      • requirement (string): 工作要求
      • city (string): 工作城市
      • benefit (string, 可选): 工作福利
      • address (string, 可选): 工作地址
    • Returns:

Setup

API Key

Get a ZIZAI Work API key by following the instructions here.

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

NPX

{
  "mcpServers": {
    "zaiwork": {
      "command": "npx",
      "args": [
        "-y",
        "@zizaiwork/mcp"
      ],
      "env": {
        "ZAI_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}

License

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