@feedboon/mcp-server
v0.1.0
Published
MCP server for Feedboon — AI-first visual feedback tool. Integrate feedback data with Claude Code, Cursor, and Windsurf.
Maintainers
Readme
@feedboon/mcp-server
MCP server for Feedboon — AI-first visual feedback tool for websites.
Connect your Feedboon feedback data to Claude Code, Cursor, Windsurf, and other MCP-compatible AI assistants.
Prerequisites
- Node.js 20+
- A Feedboon account with an API key
Quick Setup
Claude Code
claude mcp add feedboon -e FEEDBOON_API_KEY=fbk_your_key -- npx -y @feedboon/mcp-serverCursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"feedboon": {
"command": "npx",
"args": ["-y", "@feedboon/mcp-server"],
"env": {
"FEEDBOON_API_KEY": "fbk_your_key_here"
}
}
}
}Windsurf
Add to your MCP configuration:
{
"mcpServers": {
"feedboon": {
"command": "npx",
"args": ["-y", "@feedboon/mcp-server"],
"env": {
"FEEDBOON_API_KEY": "fbk_your_key_here"
}
}
}
}Global Install (Alternative)
npm install -g @feedboon/mcp-server
FEEDBOON_API_KEY=fbk_xxx feedboon-mcpEnvironment Variables
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| FEEDBOON_API_KEY | Yes | — | Your API key from app.feedboon.com/account/api-keys |
| FEEDBOON_API_URL | No | https://api.feedboon.com | Custom API URL (for self-hosted or local dev) |
Available Tools
| Tool | Description |
|------|-------------|
| list_projects | List all projects accessible to the authenticated user |
| list_feedback | List feedback items for a project with optional status/priority filters |
| get_feedback | Get detailed feedback including screenshot, metadata, and console errors |
| update_feedback | Update feedback status, priority, title, or description |
| add_comment | Add a comment to a feedback item |
Getting Your API Key
- Sign in at app.feedboon.com
- Go to Account > API Keys
- Click Create API Key
- Copy the
fbk_...value (shown only once)
License
MIT
