Aha Studio
CLI tools for Aha! product management with AQL (Aha Query Language), MCP server integration, local SQLite sync, and Neo4j graph analytics.
Overview
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 |
Features
- AQL (Aha Query Language) - SQL-like syntax for querying Aha.io data
- 34 MCP Tools - Features, Ideas, Releases, Initiatives, Graph queries, and more
- Local SQLite sync - Offline queries and fast local caching
- Neo4j integration - Graph analytics and relationship queries
- Browser automation - Strategic template creation via headless Chrome
What is MCP?
The Model Context Protocol is an open standard that enables AI assistants to securely connect to external data sources and tools. The aha-mcp-server acts as a bridge between AI assistants (like Claude) and your Aha! workspace.
| Tool |
Description |
query |
Execute AQL queries |
describe_aql |
Get AQL syntax help |
| Tool |
Description |
get_feature |
Get feature by reference |
get_idea |
Get idea by reference |
get_release |
Get release by reference |
get_initiative |
Get initiative by reference |
get_epic |
Get epic by ID |
get_goal |
Get goal by ID |
get_comment |
Get comment by ID |
get_requirement |
Get requirement by ID |
get_user |
Get user by ID |
get_key_result |
Get key result by ID |
get_persona |
Get persona by ID |
get_team |
Get team by ID |
get_workflow |
Get workflow by ID |
| Tool |
Description |
list_ideas |
List ideas with filters |
list_products |
List all products |
list_workflow_statuses |
List workflow statuses |
list_releases |
List releases for product |
search_documents |
Search documents via GraphQL |
| Tool |
Description |
create_feature |
Create a new feature |
change_feature_status |
Change feature workflow status |
assign_feature_release |
Assign feature to release |
assign_user_to_feature |
Assign user to feature |
add_feature_comment |
Add comment to feature |
add_idea_comment |
Add comment to idea |
| Tool |
Description |
list_predefined_templates |
List strategic templates |
browser_create_template |
Create template via browser |
| Tool |
Description |
graph_sync |
Sync Aha data to Neo4j |
graph_query |
Execute Cypher query |
graph_find_path |
Find path between entities |
graph_search |
Full-text search |
graph_initiative_impact |
Initiative impact analysis |
graph_release_deps |
Release dependency analysis |
Quick Start
# Install
go install github.com/grokify/aha-studio/cmd/aha-studio@latest
go install github.com/grokify/aha-studio/cmd/aha-mcp-server@latest
# Configure credentials
export AHA_SUBDOMAIN="your_subdomain"
export AHA_API_KEY="your_api_key"
# Run AQL query
aha-studio query "FROM features LIMIT 10"
# Run MCP server
aha-mcp-server
Next Steps