Skip to content

QueryForge MCP v0.5.0

Choose a tag to compare

@luismpenholato luismpenholato released this 06 Jun 19:47
· 12 commits to main since this release

QueryForge MCP v0.5.0

This release adds structural query smell detection for LINQ/EF performance analysis.

Added

  • N_PLUS_ONE_QUERY_IN_LOOP
  • MULTIPLE_ROUND_TRIPS_IN_LOOP
  • CARTESIAN_PRODUCT_QUERY
  • CORRELATED_SUBQUERY_IN_PROJECTION
  • IMPLICIT_CONVERSION_IN_FILTER
  • DUPLICATED_PREDICATE
  • FULL_ENTITY_MATERIALIZATION

Improved

  • Batch risk scoring now includes structural smell bonuses.
  • Added combo bonuses for high-risk combinations.
  • Added structural query smell example contract.
  • Expanded test coverage to 114 tests.

Why it matters

QueryForge can now distinguish between simple EF improvements and deeper query shape problems such as N+1 queries, cartesian products, correlated subqueries and unnecessary full entity materialization.

Validation

  • 114 tests passing
  • Build passing