aha-mcp
Click 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., "@aha-mcpwhat is the status of feature DEVELOP-123?"
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.
aha-mcp
Model Context Protocol (MCP) server for accessing Aha! records through the MCP. This integration enables seamless interaction with Aha! features, requirements, and pages directly through the Model Context Protocol.
Prerequisites
Node.js v20 or higher
npm (usually comes with Node.js)
An Aha! account with API access
Related MCP server: productplan-mcp-server
Installation
Using npx
npx -y aha-mcp@latestManual Installation
# Clone the repository
git clone https://github.com/aha-develop/aha-mcp.git
cd aha-mcp
# Install dependencies
npm install
# Run the server
npm run mcp-startAuthentication Setup
Log in to your Aha! account at
<yourcompany>.aha.ioClick "Create new API key"
Copy the token immediately (it won't be shown again)
For more details about authentication and API usage, see the Aha! API documentation.
Environment Variables
This MCP server requires the following environment variables:
AHA_API_TOKEN: Your Aha! API tokenAHA_DOMAIN: Your Aha! domain (e.g., yourcompany.aha.io)
IDE Integration
For security reasons, we recommend using your preferred secure method for managing environment variables rather than storing API tokens directly in editor configurations. Each editor has different security models and capabilities for handling sensitive information.
Below are examples of how to configure various editors to use the aha-mcp server. You should adapt these examples to use your preferred secure method for providing the required environment variables.
VSCode
Add this to your .vscode/settings.json, using your preferred method to securely provide the environment variables:
{
"mcpServers": {
"aha-mcp": {
"command": "npx",
"args": ["-y", "aha-mcp"]
// Environment variables should be provided through your preferred secure method
}
}
}Cursor
Go to Cursor Settings > MCP
Click + Add new Global MCP Server
Add a configuration similar to:
{
"mcpServers": {
"aha-mcp": {
"command": "npx",
"args": ["-y", "aha-mcp"]
// Environment variables should be provided through your preferred secure method
}
}
}Cline
Add a configuration to your cline_mcp_settings.json via Cline MCP Server settings:
{
"mcpServers": {
"aha-mcp": {
"command": "npx",
"args": ["-y", "aha-mcp"]
// Environment variables should be provided through your preferred secure method
}
}
}RooCode
Open the MCP settings by either:
Clicking "Edit MCP Settings" in RooCode settings, or
Using the "RooCode: Open MCP Config" command in VS Code's command palette
Then add:
{
"mcpServers": {
"aha-mcp": {
"command": "npx",
"args": ["-y", "aha-mcp"]
// Environment variables should be provided through your preferred secure method
}
}
}Claude Desktop
Add a configuration to your claude_desktop_config.json:
{
"mcpServers": {
"aha-mcp": {
"command": "npx",
"args": ["-y", "aha-mcp"]
// Environment variables should be provided through your preferred secure method
}
}
}Available MCP Tools
1. get_record
Retrieves an Aha! feature or requirement by reference number.
Parameters:
reference(required): Reference number of the feature or requirement (e.g., "DEVELOP-123")
Example:
{
"reference": "DEVELOP-123"
}Response:
{
"reference_num": "DEVELOP-123",
"name": "Feature name",
"description": "Feature description",
"workflow_status": {
"name": "In development",
"id": "123456"
}
}2. get_page
Gets an Aha! page by reference number.
Parameters:
reference(required): Reference number of the page (e.g., "ABC-N-213")includeParent(optional): Include parent page information. Defaults to false.
Example:
{
"reference": "ABC-N-213",
"includeParent": true
}Response:
{
"reference_num": "ABC-N-213",
"name": "Page title",
"body": "Page content",
"parent": {
"reference_num": "ABC-N-200",
"name": "Parent page"
}
}3. search_documents
Searches for Aha! documents.
Parameters:
query(required): Search query stringsearchableType(optional): Type of document to search for (e.g., "Page"). Defaults to "Page"
Example:
{
"query": "product roadmap",
"searchableType": "Page"
}Response:
{
"results": [
{
"reference_num": "ABC-N-123",
"name": "Product Roadmap 2025",
"type": "Page",
"url": "https://company.aha.io/pages/ABC-N-123"
}
],
"total_results": 1
}4. create_feature
Creates a new feature in Aha!
Parameters:
release_id(required): Numeric ID or key of the release to create the feature inname(required): Name of the featureworkflow_kind(optional): Type of featureworkflow_status(optional): Object with name or id of the workflow statusdescription(optional): Description of the feature (may include HTML formatting)assigned_to_user(optional): Object with email or id of the assigned usertags(optional): Comma-separated tags to apply to the featureinitial_estimate_text(optional): Initial estimated effort (e.g., "2d 1h" for time or "4p" for points)start_date(optional): Date work will start (YYYY-MM-DD format)due_date(optional): Date work is due (YYYY-MM-DD format)initiative(optional): Name or ID of initiativeepic(optional): Name or ID of epicteam(optional): Numeric ID or key of the team
Example:
{
"release_id": "PRJ1-R-1",
"name": "New Mobile App Feature",
"workflow_kind": "new",
"workflow_status": {
"name": "Under consideration"
},
"description": "<p>Implement push notifications for mobile app</p>",
"assigned_to_user": {
"email": "developer@company.com"
},
"tags": "mobile,notifications,push"
}Response:
{
"id": "12345",
"reference_num": "DEVELOP-789",
"name": "New Mobile App Feature",
"description": "<p>Implement push notifications for mobile app</p>",
"workflow_status": {
"id": "67890",
"name": "Under consideration"
},
"assigned_to_user": {
"id": "54321",
"name": "John Developer",
"email": "developer@company.com"
},
"release": {
"id": "11111",
"name": "Q2 2024 Release",
"reference_num": "PRJ1-R-1"
},
"tags": "mobile,notifications,push"
}Example Queries
"Get feature DEVELOP-123"
"Fetch the product roadmap page ABC-N-213"
"Search for pages about launch planning"
"Get requirement ADT-123-1"
"Find all pages mentioning Q2 goals"
"Create a new feature called 'User Authentication' in release PRJ1-R-1"
"Create a feature for mobile push notifications in release MOBILE-R-2"
Configuration Options
Variable | Description | Default |
| Your Aha! API token | Required |
| Your Aha! domain (e.g., yourcompany.aha.io) | Required |
| Logging level (debug, info, warn, error) | info |
| Port for SSE transport | 3000 |
| Transport type (stdio or sse) | stdio |
Troubleshooting
Authentication errors:
Verify your API token is correct and properly set in your environment
Ensure the token has the necessary permissions in Aha!
Confirm you're using the correct Aha! domain
Server won't start:
Ensure all dependencies are installed
Check the Node.js version is v20 or higher
Verify the TypeScript compilation succeeds
Confirm environment variables are properly set and accessible
Connection issues:
Check your network connection
Verify your Aha! domain is accessible
Ensure your API token has not expired
API Request failures:
Check the reference numbers are correct
Verify the searchable type is valid
Ensure you have permissions to access the requested resources
Feature creation errors (create_feature tool):
404 "Record not found": The
release_iddoesn't exist or you don't have access to itVerify the release ID format (e.g., "PRJ1-R-1", "PROJ-R-123")
Check that the release exists in your Aha! workspace
Ensure your API token has permissions to create features in that release
403 "Forbidden": Your API token lacks permissions to create features
422 "Unprocessable Entity": Invalid field values (check workflow_status names, user emails, etc.)
To find valid release IDs: Use the Aha! UI or call
GET /api/v1/releasesendpoint
Environment variable issues:
Make sure environment variables are properly set and accessible to the MCP server
Check that your secure storage method is correctly configured
Verify that the environment variables are being passed to the MCP server process
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
- 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/popand/aha-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server