Skip to content

Release Notes - v0.10.0

Release Date: 2026-07-20

Highlights

  • 37 New MCP Tools - Near-complete CRUD coverage for epics, goals, initiatives, requirements, products, strategic models, and comments
  • Idea Votes/Categories/Score - list_ideas now returns real vote counts, categories, and score by default
  • Richer Initiative Data - get_initiative now exposes color, position, value, effort, progress, dates, workflow status, and custom fields

What's New

37 New MCP Tools

The MCP server grew from 34 to 71 tools, organized into Get, List, Create, Update, Comment, and Delete categories:

Category New Tools
Get get_current_user, get_strategic_model
List list_features, list_release_features, list_epics, list_product_epics, list_goals, list_product_goals, list_initiatives, list_product_initiatives, list_feature_requirements, list_users, list_custom_fields, list_custom_field_options, list_strategic_models, list_product_strategic_models
Create create_epic, create_goal, create_initiative, create_requirement, create_product, create_strategic_model
Update update_initiative, update_epic, update_goal, update_feature, update_requirement, update_release, update_idea, update_product, update_strategic_model
Comment update_comment, list_feature_comments, list_idea_comments, list_epic_comments
Delete delete_requirement, delete_comment

This delivers most of the "Extended Write Operations" scoped in the roadmap's Phase 10b, plus full CRUD for epics, initiatives, products, and strategic models that weren't originally scoped. See Tools Reference for full parameter documentation on every tool.

Idea votes, categories, and score

Aha's GET /ideas list endpoint omits votes, categories, and score unless the request explicitly opts in via a fields parameter — every list_ideas call previously came back with Votes: 0 and Categories: [] regardless of the account's actual data. Upgrading to aha-go v0.7.0 fixes this: list_ideas now requests these fields by default, and a new fields parameter lets you override the optional field set:

{
  "tool": "list_ideas",
  "arguments": {
    "sort": "popular",
    "per_page": 10,
    "fields": ["votes"]
  }
}

Richer initiative data

get_initiative (and other tools returning initiatives) now include color, position, value, effort, presented, progress, progress_source, start_date, end_date, updated_at, workflow_status, and custom_fields — previously only id, reference_num, name, description, url, and created_at were exposed. This is powered by aha-go v0.7.0's GetInitiative fix, which decodes custom fields directly instead of a separate raw HTTP workaround.

Documentation

  • Restructured Tools Reference into Query/Get/List/Create/Update/Comment/Delete/Browser/Graph sections covering all 71 tools
  • Updated the Roadmap to reflect Phase 10b's status and replaced a stale, inaccurate Version History table with a pointer to this changelog
  • Added the Roadmap to the documentation site navigation

Dependencies

  • Upgraded github.com/grokify/aha-go to v0.7.0 (idea votes/categories/score defaults, initiative custom fields)
  • Removed the local development replace directive now that the fix is published

Installation

# Install AQL CLI
go install github.com/grokify/aha-studio/cmd/aha-studio@v0.10.0

# Install MCP Server
go install github.com/grokify/aha-studio/cmd/aha-mcp-server@v0.10.0

Full Changelog

See the CHANGELOG for complete version history.