featurejet-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@featurejet-mcplist the top 5 planned features by votes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FeatureJet MCP Server
The official Model Context Protocol server for FeatureJet, a hosted customer-feedback board with verified-email voting, a public roadmap, and a changelog.
It lets an MCP-compatible agent — Claude, Cursor, Codex, or anything else that speaks the protocol — read a board and act on it: list and search posts, read votes and analytics, file feature requests, and pull the top-voted planned item to work on it.
Hosted endpoint
Most people should use the hosted server rather than run this themselves:
https://mcp.featurejet.com/mcpTransport is Streamable HTTP with Bearer authentication. API keys are minted in
the FeatureJet dashboard and begin with fj_live_.
Example client configuration:
{
"mcpServers": {
"featurejet": {
"url": "https://mcp.featurejet.com/mcp",
"headers": {
"Authorization": "Bearer fj_live_REPLACE_ME"
}
}
}
}Full setup instructions live at featurejet.com/docs/mcp.
Related MCP server: shipmail-mcp
Running it yourself
uv sync
uv run featurejet-mcpConfiguration is read from the environment:
Variable | Default | Purpose |
|
| Base URL of the FeatureJet API |
|
| Port to listen on |
|
| Interface to bind |
|
| Validate the |
Point FEATUREJET_API_BASE at https://api.featurejet.com to talk to
production.
How it works
This server is a thin, typed proxy over FeatureJet's public REST API. Every tool it exposes maps to an endpoint documented at featurejet.com/docs/api, so anything an agent can do here can also be done with the Python and Node.js SDKs or a plain HTTP client.
Two deliberate constraints:
The key's scope decides whether a human confirms. These are two different grants, and you choose which one an agent holds:
A propose-scoped key cannot change a post's status directly. It calls
propose-status, nothing changes on the public board, and no voter is notified until a human confirms in the dashboard. That confirmation applies the change through the same path as a direct admin edit.A write-scoped key can change status immediately, including to statuses that notify voters. That is the point of the scope, and it is the one to withhold from an agent you don't want announcing things to your users.
If you want an agent that can do the work and attach its receipts but cannot tell your customers something shipped, give it a propose-scoped key.
The API key scopes what is reachable. The server holds no ambient authority of its own; it forwards the caller's key and nothing more.
Development
uv sync
uv run pytest
uv run ruff checkFeedback
We run our own roadmap on FeatureJet. Requests and bugs are welcome at feedback.featurejet.com, or open an issue here.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/featurejet/featurejet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server