# io.github.colophon-group/jobseek (npm · @jseek/mcp-server)

Search jobs, companies, and watchlists on Job Seek (jseek.co)

- Trust score: 71/100 (medium)
- Change this week: +18
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@jseek/mcp-server`: 71/100 (this document), [markdown](https://verifymcp.io/servers/colophon-group-jobseek/jseek-mcp-server.md), [page](https://verifymcp.io/servers/colophon-group-jobseek/jseek-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@jseek/mcp-server`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 110 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1065 tokens (~96/item across 11 items; 7 tools + 4 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add colophon-group-jobseek -- npx -y @jseek/mcp-server
```

### Codex

```bash
codex mcp add colophon-group-jobseek -- npx -y @jseek/mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "colophon-group-jobseek": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@jseek/mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add colophon-group-jobseek --command npx --arg -y --arg @jseek/mcp-server
```

### Hermes

```yaml
mcp_servers:
  colophon-group-jobseek:
    command: "npx"
    args: ["-y", "@jseek/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "colophon-group-jobseek": {
      "command": "npx",
      "args": [
        "-y",
        "@jseek/mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 71, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 67, +41)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: MIT

### 2026-07-31 (score 26, −27)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 53)

First indexed and scored.

## MCP tools (7)

### `search_jobs` (~218 tokens)

Search job postings across companies on jseek.co. Returns up to 5 companies with their top 3 matching postings. The 'q' parameter accepts freetext keywords. All filter params (loc, occ, sen, tech) require exact slugs — use resolve_slugs first to convert freetext to slugs.

Input parameters:

- `exp` (string): Experience range in years, format: min-max (e.g. 3-10)
- `loc` (string): Location slugs, comma-separated (from resolve_slugs)
- `locale` (string): Response language
- `occ` (string): Occupation slugs, comma-separated (from resolve_slugs)
- `q` (string): Freetext keywords
- `sal` (string): Salary range in EUR, format: min-max (e.g. 80000-150000)
- `sen` (string): Seniority slugs, comma-separated (from resolve_slugs)
- `tech` (string): Technology slugs, comma-separated (from resolve_slugs)

### `get_job_detail` (~90 tokens)

Get full structured metadata for a job posting by ID. Returns salary, technologies, seniority, experience, and locations. Does not include the job description — visit the returned URL on jseek.co to read the full posting. Use posting IDs from search_jobs results.

Input parameters:

- `id` (string, required): Job posting UUID (from search_jobs topPostings[].id)
- `locale` (string): Response language

### `search_companies` (~56 tokens)

Search companies by name on jseek.co. Returns up to 10 matching companies with links to their company pages.

Input parameters:

- `locale` (string): Response language
- `q` (string, required): Company name query (min 2 chars)

### `list_taxonomies` (~59 tokens)

List all valid values for a taxonomy type (seniority levels, occupations, technologies, or industries). Use this to discover available filter values before searching.

Input parameters:

- `locale` (string): Response language
- `type` (string, required): Which taxonomy to list

### `resolve_slugs` (~103 tokens)

Convert freetext to exact taxonomy slugs needed for filter parameters. ALWAYS call this before using loc/occ/sen/tech params in search_jobs. For example, resolve 'Zurich' to get the slug 'zurich', or 'machine learning' to get 'machine-learning'.

Input parameters:

- `locale` (string): Response language
- `q` (string, required): Freetext query (min 2 chars)
- `type` (string, required): Which taxonomy to search

### `search_watchlists` (~65 tokens)

Search public watchlists on jseek.co. Without a query, returns the most popular watchlists. Watchlists are curated collections of company filters that users share.

Input parameters:

- `locale` (string): Response language
- `q` (string): Search query for watchlist title/description

### `create_watchlist_link` (~230 tokens)

Generate a prefilled link for the user to create a watchlist on jseek.co. The link opens the watchlist creation page with filters pre-filled. The user must log in to save. Returns a preview with matching job and company counts so you can verify the filters are useful before sharing the link.

Input parameters:

- `companies` (string): Company slugs, comma-separated
- `description` (string): Watchlist description
- `exp` (string): Experience range in years, format: min-max
- `loc` (string): Location slugs, comma-separated (from resolve_slugs)
- `locale` (string): Response language
- `occ` (string): Occupation slugs, comma-separated
- `q` (string): Keywords
- `sal` (string): Salary range, format: min-max
- `salcur` (string): Salary currency code (e.g. EUR, USD, CHF)
- `sen` (string): Seniority slugs, comma-separated
- `tech` (string): Technology slugs, comma-separated
- `title` (string, required): Watchlist title

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/colophon-group-jobseek/jseek-mcp-server#diagnostics

## Score history

- 2026-08-03: 71
- 2026-08-02: 67
- 2026-08-01: 26
- 2026-07-31: 26
- 2026-07-30: 53
- 2026-07-28: 53
- 2026-07-27: 53

## Links

- npm package: https://www.npmjs.com/package/@jseek/mcp-server
- Socket report: https://socket.dev/npm/package/@jseek/mcp-server
- Repository: https://github.com/colophon-group/jobseek
- Changelog RSS feed: https://verifymcp.io/servers/colophon-group-jobseek/jseek-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/colophon-group-jobseek/jseek-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/colophon-group-jobseek/jseek-mcp-server
