# io.usefulapi/northflank (remote · northflank.usefulapi.io)

Inspect and control your Northflank projects, services, jobs, and builds from your AI assistant.

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

## Components

- remote · `northflank.usefulapi.io`: 73/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-northflank/northflank.md), [page](https://verifymcp.io/servers/io-usefulapi-northflank/northflank)

## Channel facts

- Endpoint: `https://northflank.usefulapi.io/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**: 78/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1635 tokens (~96/item across 17 items; 17 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 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**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-northflank https://northflank.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-northflank]
url = "https://northflank.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-northflank": {
      "type": "remote",
      "url": "https://northflank.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-northflank --url https://northflank.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-northflank:
    url: "https://northflank.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-northflank": {
      "type": "http",
      "url": "https://northflank.usefulapi.io/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 73, +1)

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

### 2026-07-31 (score 72, +1)

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

### 2026-07-29 (score 71, +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-07-28 (score 70, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 69, +57)

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

### 2026-07-26 (score 12)

First indexed and scored.

## MCP tools (17)

### `northflank_list_projects` (~114 tokens)

List projects

List projects for the authenticated token (or a specific team). Good first call to discover project ids. GET /v1/projects (team: GET /v1/teams/{teamId}/projects).

Input parameters:

- `cursor` (string): Cursor from a previous page's pagination.cursor to fetch the next page.
- `page` (integer): Page number to access.
- `per_page` (integer): Results per page (max 100).
- `teamId` (string): Optional team id to scope to a team's projects.

### `northflank_get_project` (~55 tokens)

Get project

Get details of a single project, including region, cluster and associated services/jobs/addons. GET /v1/projects/{projectId}.

Input parameters:

- `projectId` (string, required): Project id (from northflank_list_projects).

### `northflank_list_services` (~97 tokens)

List services

List services in a project (build / deployment / combined) with their build+deployment status. GET /v1/projects/{projectId}/services.

Input parameters:

- `cursor` (string): Cursor from a previous page's pagination.cursor to fetch the next page.
- `page` (integer): Page number to access.
- `per_page` (integer): Results per page (max 100).
- `projectId` (string, required): Project id.

### `northflank_get_service` (~62 tokens)

Get service

Get details and current status of a single service. GET /v1/projects/{projectId}/services/{serviceId}.

Input parameters:

- `projectId` (string, required): Project id.
- `serviceId` (string, required): Service id (from northflank_list_services).

### `northflank_list_jobs` (~89 tokens)

List jobs

List jobs (manual / cron) in a project. GET /v1/projects/{projectId}/jobs.

Input parameters:

- `cursor` (string): Cursor from a previous page's pagination.cursor to fetch the next page.
- `page` (integer): Page number to access.
- `per_page` (integer): Results per page (max 100).
- `projectId` (string, required): Project id.

### `northflank_get_job` (~68 tokens)

Get job

Get details of a single job, including build/deploy config and cron schedule. GET /v1/projects/{projectId}/jobs/{jobId}.

Input parameters:

- `jobId` (string, required): Job id (from northflank_list_jobs).
- `projectId` (string, required): Project id.

### `northflank_list_addons` (~94 tokens)

List addons

List addons (managed databases / services) in a project with their status. GET /v1/projects/{projectId}/addons.

Input parameters:

- `cursor` (string): Cursor from a previous page's pagination.cursor to fetch the next page.
- `page` (integer): Page number to access.
- `per_page` (integer): Results per page (max 100).
- `projectId` (string, required): Project id.

### `northflank_get_addon` (~64 tokens)

Get addon

Get details and status of a single addon. GET /v1/projects/{projectId}/addons/{addonId}.

Input parameters:

- `addonId` (string, required): Addon id (from northflank_list_addons).
- `projectId` (string, required): Project id.

### `northflank_list_service_builds` (~119 tokens)

List service builds

List a build service's build runs / history (branch, sha, status, timestamps). GET /v1/projects/{projectId}/services/{serviceId}/build.

Input parameters:

- `cursor` (string): Cursor from a previous page's pagination.cursor to fetch the next page.
- `page` (integer): Page number to access.
- `per_page` (integer): Results per page (max 100).
- `projectId` (string, required): Project id.
- `serviceId` (string, required): Service id of a build/combined service.

### `northflank_get_service_metrics` (~181 tokens)

Get service metrics

Get CPU / memory metrics for a service's containers. GET /v1/projects/{projectId}/services/{serviceId}/metrics. Use queryType=single (default) for a current snapshot or queryType=range with duration/startTime/endTime.

Input parameters:

- `duration` (integer): Range duration in seconds (alternative to startTime/endTime).
- `endTime` (integer): Range end.
- `metricTypes` (array): Which metrics to return; defaults to all if omitted.
- `projectId` (string, required): Project id.
- `queryType` (string): single = point-in-time (default), range = time series.
- `serviceId` (string, required): Service id.
- `startTime` (integer): Range start (unix ms/seconds per API).
- `time` (integer): Point-in-time for queryType=single.

### `northflank_list_secret_groups` (~106 tokens)

List secret groups

List a project's secret groups — METADATA ONLY (id, name, type, priority, restrictions). Does NOT return secret values. GET /v1/projects/{projectId}/secrets.

Input parameters:

- `cursor` (string): Cursor from a previous page's pagination.cursor to fetch the next page.
- `page` (integer): Page number to access.
- `per_page` (integer): Results per page (max 100).
- `projectId` (string, required): Project id.

### `northflank_list_domains` (~110 tokens)

List domains

List custom domains for the account (or a team), with verification status. GET /v1/domains (team: GET /v1/teams/{teamId}/domains).

Input parameters:

- `cursor` (string): Cursor from a previous page's pagination.cursor to fetch the next page.
- `page` (integer): Page number to access.
- `per_page` (integer): Results per page (max 100).
- `teamId` (string): Optional team id to scope to a team's domains.

### `northflank_trigger_service_build` (~146 tokens)

Trigger service build (mutates infra)

MUTATING: start a new build for a build/combined service. With an empty body it builds the latest commit on the linked branch; optionally target a branch, a specific commit sha, or a pull request. POST /v1/projects/{projectId}/services/{serviceId}/build.

Input parameters:

- `branch` (string): Branch to build (defaults to the service's linked branch).
- `projectId` (string, required): Project id.
- `pullRequestId` (string): Build the latest commit of this pull request's branch.
- `serviceId` (string, required): Build/combined service id.
- `sha` (string): Specific commit SHA to build from the branch.

### `northflank_restart_service` (~58 tokens)

Restart service (mutates infra)

MUTATING: restart all running containers of a service. POST /v1/projects/{projectId}/services/{serviceId}/restart.

Input parameters:

- `projectId` (string, required): Project id.
- `serviceId` (string, required): Service id.

### `northflank_scale_service` (~77 tokens)

Scale service (mutates infra)

MUTATING: set the number of running instances (replicas) for a service. POST /v1/projects/{projectId}/services/{serviceId}/scale.

Input parameters:

- `instances` (integer, required): Desired number of instances / replicas.
- `projectId` (string, required): Project id.
- `serviceId` (string, required): Service id.

### `northflank_pause_service` (~61 tokens)

Pause service (mutates infra)

MUTATING: pause a service, scaling it to zero running instances. POST /v1/projects/{projectId}/services/{serviceId}/pause.

Input parameters:

- `projectId` (string, required): Project id.
- `serviceId` (string, required): Service id.

### `northflank_resume_service` (~134 tokens)

Resume service (mutates infra)

MUTATING: resume a paused service. Optionally set the instance count and CI/CD/autoscaling state to restore. POST /v1/projects/{projectId}/services/{serviceId}/resume.

Input parameters:

- `disabledCD` (boolean): Whether CD should be disabled after resume.
- `disabledCI` (boolean): Whether CI should be disabled after resume.
- `enableAutoscaling` (boolean): Restore autoscaling (defaults to the state captured when paused).
- `instances` (integer): Instances to scale to on resume.
- `projectId` (string, required): Project id.
- `serviceId` (string, required): Service id.

## Diagnostics

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

## Score history

- 2026-08-03: 73
- 2026-08-02: 73
- 2026-08-01: 72
- 2026-07-31: 72
- 2026-07-30: 71
- 2026-07-29: 71
- 2026-07-28: 70
- 2026-07-27: 69
- 2026-07-26: 12

## Links

- Remote endpoint: https://northflank.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-northflank/northflank/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-northflank/northflank/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-northflank/northflank
