Fider MCP Server

A Model Context Protocol (MCP) server that provides tools to interact with [Fider](https://getfider.com/) - an open-source customer feedback tool.

Local serverstdioPython

What is the Fider MCP MCP server?

Fider mcp mcp server connects Fider MCP to AI assistants that speak the Model Context Protocol. A Model Context Protocol (MCP) server that provides tools to interact with Fider - an open-source customer feedback tool.

What Fider MCP does

A Model Context Protocol (MCP) server that provides tools to interact with Fider - an open-source customer feedback tool.

Key capabilities

  • list_posts — - List posts with filtering options (search, view, limit, tags)
  • get_post — - Retrieve a specific post by number
  • create_post — - Create new posts (requires authentication)
  • edit_post — - Edit existing posts (requires collaborator/admin role)
  • delete_post — - Delete posts (requires admin role)
  • respond_to_post — - Change post status (open, planned, started, completed, declined, duplicate)
  • list_comments — - List comments for a specific post
  • add_comment — - Add a comment to a post (requires authentication)

Tools it exposes

Once connected, the assistant can call these 14 tools directly:

  • list_posts — Parameters: - query (string) - Search keywords - view (string) - Filter and order options: all, recent, my-votes, most-wanted, most-discussed, planned
  • get_post — Parameters: - number (integer, required) - The post number to retrieve
  • create_post — Parameters: - title (string, required) - The title of the post - description (string) - The description of the post
  • edit_post — Parameters: - number (integer, required) - The post number to edit - title (string, required) - The new title of the post - description (string) - The new
  • delete_post — Parameters: - number (integer, required) - The post number to delete - reason (string) - Reason for deletion
  • respond_to_post — Respond to a post by changing its status (requires collaborator/admin role)
  • list_comments — Parameters: - number (integer, required) - The post number to get comments for
  • add_comment — Parameters: - number (integer, required) - The post number to comment on - content (string, required) - The comment content
  • update_comment — Parameters: - post_number (integer, required) - The post number - comment_id (integer, required) - The comment ID to update - content (string, required) - The
  • delete_comment — Delete a comment (requires authentication and ownership/admin)
  • list_tags — The list_tags tool exposed by this server
  • create_tag — Parameters: - name (string, required) - The tag name - color (string, required) - The tag color (hex format, e.g., #FF0000) - isPublic (boolean) - Whether the
  • update_tag — Parameters: - slug (string, required) - The tag slug to update - name (string, required) - The new tag name - color (string, required) - The new tag color (hex
  • delete_tag — Parameters: - slug (string, required) - The tag slug to delete

Installing the fider mcp mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply 3 environment variables: FIDER_BASE_URL, FIDER_API_KEY, FIDER_URL. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Fider MCP sits in that group, and the shape of its toolset — list_posts, get_post, create_post among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 14 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Fider MCP.
  • Maintained by ringostat, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the fider mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
list_postsParameters: - query (string) - Search keywords - view (string) - Filter and order options: all, recent, my-votes, most-wanted, most-discussed, planned, started, completed, declined, trending - limit (integer) - Number of
get_postParameters: - number (integer, required) - The post number to retrieve
create_postParameters: - title (string, required) - The title of the post - description (string) - The description of the post
edit_postParameters: - number (integer, required) - The post number to edit - title (string, required) - The new title of the post - description (string) - The new description of the post
delete_postParameters: - number (integer, required) - The post number to delete - reason (string) - Reason for deletion
respond_to_postRespond to a post by changing its status (requires collaborator/admin role).
list_commentsParameters: - number (integer, required) - The post number to get comments for
add_commentParameters: - number (integer, required) - The post number to comment on - content (string, required) - The comment content
update_commentParameters: - post_number (integer, required) - The post number - comment_id (integer, required) - The comment ID to update - content (string, required) - The new comment content
delete_commentDelete a comment (requires authentication and ownership/admin).
list_tagsThe list_tags tool exposed by this server.
create_tagParameters: - name (string, required) - The tag name - color (string, required) - The tag color (hex format, e.g., #FF0000) - isPublic (boolean) - Whether the tag is public (default: true)
update_tagParameters: - slug (string, required) - The tag slug to update - name (string, required) - The new tag name - color (string, required) - The new tag color (hex format, e.g., #FF0000) - isPublic (boolean) - Whether the ta
delete_tagParameters: - slug (string, required) - The tag slug to delete

Configuration

VariableDescriptionRequired
FIDER_BASE_URLEndpoint or connection string the server talks to.Yes
FIDER_API_KEYCredential the server authenticates with.Yes
FIDER_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Fider MCP to list posts.
  • Use Fider MCP to get post.
  • Use Fider MCP to create post.

Frequently asked questions

It connects Fider MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (list_posts, get_post, create_post, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Fider MCP directly.