Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

FeatureJet

com.featurejet/feedback-board

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

Uptime
100.0%
1 direct probes · 30d
Response
985ms
last probe
Tools
22
callable
Resources
0
readable
Prompts
0
available

Tools · 22

list_boards

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

get_board

Get one board by slug.

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 …

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 return…

unpublish_board

Return a board to draft so its public URL stops serving it. Nothing is deleted; publish it again to bring it back.

list_posts

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

get_post

Get one post by board slug and post id.

create_post

Create a post on a board.

update_post

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

delete_post

Delete a post by hiding it through the developer API.

list_votes

List vote metadata for a post.

list_comments

List comments for a post.

create_comment

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

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 th…

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…

release_post

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

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 pag…

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…

get_changelog

List shipped posts for a board.

get_analytics

Get read-only analytics for a board.

whoami

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

ping

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

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "featurejet": {
      "url": "https://mcp.featurejet.com/mcp",
      "transport": "streamable-http"
    }
  }
}