com.featurejet/feedback-board

MCPcommunitylive
v1.0.0com.featurejetUnknownUpdated 2mo ago

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

Endpoint healthlive
checked 8 days ago · 205ms
100% of the last 4 checks reached this endpoint
Works in
ClaudeCursorCopilotChatGPTGemini

Inferred from the transports this listing declares (streamable-http). A client not listed here hasn’t been ruled out — it just isn’t something Forge can confirm.

Automatically indexed from public sources. Not yet verified by the developer on Forge.Claim this listing →
2mo agoLast update
Package
Authorcom.featurejet
LicenseUnknown
Version1.0.0
Sourcemcp-registry
Trust Status
B
60/100Good
Listed in Forge index+10/10
Publisher identity verified+0/30
Publisher: this listing has no repository on file, so `forge publish` cannot verify ownership automatically. Use "Claim this listing" above — Forge reviews these by hand.
Domain verification+0/10
Not currently available for this listing type — the domain-verification check only runs for npm-backed packages today, so this row cannot be earned here yet regardless of what's hosted at the domain.
Prompt-injection scan · clean+30/30
Obfuscation / exfil scan · clean+20/20
StatusCommunity-indexed
PublisherUnverified
SignatureUnsigned
Domain
Provenance
DependenciesNot audited
Tool surface22 tools · 1 privileged
Security scan✓ Cleanvlive · 8d agoHow well does this scan work?
EvalsNone
IndexedJul 21, 2026

Verification confirms publisher identity (repo ownership), not code safety. The security scan covers known CVEs and suspicious install scripts.

Tools

22 tools · 1 privileged
Observed live from the vendor's endpoint8d ago

Read from a real MCP initialize → tools/list handshake against the declared endpoint. No tool was ever invoked — tools/list is the read-only introspection call the protocol defines for this. It reflects what the server advertised at that moment; a hosted endpoint is not pinned to any version and can change without notice.

  • https://mcp.featurejet.com/mcp22 tools · 205ms
list_boardsList boards available to the caller's FeatureJet API key.

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

No input schema was published for this tool.

get_boardGet one board by slug.

Get one board by slug.

ParameterTypeDescription
slug*string
create_boardCreate 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`).

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`).

ParameterTypeDescription
name*string
slug*string
description
publish_boardPublish 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…

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…

ParameterTypeDescription
slug*string
unpublish_boardReturn a board to draft so its public URL stops serving it. Nothing is deleted; publish it again to bring it back.

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

ParameterTypeDescription
slug*string
list_postsList posts for a board, optionally filtered by status, search, or tag.

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

ParameterTypeDescription
slug*string
status
q
tag
limit
offset
get_postGet one post by board slug and post id.

Get one post by board slug and post id.

ParameterTypeDescription
slug*string
post_id*integer
create_postCreate a post on a board.

Create a post on a board.

ParameterTypeDescription
slug*string
title*string
body
status
tags
update_postUpdate mutable post fields; null queue_rank explicitly un-ranks.

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

ParameterTypeDescription
slug*string
post_id*integer
title
body
status
tags
pinned
queue_rank
delete_postprivilegedDelete a post by hiding it through the developer API.

Delete a post by hiding it through the developer API.

ParameterTypeDescription
slug*string
post_id*integer
list_votesList vote metadata for a post.

List vote metadata for a post.

ParameterTypeDescription
slug*string
post_id*integer
list_commentsList comments for a post.

List comments for a post.

ParameterTypeDescription
slug*string
post_id*integer
create_commentComment on a post as the board team, optionally replying to a comment.

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

ParameterTypeDescription
slug*string
post_id*integer
body*string
parent_comment_id
get_queueTop 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.

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.

ParameterTypeDescription
slug*string
limit
claim_postAtomically 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.

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.

ParameterTypeDescription
slug*string
post_id*integer
ttl_seconds
agent_label
release_postRelease a post's claim so other agents can pick it up.

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

ParameterTypeDescription
slug*string
post_id*integer
add_evidenceAttach 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.

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.

ParameterTypeDescription
slug*string
post_id*integer
kind*string
ref*string
label
action_key
propose_statusPropose 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 replac…

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

ParameterTypeDescription
slug*string
post_id*integer
status*string
note
action_key
get_changelogList shipped posts for a board.

List shipped posts for a board.

ParameterTypeDescription
slug*string
get_analyticsGet read-only analytics for a board.

Get read-only analytics for a board.

ParameterTypeDescription
slug*string
period
whoamiConfirm the caller's API key by listing accessible boards.

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

No input schema was published for this tool.

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

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

No input schema was published for this tool.

22 of 22 tools published a description.

Tool names and descriptions are written by the publisher and shown verbatim as inert text. They are the strings an MCP client passes to a model, so Forge scans them for prompt-injection patterns — any finding appears with the security scan above. “Privileged” is a keyword match on the tool name, not an audit of what the tool does: a benign-sounding name can still do anything.

About

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

Keywords
mcp
Alternatives
Comparing tool surfaces…

No dependency coverage

This entry publishes no npm package, so Forge has no dependency tree for it. That is a gap in coverage — not a statement that it has no dependencies.