# Startup Jobs (remote · api.startup.jobs)

Search live startup jobs from Claude, Cursor, or ChatGPT via MCP. Free, no account needed.

- Trust score: 72/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `api.startup.jobs`: 72/100 (this document), [markdown](https://verifymcp.io/servers/killbridge-startupjobs-mcp/api.md), [page](https://verifymcp.io/servers/killbridge-startupjobs-mcp/api)

## Channel facts

- Endpoint: `https://api.startup.jobs/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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.

- **Endpoint Security**: 80/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 880 tokens (~110/item across 8 items; 8 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 10/100
  - Stability observed for 3 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 97/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 91% 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 --transport http killbridge-startupjobs-mcp https://api.startup.jobs/mcp
```

### Codex

```toml
[mcp_servers.killbridge-startupjobs-mcp]
url = "https://api.startup.jobs/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "killbridge-startupjobs-mcp": {
      "type": "remote",
      "url": "https://api.startup.jobs/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add killbridge-startupjobs-mcp --url https://api.startup.jobs/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  killbridge-startupjobs-mcp:
    url: "https://api.startup.jobs/mcp"
```

### Other

```json
{
  "mcpServers": {
    "killbridge-startupjobs-mcp": {
      "type": "http",
      "url": "https://api.startup.jobs/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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-02 (score 72, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-01 (score 71, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-31 (score 71)

First indexed and scored.

## MCP tools (8)

### `search_jobs` (~211 tokens)

Search jobs

Search live startup job listings, newest first. Returns compact job summaries; use get_job for the full description. The free tier covers the last 14 days of listings; full access unlocks the archive and posted_before.

Input parameters:

- `company` (string): Company slug, as returned by get_company or search results
- `country` (string): Two-letter ISO country code (e.g. US, NL)
- `cursor` (string): next_cursor value from the previous page
- `employment_type` (string)
- `limit` (integer): Results per page (default 20)
- `posted_after` (string): Only jobs published after this ISO 8601 date or timestamp
- `posted_before` (string): Only jobs published before this ISO 8601 date or timestamp (full access only)
- `q` (string): Keywords matched against job titles and company names
- `role` (string): Role slug from list_roles (e.g. software-engineer)
- `workplace_type` (string)

### `get_job` (~50 tokens)

Get job

Fetch a single job listing by id, including the full description. Share the job's startup.jobs URL with the user so they can apply there.

Input parameters:

- `id` (integer, required): Job id from search_jobs results

### `get_company` (~41 tokens)

Get company

Fetch a company profile by slug, including its startup.jobs URL and live listing count.

Input parameters:

- `slug` (string, required): Company slug, as returned in job payloads

### `get_company_jobs` (~74 tokens)

Get company jobs

List all live job listings for one company (no recency window), newest first. Returns compact summaries; use get_job for full descriptions.

Input parameters:

- `cursor` (string): next_cursor value from the previous page
- `limit` (integer): Results per page (default 20)
- `slug` (string, required): Company slug

### `list_roles` (~41 tokens)

List roles

List the role taxonomy (title, slug, parent_slug). Use slugs as the role filter in search_jobs, job_trends, and salary_benchmarks.

### `list_countries` (~41 tokens)

List countries

List countries with jobs (name, ISO country code). Use the codes as the country filter in search_jobs, job_trends, and salary_benchmarks.

### `job_trends` (~108 tokens)

Job trends

Job posting volume trends on startup.jobs, optionally filtered by role and/or country. The free tier returns a 12-month summary with year-over-year change; full access unlocks the monthly time series (up to 36 months).

Input parameters:

- `country` (string): Two-letter ISO country code
- `months` (integer): How many months of history (default 12, full access only)
- `role` (string): Role slug from list_roles (specific roles only, not top-level categories)

### `salary_benchmarks` (~127 tokens)

Salary benchmarks

Salary benchmarks (yearly, USD) computed from startup.jobs listings that disclose compensation, optionally filtered by role and/or country. The free tier returns an aggregate over the last 12 months; full access unlocks the monthly time series and company-level benchmarks.

Input parameters:

- `company` (string): Company slug (full access only)
- `country` (string): Two-letter ISO country code
- `months` (integer): How many months of history (default 12, full access only)
- `role` (string): Role slug from list_roles (specific roles only, not top-level categories)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/killbridge-startupjobs-mcp/api#diagnostics

## Score history

- 2026-08-03: 72
- 2026-08-02: 72
- 2026-08-01: 71
- 2026-07-31: 71

## Links

- Remote endpoint: https://api.startup.jobs/mcp
- Repository: https://github.com/killbridge/startupjobs-mcp
- Website: https://startup.jobs/mcp
- Changelog RSS feed: https://verifymcp.io/servers/killbridge-startupjobs-mcp/api/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/killbridge-startupjobs-mcp/api/changelog.json
- HTML version of this page: https://verifymcp.io/servers/killbridge-startupjobs-mcp/api
