{
  "info": {
    "name": "FeedBear — mcp.ai",
    "description": "REST API for the FeedBear MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/feedbear",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "feedbear_add_item_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/item/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "item",
            "comment"
          ]
        },
        "description": "Publish a public comment on a FeedBear item as the API key creator. This action may notify post participants.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"board_id\": \"\",\n  \"comment_body\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_create_board_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/board/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "board",
            "item"
          ]
        },
        "description": "Create a feedback item on a FeedBear board without notifying users.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"content\": \"\",\n  \"board_id\": \"\",\n  \"status_id\": \"\",\n  \"is_private\": false,\n  \"external_id\": \"\",\n  \"comments_disabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_delete_board_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/board/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "board",
            "item"
          ]
        },
        "description": "Permanently delete a FeedBear board item, with explicit force confirmation available for items with merged posts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"force\": false,\n  \"item_id\": \"\",\n  \"board_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_get_board_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/board/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "board",
            "item"
          ]
        },
        "description": "Get the full details of one feedback item from a FeedBear board.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"board_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_list_board_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/board/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "board",
            "items"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"search\": \"\",\n  \"board_id\": \"\",\n  \"status_id\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_list_boards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/boards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "boards"
          ]
        },
        "description": "List boards in the connected FeedBear project, optionally including private team-only boards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\",\n  \"include_private\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_list_changelog_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/changelog/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "changelog",
            "entries"
          ]
        },
        "description": "List published FeedBear changelog entries newest first. Draft and scheduled entries are excluded.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_list_item_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/item/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "item",
            "comments"
          ]
        },
        "description": "List non-spam comments on a FeedBear item, newest first, including reply relationships. Returns one page and a cursor for controlled continuation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"item_id\": \"\",\n  \"board_id\": \"\",\n  \"next_cursor\": \"\",\n  \"include_private\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_list_statuses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/statuses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "statuses"
          ]
        },
        "description": "List the statuses configured for the connected FeedBear project.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "feedbear_update_board_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/board/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "board",
            "item"
          ]
        },
        "description": "Update selected fields of an existing FeedBear board item without notifying voters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"content\": \"\",\n  \"item_id\": \"\",\n  \"board_id\": \"\",\n  \"status_id\": \"\",\n  \"is_private\": false,\n  \"external_id\": \"\",\n  \"comments_disabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}