You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file.
4
+
5
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+
## [1.1.0] - 2025-10-17
8
+
9
+
### Added
10
+
11
+
- Optional `limit` parameter to `kagi_search_fetch` tool to control maximum number of search results per query
12
+
- Default limit of 10 results when no limit is specified
13
+
- Input validation for limit parameter (1-50 results)
14
+
- Updated tool description to mention limit functionality
15
+
16
+
### Changed
17
+
18
+
- Enhanced `kagiSearchFetch()` to apply limit per individual query
19
+
- Updated Zod schema to include optional limit field with validation
20
+
21
+
### Technical Details
22
+
23
+
- Limit parameter is passed through to core `kagi-ken` package's `search()` function
24
+
- Each query in the array gets its own limit applied (not global across all queries)
25
+
- Related searches are always included regardless of limit (handled by core package)
26
+
- Backward compatible - existing usage without limit continues to work
0 commit comments