MCP (Model Context Protocol) server for Fider API integration
Project description
MCP Server for Fider
A Model Context Protocol (MCP) server that provides tools to interact with Fider - an open-source customer feedback tool.
Features
This MCP server provides the following tools:
- 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)
Installation
Using uvx (recommended - no installation needed!)
# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh
# Run directly from PyPI (once published)
uvx --from mcp-fider==2025.06.27.160000 --refresh-package mcp-fider mcp-fider
# Or run from GitHub directly
uvx --from git+https://github.com/ringostat/fider-mcp.git mcp-fider
Using pip (if you prefer traditional method)
# Clone the repository
git clone https://github.com/ringostat/fider-mcp.git
cd fider-mcp
# Create a virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install the package
pip install -e .
Configuration
The server requires the following environment variables:
FIDER_BASE_URLorFIDER_URL- Your Fider instance URL (e.g.,https://feedback.example.com)FIDER_API_KEY- Optional API key for authentication (required for creating, editing, and deleting posts)
Getting a Fider API Key
- Log in to your Fider instance as an administrator
- Go to Settings → API
- Generate a new API key
- Copy the key and set it as the
FIDER_API_KEYenvironment variable
Usage
With Claude Desktop
-
Add the server to your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json -
Add the following configuration:
{
"mcpServers": {
"fider": {
"command": "uvx",
"args": ["--from", "mcp-fider==2025.06.27.160000",
"--refresh-package", "mcp-fider", "mcp-fider"],
"env": {
"FIDER_BASE_URL": "https://your-fider-instance.com",
"FIDER_API_KEY": "your-api-key-here"
}
}
}
}
- Restart Claude Desktop
Running Directly
You can also run the server directly for testing:
# Set environment variables
export FIDER_BASE_URL="https://your-fider-instance.com"
export FIDER_API_KEY="your-api-key-here"
# Run from PyPI (once published)
uvx --from mcp-fider==2025.06.27.160000 --refresh-package mcp-fider mcp-fider
# Or run from GitHub directly
uvx --from git+https://github.com/ringostat/fider-mcp.git mcp-fider
Development
Running Tests
uv run pytest
Code Formatting
uv run black .
uv run ruff check .
Publishing to PyPI
# Build the package
uv build
# Publish to PyPI
uv publish
Tool Descriptions
list_posts
List posts from Fider with optional filtering.
Parameters:
query(string) - Search keywordsview(string) - Filter and order options: all, recent, my-votes, most-wanted, most-discussed, planned, started, completed, declined, trendinglimit(integer) - Number of entries to return (1-100, default: 30)tags(string) - Comma-separated list of tags to filter by
get_post
Get a specific post by its number.
Parameters:
number(integer, required) - The post number to retrieve
create_post
Create a new post (requires authentication).
Parameters:
title(string, required) - The title of the postdescription(string) - The description of the post
edit_post
Edit an existing post (requires collaborator/admin role).
Parameters:
number(integer, required) - The post number to edittitle(string, required) - The new title of the postdescription(string) - The new description of the post
delete_post
Delete a post (requires admin role).
Parameters:
number(integer, required) - The post number to deletereason(string) - Reason for deletion
respond_to_post
Respond to a post by changing its status (requires collaborator/admin role).
Parameters:
number(integer, required) - The post number to respond tostatus(string, required) - The new status: open, planned, started, completed, declined, duplicatetext(string) - Optional description of the status changeoriginalNumber(integer) - Required when status is 'duplicate' - the post number to merge into
Troubleshooting
Connection Issues
- Ensure your Fider instance is accessible from your network
- Check that the
FIDER_BASE_URLis correct and doesn't have a trailing slash - Verify your API key is valid if you're getting authentication errors
Permission Errors
- Creating, editing, and deleting posts requires proper authentication
- Ensure your API key has the necessary permissions for the operations you're trying to perform
License
MIT License - see LICENSE file for details
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_fider-2025.6.27.160000.tar.gz.
File metadata
- Download URL: mcp_fider-2025.6.27.160000.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
053ad89962f8d9b4e8707fb2d660f7e96baf5dd5fe96491ca0bdee0a372d374e
|
|
| MD5 |
f7b00f27a6264f1538f329eb72bdc8d1
|
|
| BLAKE2b-256 |
fe097bb9a499ca527067dc0252d8df229555312dc7d06021678feef94ced3a47
|
File details
Details for the file mcp_fider-2025.6.27.160000-py3-none-any.whl.
File metadata
- Download URL: mcp_fider-2025.6.27.160000-py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1025cf6dfe6eb0fc7e605794620c95d006746b5911512f815fd53a0d2eb785da
|
|
| MD5 |
c4c901469d7ff2fdc029df1015fd8b10
|
|
| BLAKE2b-256 |
7dfe2725ef4f32eb9ccecaa0bc4c627eded6bb057ccfa99d24c7410dbafe88ec
|