# FeatureJet (remote · mcp.featurejet.com)

The feedback board your AI agents work from: users vote, agents build over MCP. 22 tools.

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

## Components

- remote · `mcp.featurejet.com`: 55/100 (this document), [markdown](https://verifymcp.io/servers/com-featurejet-feedback-board/mcp.md), [page](https://verifymcp.io/servers/com-featurejet-feedback-board/mcp)

## Channel facts

- Endpoint: `https://mcp.featurejet.com/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## 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**: 46/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 22 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - 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.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1180 tokens (~53/item across 22 items; 22 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 7/100
  - Stability observed for 2 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 71/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **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 com-featurejet-feedback-board https://mcp.featurejet.com/mcp
```

### Codex

```toml
[mcp_servers.com-featurejet-feedback-board]
url = "https://mcp.featurejet.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-featurejet-feedback-board": {
      "type": "remote",
      "url": "https://mcp.featurejet.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-featurejet-feedback-board --url https://mcp.featurejet.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-featurejet-feedback-board:
    url: "https://mcp.featurejet.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-featurejet-feedback-board": {
      "type": "http",
      "url": "https://mcp.featurejet.com/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-03 (score 55, +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-02 (score 54, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-01 (score 54, +50)

- [security regression] HSTS header: unverified → fail
- [security regression] HTTPS: pass → unverified
- [security improvement] TLS certificate: unverified → pass
- [security improvement] Transport: fail → pass
- [security] Authorization: Authorisation not fully verified: no authorisation is required to call this server, and 22 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] MCP protocol: unverified → pass
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: good
- [functional] First check of Tool coverage: 100
- [functional] First check of Tool coverage: 0
- [functional] First check of Schema quality: fail

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

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

### 2026-07-30 (score 3, 0)

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

### 2026-07-27 (score 3, 0)

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

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

First indexed and scored.

## MCP tools (22)

### `list_boards` (~21 tokens)

List boards available to the caller's FeatureJet API key.

Output parameters:

- `result`

### `get_board` (~21 tokens)

Get one board by slug.

Input parameters:

- `slug` (string, required)

Output parameters:

- `result`

### `create_board` (~106 tokens)

Create a new feedback board, as a DRAFT.

        `slug` is the board's URL path segment (lowercase, hyphenated, unique);
        `name` is the display name. The new board's public URL 404s until a
        human publishes it from the dashboard -- `publish_board` is off by
        default (403 `publish_disabled`).

Input parameters:

- `description`
- `name` (string, required)
- `slug` (string, required)

Output parameters:

- `result`

### `publish_board` (~112 tokens)

Publish a board so it is live at its public URL.

        OFF BY DEFAULT. Putting a board on the public internet is a human
        decision: unless the FeatureJet deployment has opted in, this returns
        403 `publish_disabled` and the owner publishes from the dashboard.
        Where it is enabled it needs a `write` (or `admin`) scoped key and an
        active subscription -- an org without one gets 403
        `subscription_required`.

Input parameters:

- `slug` (string, required)

Output parameters:

- `result`

### `unpublish_board` (~43 tokens)

Return a board to draft so its public URL stops serving it.

        Nothing is deleted; publish it again to bring it back.

Input parameters:

- `slug` (string, required)

Output parameters:

- `result`

### `list_posts` (~56 tokens)

List posts for a board, optionally filtered by status, search, or tag.

Input parameters:

- `limit`
- `offset`
- `q`
- `slug` (string, required)
- `status`
- `tag`

Output parameters:

- `result`

### `get_post` (~33 tokens)

Get one post by board slug and post id.

Input parameters:

- `post_id` (integer, required)
- `slug` (string, required)

Output parameters:

- `result`

### `create_post` (~44 tokens)

Create a post on a board.

Input parameters:

- `body`
- `slug` (string, required)
- `status`
- `tags`
- `title` (string, required)

Output parameters:

- `result`

### `update_post` (~67 tokens)

Update mutable post fields; null queue_rank explicitly un-ranks.

Input parameters:

- `body`
- `pinned`
- `post_id` (integer, required)
- `queue_rank`
- `slug` (string, required)
- `status`
- `tags`
- `title`

Output parameters:

- `result`

### `delete_post` (~34 tokens)

Delete a post by hiding it through the developer API.

Input parameters:

- `post_id` (integer, required)
- `slug` (string, required)

Output parameters:

- `result`

### `list_votes` (~30 tokens)

List vote metadata for a post.

Input parameters:

- `post_id` (integer, required)
- `slug` (string, required)

Output parameters:

- `result`

### `list_comments` (~29 tokens)

List comments for a post.

Input parameters:

- `post_id` (integer, required)
- `slug` (string, required)

Output parameters:

- `result`

### `create_comment` (~52 tokens)

Comment on a post as the board team, optionally replying to a comment.

Input parameters:

- `body` (string, required)
- `parent_comment_id`
- `post_id` (integer, required)
- `slug` (string, required)

Output parameters:

- `result`

### `get_queue` (~79 tokens)

Top UNCLAIMED posts in the owner's curated build order.

        Owner-ranked posts (queue_rank, lower = sooner) come first, then
        unranked planned posts by votes. Call this to find the next thing to
        build, then claim_post before starting work.

Input parameters:

- `limit`
- `slug` (string, required)

Output parameters:

- `result`

### `claim_post` (~89 tokens)

Atomically claim a post before working on it (double-work guard).

        ttl_seconds defaults to 3600 (max 86400); re-claiming with the same
        key extends the lease. Returns 409 if another key holds a live claim.

Input parameters:

- `agent_label`
- `post_id` (integer, required)
- `slug` (string, required)
- `ttl_seconds`

Output parameters:

- `result`

### `release_post` (~36 tokens)

Release a post's claim so other agents can pick it up.

Input parameters:

- `post_id` (integer, required)
- `slug` (string, required)

Output parameters:

- `result`

### `add_evidence` (~106 tokens)

Attach implementation evidence to a post (shown publicly).

        kind is one of branch|commit|pr|transcript|url; ref is the branch
        name, commit sha, or URL. Voters see these in the post page's
        "Implementation" section.

Input parameters:

- `action_key`
- `kind` (string, required)
- `label`
- `post_id` (integer, required)
- `ref` (string, required)
- `slug` (string, required)

Output parameters:

- `result`

### `propose_status` (~130 tokens)

Propose a status change for the board owner to confirm.

        The agent-honest way to mark work done: nothing changes on the
        public board and no voter is notified until a human confirms the
        proposal from the dashboard. status is one of
        open|planned|in_progress|shipped|declined; a new proposal replaces
        any pending one. Prefer this over update_post's direct status flip.

Input parameters:

- `action_key`
- `note`
- `post_id` (integer, required)
- `slug` (string, required)
- `status` (string, required)

Output parameters:

- `result`

### `get_changelog` (~23 tokens)

List shipped posts for a board.

Input parameters:

- `slug` (string, required)

Output parameters:

- `result`

### `get_analytics` (~29 tokens)

Get read-only analytics for a board.

Input parameters:

- `period`
- `slug` (string, required)

Output parameters:

- `result`

### `whoami` (~19 tokens)

Confirm the caller's API key by listing accessible boards.

Output parameters:

- `result`

### `ping` (~21 tokens)

Check MCP and FeatureJet API reachability for the caller's key.

Output parameters:

- `result`

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-featurejet-feedback-board/mcp#diagnostics

## Score history

- 2026-08-03: 55
- 2026-08-02: 54
- 2026-08-01: 54
- 2026-07-31: 4
- 2026-07-30: 3
- 2026-07-29: 3
- 2026-07-28: 3
- 2026-07-27: 3
- 2026-07-26: 3

## Links

- Remote endpoint: https://mcp.featurejet.com/mcp
- Authorisation metadata: https://mcp.featurejet.com/.well-known/oauth-protected-resource/mcp
- Changelog RSS feed: https://verifymcp.io/servers/com-featurejet-feedback-board/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-featurejet-feedback-board/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-featurejet-feedback-board/mcp
