# FeedBear — how to use (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.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_feedbear?ms=1787295840000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `feedbear_add_item_comment`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/feedbear`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/feedbear/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/feedbear/add/item/comment` — Publish a public comment on a FeedBear item as the API key creator. This action may notify post participants.
  - body: { item_id: string, board_id: string, comment_body: string }
- `POST https://api.mcp.ai/api/feedbear/create/board/item` — Create a feedback item on a FeedBear board without notifying users.
  - body: { title: string, content?: string, board_id: string, status_id?: string, is_private?: boolean, external_id?: string, comments_disabled?: boolean }
- `POST https://api.mcp.ai/api/feedbear/delete/board/item` — Permanently delete a FeedBear board item, with explicit force confirmation available for items with merged posts.
  - body: { force?: boolean, item_id: string, board_id: string }
- `POST https://api.mcp.ai/api/feedbear/get/board/item` — Get the full details of one feedback item from a FeedBear board.
  - body: { item_id: string, board_id: string }
- `POST https://api.mcp.ai/api/feedbear/list/board/items` — List or search feedback items on a FeedBear board, with optional status and sort filters. Returns one page and a cursor for controlled continuation.
  - body: { sort?: string, limit?: integer, search?: string, board_id: string, status_id?: string, next_cursor?: string }
- `POST https://api.mcp.ai/api/feedbear/list/boards` — List boards in the connected FeedBear project, optionally including private team-only boards.
  - body: { limit?: integer, next_cursor?: string, include_private?: boolean }
- `POST https://api.mcp.ai/api/feedbear/list/changelog/entries` — List published FeedBear changelog entries newest first. Draft and scheduled entries are excluded.
  - body: { limit?: integer, next_cursor?: string }
- `POST https://api.mcp.ai/api/feedbear/list/item/comments` — List non-spam comments on a FeedBear item, newest first, including reply relationships. Returns one page and a cursor for controlled continuation.
  - body: { limit?: integer, item_id: string, board_id: string, next_cursor?: string, include_private?: boolean }
- `POST https://api.mcp.ai/api/feedbear/list/statuses` — List the statuses configured for the connected FeedBear project.
- `POST https://api.mcp.ai/api/feedbear/update/board/item` — Update selected fields of an existing FeedBear board item without notifying voters.
  - body: { title?: string, content?: string, item_id: string, board_id: string, status_id?: string, is_private?: boolean, external_id?: string, comments_disabled?: boolean }

## Example prompts
- "What can I do in FeedBear?"
- "Show me a summary of my FeedBear account"

## More
- Page: https://mcp.ai/feedbear
- Agent spec (llms.txt): https://mcp.ai/feedbear/llms.txt
- Postman collection: https://mcp.ai/feedbear/postman.json
