Skip to main content
FeedPin has a native MCP server that lets AI coding agents read feedback, list projects, and resolve issues — all without leaving your editor.

Supported Agents

AgentStatusSetup
Claude Code✅ NativeOne command
Cursor✅ SupportedConfig file
Windsurf✅ SupportedConfig file

Claude Code

claude mcp add feedpin \
  --transport http \
  --url "https://feedpin.dev/api/mcp" \
  --header "Authorization: Bearer YOUR_API_KEY"
Find your API key in Settings → API & MCP section.

Cursor

Add to your .cursor/mcp.json:
{
  "mcpServers": {
    "feedpin": {
      "transport": "http",
      "url": "https://feedpin.dev/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Available MCP Tools

Once connected, your AI agent has access to:
ToolDescription
list_projectsList all your sites with feedback counts
get_feedbacksGet active or resolved feedbacks for a project
resolve_feedbackMark a feedback as resolved
export_markdownExport feedbacks as structured markdown
add_siteCreate a new project and get the installation snippet
get_snippetGet the installation snippet for an existing project

Example Usage

Ask your AI agent:
  • “What feedback is pending on my sites?”
  • “Show me the active feedbacks for mysite.com”
  • “Resolve feedback #abc123”
  • “Export all feedbacks for mysite.com as markdown”
  • “Add a new site example.com and give me the snippet”