loading…
Search for a command to run...
loading…
Connect your AI assistant to Featuriq — the product feedback and roadmap tool for SaaS teams. Browse top feature requests, search feedback with natural language
Connect your AI assistant to Featuriq — the product feedback and roadmap tool for SaaS teams. Browse top feature requests, search feedback with natural language, update statuses, notify users when features ship, and manage your roadmap — all from your AI client. Authenticates via OAuth. No manual API key setup needed.
An MCP (Model Context Protocol) server for Featuriq — the product feedback and roadmap tool for PMs.
Connect your Featuriq workspace to any MCP-compatible AI client (Claude Desktop, Cursor, etc.) and query your feature requests, search customer feedback, run AI prioritization, update statuses, and notify users — all from natural language.
npx featuriq-mcp
npm install -g featuriq-mcp
featuriq-mcp
Log in to featuriq.io, go to Settings → API, and copy your API key.
export FEATURIQ_API_KEY=fq_live_xxxxxxxxxxxxxxxxxxxx
Or copy .env.example to .env and fill in your key if your client supports .env files.
| Variable | Required | Default | Description |
|---|---|---|---|
FEATURIQ_API_KEY |
Yes | — | Your Featuriq API key |
FEATURIQ_API_URL |
No | https://featuriq.io/v1 |
Override the API base URL |
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"featuriq": {
"command": "npx",
"args": ["featuriq-mcp"],
"env": {
"FEATURIQ_API_KEY": "fq_live_xxxxxxxxxxxxxxxxxxxx"
}
}
}
}
Add to your Cursor MCP settings:
{
"featuriq": {
"command": "npx featuriq-mcp",
"env": {
"FEATURIQ_API_KEY": "fq_live_xxxxxxxxxxxxxxxxxxxx"
}
}
}
get_top_requestsReturns the top feature requests sorted by vote count or revenue impact.
Parameters:
limit (number, default 10) — how many results to returnsort_by ("votes" | "revenue_impact", default "votes") — sort orderExample prompts:
search_feedbackSemantically searches all feedback posts using natural language — finds relevant results even when the exact words don't match.
Parameters:
query (string) — what to search forlimit (number, default 10) — max resultsExample prompts:
get_feature_feedbackReturns all comments and discussion for a specific feature request.
Parameters:
feature_id (string) — the feature's unique IDExample prompts:
get_prioritizationReturns an AI-prioritized list of features, scored across the factors you choose.
Parameters:
factors (array) — one or more of: "votes", "revenue", "effort", "strategic_fit"limit (number, default 10)Example prompts:
update_feature_statusUpdates the status of a feature request.
Parameters:
feature_id (string) — the feature's unique IDstatus ("planned" | "in_progress" | "shipped" | "closed")Example prompts:
notify_requestersSends a personalized notification to every user who voted for a feature.
Parameters:
feature_id (string) — which feature's voters to notifymessage (string) — the message to send (Featuriq personalizes it per recipient)Example prompts:
create_postCreates a new feedback post on a Featuriq board.
Parameters:
board_id (string) — which board to post totitle (string) — short title for the postdescription (string) — full descriptionExample prompts:
Resources are data sources that the AI can read at any time for context.
featuriq://roadmapThe current roadmap grouped by status: In Progress, Planned, and Recently Shipped.
Example prompts:
featuriq://changelogThe last 20 shipped features with ship dates and release notes.
Example prompts:
You: What are the top feature requests we haven't started yet, and which ones should we prioritize based on votes and revenue impact?
Claude: (calls
get_top_requestsandget_prioritization) Here are your top unstarted requests...
You: Great. Mark the #1 one as in_progress and notify everyone who voted for it.
Claude: (calls
update_feature_statusthennotify_requesters) Done! Status updated and 47 users notified.
git clone https://github.com/carlosalvite/featuriq-mcp
cd featuriq-mcp
npm install
npm run build
FEATURIQ_API_KEY=your_key node dist/index.js
To watch for changes during development:
npm run dev
MIT © Featuriq
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"featuriq": {
"command": "npx",
"args": []
}
}
}