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

mcp-104jobs

v1.0.1

Published

MCP server for 104.com.tw job search platform

Readme

104.com.tw MCP Server

MCP server for Taiwan's largest job platform — search jobs, browse companies, and apply, all from Claude.

Disclaimer: This project is not affiliated with or endorsed by 104 Human Resources Group (104人力銀行). Use in accordance with 104.com.tw's Terms of Service.

Tools

| Tool | Auth required | Description | |---|---|---| | search_jobs | No | Search job listings by keyword, location, salary, remote, etc. | | get_job_detail | No | Full job posting: description, salary, requirements, welfare | | search_companies | No | Search companies by name | | get_company_detail | No | Company profile + optional current job listings | | login | — | Log in with email/password | | logout | — | Log out | | apply_job | Yes | Apply to a job with optional cover letter | | save_job | Yes | Bookmark a job | | save_company | Yes | Follow a company |

npm package name

This repository publishes mcp-104jobs (see package.json). That is the package to install and the binary name for MCP clients.

If you see 104-mcp-server on npm as well, it is the same project published under an older alternate name. Prefer mcp-104jobs; the duplicate can be marked deprecated on npm by its owner (npm deprecate 104-mcp-server@"*" "Use mcp-104jobs instead").

Setup

Via npx (recommended)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "104": {
      "command": "npx",
      "args": ["-y", "mcp-104jobs"]
    }
  }
}

Manual

npm install
npm run build

Add to Claude Desktop config:

{
  "mcpServers": {
    "104": {
      "command": "node",
      "args": ["/path/to/104-mcp/dist/index.js"]
    }
  }
}

Usage examples

  • "Search for backend engineer jobs in Taipei with remote work"
  • "Show me the details for job 8tft1"
  • "Search for companies named Google in Taiwan"
  • "Get the company profile for 1a2x6bmutz including their job openings"
  • "Login with my 104 account and apply to job 8kq2g"

Location codes

| Code | Area | |---|---| | 6001001000 | 台北市 | | 6001002000 | 新北市 | | 6001003000 | 桃園市 | | 6001005000 | 台中市 | | 6001006000 | 台南市 | | 6001008000 | 高雄市 |

Compatible clients

Works with any MCP-compatible AI client:

| Client | Config file | |---|---| | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json | | Cursor | ~/.cursor/mcp.json | | Windsurf | ~/.codeium/windsurf/mcp_config.json | | Cline (VS Code) | MCP Servers panel in sidebar | | Continue.dev | ~/.continue/config.jsonmcpServers | | Zed | settings.jsoncontext_servers |

All clients use the same config block:

{
  "mcpServers": {
    "104": {
      "command": "npx",
      "args": ["-y", "mcp-104jobs"]
    }
  }
}

ChatGPT / GPT Actions

A REST API is deployed at https://104-mcp.vercel.app for use as a GPT Action.

OpenAPI spec: https://104-mcp.vercel.app/openapi.json

To add to a Custom GPT:

  1. Go to chat.openai.com/gpts → Create
  2. Click ConfigureAdd actions
  3. Paste the OpenAPI spec URL above
  4. Save and test

Available via GPT Actions (read-only, no auth required):

  • searchJobs — search job listings
  • getJobDetail — full job posting
  • searchCompanies — search companies
  • getCompanyDetail — company profile

Notes

  • No API key needed for read-only tools
  • Auth uses 104's OIDC flow (Ory Hydra with PKCE)
  • Apply/save require a valid 104.com.tw account