MCP Agent Token

Generate and use developer tokens for Featurama MCP access.

Generate token

Go to Settings and click Generate Token.

Token format: fm_dev_...

Copy it immediately. It is only shown once.

MCP endpoint

Use the Featurama app endpoint:

  • https://your-app-origin/mcp

For local development:

  • http://localhost:3007/mcp

.mcp.json example

{
  "mcpServers": {
    "featurama": {
      "type": "http",
      "url": "http://localhost:3007/mcp",
      "headers": {
        "Authorization": "Bearer fm_dev_your_token"
      }
    }
  }
}

Available tools

ToolDescriptionRequired args
listProjectsList all your projects
getProjectGet project details including API keyprojectId
createProjectCreate a new projectname, optional technology
listFeatureRequestsList requests with filters and paginationprojectId, optional status, page, pageSize
createFeatureRequestCreate a feature requestprojectId, title, description
updateFeatureRequestStatusChange request statusprojectId, requestId, status
getDashboardStatsGet total projects, requests, and votes
getRecentRequestsGet recent requests across all projectsoptional limit

Valid status values: Requested, Roadmap, InProgress, Done, Declined.

Valid technology values: expo, reactNative, flutter, swift, android, maui.

Requests created via MCP are auto-approved and start with status Roadmap. Changing a request's status via MCP also auto-approves pending requests (except when declining).

Security

  • Do not commit tokens to git.
  • Revoke compromised tokens in Settings.
  • Use one token per agent/client when possible.