# FeatureJet MCP server

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

## Links
- Registry page: https://www.getdrio.com/mcp/com-featurejet-feedback-board

## Install
- Endpoint: https://mcp.featurejet.com/mcp
- Auth: Auth required by registry metadata

## Setup notes
- Remote header: Authorization (required; secret)
- The upstream registry signals required auth or secrets.
- Remote endpoint: https://mcp.featurejet.com/mcp
- Header: Authorization

## Tools
- list_boards - List boards available to the caller's FeatureJet API key. Endpoint: https://mcp.featurejet.com/mcp
- get_board - Get one board by slug. Endpoint: https://mcp.featurejet.com/mcp
- create_board - 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`).
         Endpoint: https://mcp.featurejet.com/mcp
- publish_board - 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`.
         Endpoint: https://mcp.featurejet.com/mcp
- unpublish_board - Return a board to draft so its public URL stops serving it.

        Nothing is deleted; publish it again to bring it back.
         Endpoint: https://mcp.featurejet.com/mcp
- list_posts - List posts for a board, optionally filtered by status, search, or tag. Endpoint: https://mcp.featurejet.com/mcp
- get_post - Get one post by board slug and post id. Endpoint: https://mcp.featurejet.com/mcp
- create_post - Create a post on a board. Endpoint: https://mcp.featurejet.com/mcp
- update_post - Update mutable post fields; null queue_rank explicitly un-ranks. Endpoint: https://mcp.featurejet.com/mcp
- delete_post - Delete a post by hiding it through the developer API. Endpoint: https://mcp.featurejet.com/mcp
- list_votes - List vote metadata for a post. Endpoint: https://mcp.featurejet.com/mcp
- list_comments - List comments for a post. Endpoint: https://mcp.featurejet.com/mcp
- create_comment - Comment on a post as the board team, optionally replying to a comment. Endpoint: https://mcp.featurejet.com/mcp
- get_queue - 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.
         Endpoint: https://mcp.featurejet.com/mcp
- claim_post - 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.
         Endpoint: https://mcp.featurejet.com/mcp
- release_post - Release a post's claim so other agents can pick it up. Endpoint: https://mcp.featurejet.com/mcp
- add_evidence - 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.
         Endpoint: https://mcp.featurejet.com/mcp
- propose_status - 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.
         Endpoint: https://mcp.featurejet.com/mcp
- get_changelog - List shipped posts for a board. Endpoint: https://mcp.featurejet.com/mcp
- get_analytics - Get read-only analytics for a board. Endpoint: https://mcp.featurejet.com/mcp
- whoami - Confirm the caller's API key by listing accessible boards. Endpoint: https://mcp.featurejet.com/mcp
- ping - Check MCP and FeatureJet API reachability for the caller's key. Endpoint: https://mcp.featurejet.com/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: com.featurejet
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jul 21, 2026
- Source: https://registry.modelcontextprotocol.io
