Skip to main content
FeedPin exposes an MCP server at https://feedpin.dev/api/mcp using HTTP Streamable Transport (JSON-RPC 2.0).

Authentication

Include your API key as a Bearer token:
Authorization: Bearer YOUR_API_KEY

Available Tools

list_projects

List all projects with active feedback counts. Parameters: None Returns: Array of projects with id, domain, name, and active_feedbacks count.

get_feedbacks

Get feedbacks for a specific project. Parameters:
NameTypeRequiredDescription
project_idstringProject UUID
statusstring-active (default) or resolved

resolve_feedback

Mark a feedback as resolved. Parameters:
NameTypeRequired
feedback_idstring

export_markdown

Export all active feedbacks for a project as structured markdown. Parameters:
NameTypeRequired
project_idstring

add_site

Create a new project and get the installation snippet. Parameters:
NameTypeRequiredDescription
domainstringWebsite domain (e.g. “mysite.com”)
Returns: Project ID and the HTML snippet to install.

get_snippet

Get the installation snippet for an existing project. Parameters:
NameTypeRequired
project_idstring
Returns: The HTML script tag to install on the website.