MCP server for Featurebase API - manage posts and comments
Featurebase MCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP server for Featurebase API - manage posts and comments.
A Model Context Protocol (MCP) server that provides access to the Featurebase API for managing posts and comments.
Once Featurebase MCP is connected, these are the calls the assistant has available:
Required — The Required tool exposed by this serverOptional — 1. In your Claude Desktop configuration (recommended) 2. Export in your shell: export FEATUREBASE_API_KEY="your-api-key-here" 3. When running thePosts — The Posts tool exposed by this serverlist_posts — Parameters: - id: Find specific post by ID - q: Search posts by title or content - category: Filter by board names (array) - status: Filter by statuscreate_post — Parameters: - title (required): Post title (min 2 characters) - category (required): Board/category name - content: Post content - email: Submitter'supdate_post — Parameters: - id (required): Post ID to update - title: New title - content: New content - status: New status - commentsAllowed: Enable/disabledelete_post — The delete_post tool exposed by this serverget_post_upvoters — Parameters: - submissionId (required): Post ID - page: Page number (default: 1) - limit: Results per page (default: 10, max: 100)add_upvoter — The add_upvoter tool exposed by this serverresolve_post_slug — Convert a post slug to post ID and get complete post detailsget_similar_submissions — Parameters: - query (required): Search query text to find similar submissions - locale: Locale for search (default: "en")Comments — The Comments tool exposed by this serverYou will need 3 environment variables: FEATUREBASE_API_KEY, FEATUREBASE_ORG_URL, FEATUREBASE_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Installation goes through your MCP client rather than a global install: point it at featurebase-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
This sits in the team communication group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Featurebase MCP's toolset — Required, Optional, Posts and 11 more — is a fair guide to whether it matches your workflow. It is maintained by marcinwyszynski; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Featurebase MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| Required | The Required tool exposed by this server. |
| Optional | 1. In your Claude Desktop configuration (recommended) 2. Export in your shell: export FEATUREBASE_API_KEY="your-api-key-here" 3. When running the server: FEATUREBASE_API_KEY="your-api-key-here" npx featurebase-mcp |
| Posts | The Posts tool exposed by this server. |
| list_posts | Parameters: - id: Find specific post by ID - q: Search posts by title or content - category: Filter by board names (array) - status: Filter by status IDs (array) - sortBy: Sort order (e.g., "date:desc", "upvotes:desc") - |
| create_post | Parameters: - title (required): Post title (min 2 characters) - category (required): Board/category name - content: Post content - email: Submitter's email - authorName: Name for new users - tags: Array of tag names - co |
| update_post | Parameters: - id (required): Post ID to update - title: New title - content: New content - status: New status - commentsAllowed: Enable/disable comments - category: New category - sendStatusUpdateEmail: Email upvoters ab |
| delete_post | The delete_post tool exposed by this server. |
| get_post_upvoters | Parameters: - submissionId (required): Post ID - page: Page number (default: 1) - limit: Results per page (default: 10, max: 100) |
| add_upvoter | The add_upvoter tool exposed by this server. |
| resolve_post_slug | Convert a post slug to post ID and get complete post details. |
| get_similar_submissions | Parameters: - query (required): Search query text to find similar submissions - locale: Locale for search (default: "en") |
| Comments | The Comments tool exposed by this server. |
| get_comments | Parameters: - submissionId: Post ID or slug (required if no changelogId) - changelogId: Changelog ID or slug (required if no submissionId) - privacy: Filter by privacy ("public", "private", "all") - inReview: Filter for |
| create_comment | Parameters: - content (required): Comment content - submissionId: Post ID or slug (required if no changelogId) - changelogId: Changelog ID or slug (required if no submissionId) - parentCommentId: Parent comment ID for re |
#### Using Global Installation
```json
{
"mcpServers": {
"featurebase": {
"command": "featurebase-mcp",
"env": {
"FEATUREBASE_API_KEY": "your-api-key-here",
"FEATUREBASE_ORG_URL": "https://your-org.featurebase.app"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| FEATUREBASE_API_KEY | Credential the server authenticates with. | Yes |
| FEATUREBASE_ORG_URL | Endpoint or connection string the server talks to. | Yes |
| FEATUREBASE_BASE_URL | Endpoint or connection string the server talks to. | Yes |
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Inbox intelligence — search, read, draft and send Gmail through your assistant with OAuth auto-setup.
Read and write Jira, Confluence, Bitbucket, JSM and Compass from your AI client — with your own permissions.
Read and send Telegram messages through your assistant — chats, channels and history via the client API.
Enables Discord bot integration with Model Context Protocol (MCP) compatible applications like Claude Desktop.
Exposes REST APIs defined by OpenAPI specifications as Model Context Protocol (MCP) tools, facilitating seamless integration into MCP-based workflows.