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
| Tool | Description | Required args |
|---|---|---|
listProjects | List all your projects | — |
getProject | Get project details including API key | projectId |
createProject | Create a new project | name, optional technology |
listFeatureRequests | List requests with filters and pagination | projectId, optional status, page, pageSize |
createFeatureRequest | Create a feature request | projectId, title, description |
updateFeatureRequestStatus | Change request status | projectId, requestId, status |
getDashboardStats | Get total projects, requests, and votes | — |
getRecentRequests | Get recent requests across all projects | optional 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.