Hosted MCP
Connect an AI assistant to your feedback loop
FeatureJet exposes a hosted Streamable HTTP MCP server at https://mcp.featurejet.com/mcp. It proxies the public API with the same organization-scoped bearer key, so Claude Code or Cursor can create requests, update statuses, inspect comments, and pull analytics without a local server.
Endpoint and auth
https://mcp.featurejet.com/mcpAuthorization: Bearer fj_live_REPLACE_MEKeys are per organization and scoped to that organization. Unknown and cross-org boards or posts behave like the API and return not found. Keep real keys out of committed config files, public terminals, and shared shell history.
Tools
Use ping for reachability checks; the board tools manage the same organization data exposed by the public API, from request intake to shipped updates.
Claude Code
claude mcp add-json featurejet '{"type":"http","url":"https://mcp.featurejet.com/mcp","headers":{"Authorization":"Bearer fj_live_REPLACE_ME"}}'{
"mcpServers": {
"featurejet": {
"type": "streamable-http",
"url": "https://mcp.featurejet.com/mcp",
"headers": {
"Authorization": "Bearer fj_live_REPLACE_ME"
}
}
}
}Cursor
Add a remote MCP server in Cursor settings and paste this into the generated mcp.json file.
{
"mcpServers": {
"featurejet": {
"url": "https://mcp.featurejet.com/mcp",
"headers": {
"Authorization": "Bearer fj_live_REPLACE_ME"
}
}
}
}Building an application integration? Use the public API reference with the official Python and Node.js SDKs.