MCP server for Aha! product management SaaS service.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"aha": {
"env": {
"AHA_DOMAIN": "your_aha_subdomain",
"AHA_API_TOKEN": "your_api_token_here"
},
"command": "aha-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) server for Aha! that enables AI assistants to interact with your Aha! workspace data. This server provides 13 tools to retrieve and search various Aha! objects, making it easy to integrate Aha! data into AI workflows.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Notion MCP Server
MCP Security Weekly
Get CVE alerts and security updates for Aha Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
CLI tools for Aha! product management with AQL (Aha Query Language), MCP server integration, local SQLite sync, and Neo4j graph analytics.
Aha Studio provides two command-line tools:
| Binary | Purpose |
|---|---|
aha-studio | AQL query CLI with SQLite sync and interactive shell |
aha-mcp-server | MCP server (34 tools) for Claude Desktop and AI assistants |
# Install AQL CLI
go install github.com/grokify/aha-studio/cmd/aha-studio@latest
# Install MCP Server
go install github.com/grokify/aha-studio/cmd/aha-mcp-server@latest
Set the following environment variables:
export AHA_SUBDOMAIN=mycompany # Required: your Aha.io subdomain
export AHA_API_KEY=xxx # Required: your Aha.io API key
export AHA_DEFAULT_PRODUCT=PROD # Optional: default product for queries
For Neo4j graph features (optional):
export NEO4J_URI=bolt://localhost:7687
export NEO4J_USERNAME=neo4j
export NEO4J_PASSWORD=password
For browser automation (optional):
export AHA_EMAIL=user@example.com
export AHA_PASSWORD=secret
# Basic query
aha-studio query "FROM features LIMIT 10"
# Query with filter
aha-studio query "FROM ideas WHERE status = 'Shipped' LIMIT 5"
# Interactive shell
aha-studio shell
# Sync data to SQLite for offline queries
aha-studio sync --product PROD
# Export features to Excel ordered by rank
aha-studio query -o xlsx -f features.xlsx \
"SELECT reference_num, name, position, tag_list, workspace FROM features ORDER BY position ASC"
Add to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"aha": {
"command": "aha-mcp-server",
"env": {
"AHA_SUBDOMAIN"
... [View full README on GitHub](https://github.com/grokify/aha-mcp-server#readme)