com.featurejet/feedback-board

MCPCommunitylive
v1.0.0com.featurejetUnknownAktualisiert vor 2 Mon.

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

Endpunkt-Statuslive
geprüft vor 8 Tagen · 205 ms
100 % der letzten 4 Prüfungen haben diesen Endpunkt erreicht
Läuft in
ClaudeCursorCopilotChatGPTGemini

Abgeleitet aus den Transporten, die dieser Eintrag deklariert (streamable-http). Ein Client, der hier nicht steht, ist damit nicht ausgeschlossen — Forge kann ihn nur nicht bestätigen.

Automatisch aus öffentlichen Quellen indexiert. Vom Entwickler auf Forge noch nicht verifiziert.Diesen Eintrag beanspruchen →
vor 2 Mon.Letzte Aktualisierung
Paket
Autorcom.featurejet
LizenzUnknown
Version1.0.0
Quellemcp-registry
Trust-Status
B
60/100Gut
Im Forge-Index gelistet+10/10
Publisher-Identität verifiziert+0/30
Publisher: für diesen Eintrag ist kein Repository hinterlegt, daher kann `forge publish` die Inhaberschaft nicht automatisch prüfen. Nutze oben „Diesen Eintrag beanspruchen“ — Forge prüft diese Fälle von Hand.
Domain-Verifizierung+0/10
Für diesen Eintragstyp derzeit nicht verfügbar — die Domain-Prüfung läuft heute nur für npm-gestützte Pakete, diese Zeile lässt sich hier also noch nicht erreichen, unabhängig davon, was auf der Domain liegt.
Prompt-Injection-Scan · sauber+30/30
Obfuskations-/Exfiltrations-Scan · sauber+20/20
StatusVon der Community indexiert
PublisherNicht verifiziert
SignaturNicht signiert
Domain
Herkunft
AbhängigkeitenNicht auditiert
Tool-Oberfläche22 Tools · 1 privilegiert
Sicherheits-Scan✓ Saubervlive · vor 8 TWie gut funktioniert dieser Scan?
EvaluierungenKeine
Indexiert21. Juli 2026

Die Verifizierung bestätigt die Identität des Publishers (die Inhaberschaft am Repo), nicht die Sicherheit des Codes. Der Sicherheits-Scan deckt bekannte CVEs und verdächtige Installationsskripte ab.

Tools

22 Tools · 1 privilegiert
Live am Endpunkt des Anbieters beobachtet8d ago

Aus einem echten MCP-Handshake initialize → tools/list gegen den deklarierten Endpunkt gelesen. Es wurde nie ein Tool aufgerufen — tools/list ist der lesende Introspektionsaufruf, den das Protokoll dafür vorsieht. Es spiegelt wider, was der Server in diesem Moment angeboten hat; ein gehosteter Endpunkt ist an keine Version gebunden und kann sich ohne Ankündigung ändern.

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

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

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_boardGet one board by slug.

Get one board by slug.

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

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

ParameterTypBeschreibung
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.

ParameterTypBeschreibung
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.

ParameterTypBeschreibung
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.

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

Create a post on a board.

ParameterTypBeschreibung
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.

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

Delete a post by hiding it through the developer API.

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

List vote metadata for a post.

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

List comments for a post.

ParameterTypBeschreibung
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.

ParameterTypBeschreibung
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.

ParameterTypBeschreibung
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.

ParameterTypBeschreibung
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.

ParameterTypBeschreibung
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.

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

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

List shipped posts for a board.

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

Get read-only analytics for a board.

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

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

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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

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

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

22 von 22 Tools haben eine Beschreibung veröffentlicht.

Tool-Namen und -Beschreibungen stammen vom Publisher und werden wortgetreu als inerter Text angezeigt. Es sind die Zeichenketten, die ein MCP-Client an ein Modell übergibt, deshalb prüft Forge sie auf Prompt-Injection-Muster — jeder Befund erscheint oben beim Sicherheits-Scan. „Privilegiert“ ist ein Schlagwort-Treffer im Tool-Namen, keine Prüfung dessen, was das Tool tut: ein harmlos klingender Name kann trotzdem alles tun.

Über

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

Schlagwörter
mcp
Alternativen
Tool-Oberflächen werden verglichen…

Keine Abdeckung der Abhängigkeiten

Dieser Eintrag veröffentlicht kein npm-Paket, daher hat Forge keinen Abhängigkeitsbaum dafür. Das ist eine Lücke in der Abdeckung — keine Aussage, dass er keine Abhängigkeiten hat.