Skip to content
K

mm_search

Full-text search across all entity types (specs, features, issues, notes, ideas). Returns matching entities with snippets.

  • Category: Queries
  • Source: Built-in
  • Required parameters: 2
  • Total parameters: 3
ParameterTypeRequiredDescription
project_pathstringYesAbsolute path to the project root
querystringYesSearch query string
entity_typestring (enum: spec, feature, issue, note, idea)NoOptional entity type filter to narrow search scope
{
"tool": "mm_search",
"arguments": {
"project_path": "/Users/you/projects/my-app",
"query": "search query",
"entity_type": "spec"
}
}
  • mm_get_spec - Read a single spec by folder name. Returns parsed spec.md content, implementa…
  • mm_get_feature - Read a single feature by ID. Returns feature.json data plus computed progress…
  • mm_get_issue - Read a single issue by filename. Returns parsed issue content and metadata.
  • mm_get_note - Read a single note by filename. Returns note content and metadata.
  • mm_list_specs - List all specs with optional filters: status, date range, linked/unlinked to …