Skip to main content
Glama
featurepulse

featurepulse-mcp

Official
by featurepulse

FeaturePulse MCP Server

A Model Context Protocol (MCP) server for FeaturePulse feedback management. Connect FeaturePulse to any MCP-compatible AI client to query feature requests, analyze MRR impact, and manage your product roadmap through natural language.

Features

  • 5 Tools — Feature requests, stats, search, grouping, and status updates

  • MRR Data — Every request includes revenue impact from paying customers

  • Search & Filter — By status, priority, votes, or free-text search

  • Write Access — Update feature request status and priority directly

Related MCP server: Coolify MCP Server

Prerequisites

  • Node.js v18+

  • MCP Client — Claude Code, Claude Desktop, Cursor, Windsurf, or any MCP-compatible client

  • FeaturePulse API Key — Get one from your FeaturePulse dashboard under Project Settings

Quick Start with Claude Code

The fastest way to start — run npx directly through Claude Code. No clone, no build.

Step 1: Get Your API Key

  1. Go to your FeaturePulse dashboard

  2. Open Project Settings

  3. Copy your API Key

Step 2: Add the MCP Server

claude mcp add --transport stdio featurepulse \
  --scope user \
  --env FEATUREPULSE_API_KEY=<YOUR_API_KEY> \
  -- npx -y featurepulse-mcp

Replace <YOUR_API_KEY> with your API key.

Step 3: Restart Claude Code

Quit and reopen Claude Code for the new server to load.

Step 4: Verify

Ask Claude:

List the available FeaturePulse tools.

You should see 5 tools including list_feature_requests and get_project_stats.

Setup with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "featurepulse": {
      "command": "npx",
      "args": ["-y", "featurepulse-mcp"],
      "env": {
        "FEATUREPULSE_API_KEY": "your-api-key-here"
      }
    }
  }
}

Setup with Cursor / Windsurf

Add the same configuration to your editor's MCP settings file. Both Cursor and Windsurf support the MCP standard.

Available Tools

Tool

Type

Description

list_feature_requests

Read

Browse and filter feature requests with MRR data. Filter by status, priority; sort by votes, MRR, or date.

get_project_stats

Read

High-level overview — total requests, votes, MRR by status and priority. Top 10 by votes and MRR.

search_feedback

Read

Full-text search across feature request titles.

analyze_feedback_by_group

Read

Group requests by status or priority with aggregated counts and MRR.

update_feature_status

Write

Change the status, priority, or status message of a feature request.

Example Prompts

  • "What are the top feature requests by MRR?"

  • "Show me all pending high-priority requests"

  • "How much revenue is behind planned features?"

  • "Search for feedback about dark mode"

  • "Mark the dark mode request as in_progress"

  • "Give me a summary of feature requests grouped by status"

Configuration

Variable

Required

Description

FEATUREPULSE_API_KEY

Yes

Your project API key from the FeaturePulse dashboard

FEATUREPULSE_URL

No

API base URL (defaults to https://featurepul.se)

How It Works

AI Assistant  ←→  MCP Server (stdio/JSON-RPC)  ←→  FeaturePulse API (HTTPS)

The MCP server communicates over stdio using JSON-RPC. When your AI assistant calls a tool (e.g. list_feature_requests), the server makes authenticated requests to the FeaturePulse API and returns formatted results.

Development

cd mcp-server
npm install
npm run dev    # Run with tsx (auto-reload)
npm run build  # Compile TypeScript
npm start      # Run compiled version

Testing with MCP Inspector

npx @modelcontextprotocol/inspector npx featurepulse-mcp

License

MIT

Available Tools

6 tools
analyze_feedback_by_groupA

Analyze and group all feature requests by a chosen dimension (status or priority), returning counts, total votes, and aggregated MRR for each group. Ideal for generating summaries like 'how much revenue is waiting on planned features?' or 'what's the MRR impact of unaddressed high-priority requests?'

ParametersJSON Schema
NameRequiredDescriptionDefault
group_byYesDimension to group by
project_idNoProject UUID. Required if your API key has multiple projects. Use list_projects to see available projects.

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the read-only nature implicitly via 'Analyze and group' and specifies return values, but it does not explicitly state non-destructiveness, permissions, pagination, or edge cases like empty groups. This is moderate transparency, not minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the action and outputs, and includes relevant examples. Every part contributes to understanding the tool without unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is relatively simple with two params and no output schema. The description covers the return shape ('counts, total votes, and aggregated MRR') and use cases. Minor gaps exist around pagination and exact aggregation behavior, but the essential context is present.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with good descriptions for both parameters (group_by enum and project_id with usage note). The description reinforces group_by but adds little beyond the schema. Baseline 3 is appropriate when the schema handles the meaning well.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Analyze and group'), a clear resource ('all feature requests'), a defined dimension ('status or priority'), and states the outputs ('counts, total votes, and aggregated MRR'). This distinguishes it from siblings like list_feature_requests (which lists) and get_project_stats (which provides stats without grouping).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear usage context with examples ('Ideal for generating summaries like...') and the schema adds guidance for project_id (use list_projects when multiple projects). It does not explicitly state when not to use this tool or name alternatives, but the context is strong.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_project_statsA

Get a high-level statistical overview of your FeaturePulse project: total requests, votes, and MRR grouped by status and priority. Includes top-10 requests by votes and by revenue impact (MRR). Use this before diving into individual requests to understand the overall landscape.

ParametersJSON Schema
NameRequiredDescriptionDefault
project_idNoProject UUID. Required if your API key has multiple projects. Use list_projects to see available projects.

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It clearly states this is a read-only overview ('Get', 'statistical overview') and lists the output contents. However, it does not explicitly disclose potential limitations like performance implications, data freshness, or that no permanent changes are made. While read-only is self-evident from the verb, a more explicit note about side effects or permissions would strengthen transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the tool's purpose and key deliverables, then closes with a guidance sentence. Every phrase earns its place—no filler, no repetition of schema content, and no extraneous details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool is a simple statistical overview with one optional parameter and no output schema, the description adequately communicates both input and expected output. It covers the high-level contents and even provides a usage sequence relative to sibling tools. The only minor gap is not mentioning error scenarios or the exact format of the top-10 lists, but these are not critical for a tool of this simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides 100% coverage for the only parameter (project_id) with a useful description including optionality and cross-reference to list_projects. The tool description itself adds no further parameter detail, but since the schema already fully explains the parameter, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb ('Get') and a concrete resource ('high-level statistical overview of your FeaturePulse project'). It enumerates exactly what is included (total requests, votes, MRR grouped by status/priority, top-10 lists), making the tool's function unambiguous and clearly distinct from the sibling tools which operate on individual items.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool: 'Use this before diving into individual requests to understand the overall landscape.' This gives clear contextual guidance. It does not explicitly name alternatives or exclusions, but the sibling list and the phrase 'before diving into individual requests' imply a contrast with detailed-level tools like list_feature_requests, which is sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_feature_requestsA

List feature requests from FeaturePulse. Supports filtering by status and priority, full-text search, and sorting. Each result includes MRR data (revenue at risk) and vote breakdown so you can prioritize development by business impact.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoSearch term to filter by title
limitNoMax results to return (1–200, default 50)
offsetNoPagination offset (default 0)
statusNoFilter by status
sort_byNoSort order: vote_count (most votes first), mrr (highest revenue impact first), created_at (newest first). Default: vote_count
priorityNoFilter by priority
project_idNoProject UUID. Required if your API key has multiple projects. Use list_projects to see available projects.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the transparency burden. It mentions return contents (MRR data, vote breakdown) but does not explicitly state read-only behavior, auth requirements, or pagination behavior. There is also a slight inconsistency: description mentions 'full-text search' while the schema says 'filter by title'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the main purpose, and each sentence adds meaningful information. There is no fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the 7 parameters, high schema coverage, and no output schema, the description adequately conveys the tool's purpose and key output highlights (MRR, votes). It doesn't explicitly address when to choose this over search_feedback, but it provides enough context for typical use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so each parameter is already described. The description adds context about MRR and vote breakdown but doesn't provide additional detail on parameter formatting or behavior beyond the schema. The 'q' parameter description is somewhat ambiguous against 'full-text search'.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists feature requests from FeaturePulse, which is a specific verb and resource. It lists key capabilities (filtering, full-text search, sorting) but does not explicitly differentiate from sibling tools like search_feedback.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context by stating the tool helps prioritize development by business impact, implying it should be used for sorting and reviewing feature requests. It does not explicitly mention alternatives or when not to use it, but the context is sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_projectsA

List all projects accessible with your API key. Use this to find the project_id needed for other tools when you have multiple projects.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description states a non-mutating action ('List') and notes API key access, but does not disclose additional behaviors like pagination, error handling, or return structure beyond implying project IDs.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core action, no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list tool with no parameters, the description gives a clear purpose and usage context. It doesn't enumerate return fields but implies project_id, which is sufficient for the stated use case.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so the baseline is 4. The description adds value by explaining that the output provides project_id for other tools.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the verb 'List' with resource 'projects' and qualifies it with 'accessible with your API key', distinguishing it from sibling tools like list_feature_requests and get_project_stats.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly advises to use this tool to find the project_id needed for other tools when multiple projects exist, providing clear context. It doesn't name alternatives but the purpose relative to other tools is evident.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_feedbackA

Search feature requests by a text query. Returns the most relevant matching requests with their vote counts and MRR. Useful for finding related feedback before opening a new request or exploring a specific feature area.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesSearch term
limitNoMax results (default 20)
project_idNoProject UUID. Required if your API key has multiple projects. Use list_projects to see available projects.

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of disclosing behavior. It states that results are 'most relevant matching requests' and includes vote counts and MRR, implying a read-only search with relevance ranking. However, it does not mention potential side effects, auth requirements, or behavior such as pagination or default project scoping, which would increase transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the core action and followed by the key output and use cases. Every word adds value, with no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description adequately covers the return content ('vote counts and MRR') and the use case. It does not describe the response structure in detail, but for a search tool with three well-documented parameters, this is sufficient context for an agent to select and invoke the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description does not add new meaning beyond what the schema already provides for parameters like 'q' and 'limit.' It does not explain parameter interactions or edge cases, but the schema itself is descriptive, so no major gap exists.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Search feature requests by a text query.' It specifies the resource (feature requests) and the action (search), and adds detail about returning 'vote counts and MRR,' which distinguishes it from sibling tools like list_feature_requests that list all requests rather than searching.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool: 'useful for finding related feedback before opening a new request or exploring a specific feature area.' It implies when to use it but does not explicitly exclude alternatives or mention when not to use it, hence a 4 rather than 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_feature_statusA

Update the status or priority of a feature request. Use this to move requests through the workflow (e.g., pending → approved → in_progress → completed) or to set/change priority.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoNew status
priorityNoNew priority
project_idNoProject UUID. Required if your API key has multiple projects. Use list_projects to see available projects.
status_messageNoOptional message shown to users explaining the status change
feature_request_idYesUUID of the feature request to update

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden for behavioral transparency. It discloses that status updates follow a workflow path, but it does not mention side effects, permissions, validation rules, or what response the agent should expect (e.g., success/failure structure). The phrase 'status or priority' also understates that both can be updated simultaneously per the schema, leaving ambiguity about transactional behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the action verb and resource. It includes the most relevant usage example without wasteful elaboration. Every sentence contributes value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 5 parameters (1 required, 2 enums) and no output schema. The description covers the core purpose and usage context, but it does not explain return values, behavior on partial updates, or project_id requirements beyond what the schema already states. It is adequate for an agent to invoke, but misses additional behavioral context like response handling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds minimal meaning beyond the schema: it mentions 'move requests through the workflow' and 'set/change priority,' which mirrors the schema's status and priority enums. It does not clarify the interplay between status and priority or the purpose of status_message, but the schema descriptions already cover each parameter adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Update the status or priority of a feature request' with a specific verb and resource. It distinguishes itself from sibling tools (all read/analysis tools) by being the sole mutation tool, and the workflow example (pending → approved → in_progress → completed) reinforces its purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use this to move requests through the workflow' and 'or to set/change priority,' giving clear context on when to apply the tool. It does not explicitly name alternatives or exclusions, but the sibling list (list_*, search_*, analyze_*) makes it obvious this is the only update tool, providing implicit differentiation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updatesv1.0.2
    • First observedanalyze_feedback_by_group
    • First observedget_project_stats
    • First observedlist_feature_requests
    • First observedlist_projects
    • First observedsearch_feedback
    • First observedupdate_feature_status

TDQS

A3.8/5.0
Disambiguation2/5

list_feature_requests and search_feedback both support text search, making it unclear which to use for finding requests. Similarly, get_project_stats and analyze_feedback_by_group both provide aggregated MRR and vote data by status/priority, overlapping in purpose.

Naming Consistency4/5

All tool names follow a consistent verb_noun pattern with snake_case, but the resource is referred to as both 'feature_requests' and 'feedback' (e.g., list_feature_requests vs search_feedback), and 'feature_status' is not a clear noun. This is a minor inconsistency that could cause confusion.

Tool Count5/5

Six tools is a well-scoped number for a feature request management server, covering listing, searching, analysis, and updates without redundancy.

Completeness3/5

The set lacks a create_feature_request or delete_feature_request tool, which is a notable gap in the lifecycle. However, it covers listing, searching, analysis, and status updates, so agents can work around the missing creation.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/featurepulse/featurepulse-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server