changedInput schema / properties / extensions / description
Previous value: -"Restrict results to these file extensions, e.g. `['.cs', '.shader']`."New value: +"Restrict to these extensions, e.g. ['.cs']."
removedInput schema / properties / extensions / title
Removed value: -"Extensions"
changedInput schema / properties / file_glob / description
Previous value: -"fnmatch glob to restrict results by path/filename, e.g. `*.cs` or `**/Editor/*`."New value: +"Restrict to paths matching this glob, e.g. `*.cs`."
removedInput schema / properties / file_glob / title
Removed value: -"File Glob"
changedInput schema / properties / outline / description
Previous value: -"If true, return each hit's signature + first doc line instead of its full body — cheap triage for broad queries or a large top_k. Scan the signatures, then read the one body you need (find_definition, or its file:line). Default false = full bodies, for when you'll use the code right away."New value: +"Signatures only, no bodies: cheap triage for broad queries."
removedInput schema / properties / outline / title
Removed value: -"Outline"
changedInput schema / properties / path_contains / description
Previous value: -"Keep only results whose file path contains this substring."New value: +"Restrict to paths containing this substring."
removedInput schema / properties / path_contains / title
Removed value: -"Path Contains"
changedInput schema / properties / query / description
Previous value: -"Natural-language description of the behavior to find (e.g. 'method that handles player damage calculation'), NOT an identifier — use grep for exact names."New value: +"What the code does, in plain words, not an identifier."
removedInput schema / properties / query / title
Removed value: -"Query"
changedInput schema / properties / source / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / source / description
Previous value: -"Source name from `list_sources`. Omit to use the default: all sources for `search`/`deep_search` (RRF-fused), or the single applicable source for the others."New value: +"Source name, list of names, or omit for all sources, fused."
removedInput schema / properties / source / title
Removed value: -"Source"
changedInput schema / properties / top_k / description
Previous value: -"Maximum number of results to return. Defaults to the server's configured value."New value: +"Max results; default from config."
removedInput schema / properties / top_k / title
Removed value: -"Top K"
removedInput schema / title
Removed value: -"_searchArguments"
changedOutput schema / (root)
Previous value: -{
- "properties": {
- "result": {
- "title": "Result",
- "type": "string"
- }
- },
- "required": [
- "result"
- ],
- "title": "_searchOutput",
- "type": "object"
-}New value: +null