# FeedBear — MCP server on mcp.ai > Connect your FeedBear account and use 10 tools for product management straight from your AI agent. Connect with your own API key. FeedBear helps product teams collect, organize, and act on customer feedback, feature requests, comments, and changelog updates. By: mcp.ai · official Page: https://mcp.ai/feedbear ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_feedbear?ms=1787293560000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/feedbear/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/feedbear/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/feedbear/skill.md Postman collection (v2.1): https://mcp.ai/feedbear/postman.json ## Tools - feedbear_add_item_comment(item_id: string, board_id: string, comment_body: string) — Publish a public comment on a FeedBear item as the API key creator. This action may notify post participants. - feedbear_create_board_item(title: string, content?: string, board_id: string, status_id?: string, is_private?: boolean, external_id?: string, comments_disabled?: boolean) — Create a feedback item on a FeedBear board without notifying users. - feedbear_delete_board_item(force?: boolean, item_id: string, board_id: string) — Permanently delete a FeedBear board item, with explicit force confirmation available for items with merged posts. - feedbear_get_board_item(item_id: string, board_id: string) — Get the full details of one feedback item from a FeedBear board. - feedbear_list_board_items(sort?: string, limit?: integer, search?: string, board_id: string, status_id?: string, next_cursor?: string) — List or search feedback items on a FeedBear board, with optional status and sort filters. Returns one page and a cursor for controlled continuation. - feedbear_list_boards(limit?: integer, next_cursor?: string, include_private?: boolean) — List boards in the connected FeedBear project, optionally including private team-only boards. - feedbear_list_changelog_entries(limit?: integer, next_cursor?: string) — List published FeedBear changelog entries newest first. Draft and scheduled entries are excluded. - feedbear_list_item_comments(limit?: integer, item_id: string, board_id: string, next_cursor?: string, include_private?: boolean) — List non-spam comments on a FeedBear item, newest first, including reply relationships. Returns one page and a cursor for controlled continuation. - feedbear_list_statuses() — List the statuses configured for the connected FeedBear project. - feedbear_update_board_item(title?: string, content?: string, item_id: string, board_id: string, status_id?: string, is_private?: boolean, external_id?: string, comments_disabled?: boolean) — Update selected fields of an existing FeedBear board item without notifying voters. ## Example prompts - "What can I do in FeedBear?" - "Show me a summary of my FeedBear account" ## Links Docs: https://mcp.ai/docs/mcps/feedbear Website: https://mcp.ai/mcps/feedbear