Skip to content

Commit 74ba22e

Browse files
committed
[CHG] Bump version to 1.1.0 and add changelog
- Update package.json version to 1.1.0 - Add CHANGELOG.md documenting limit parameter feature - Update kagi-ken dependency to v1.2.0 Part of ZCO-1533
1 parent 8a10080 commit 74ba22e

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Changelog
2+
3+
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
27+
28+
## [1.0.0] - 2025-08-13
29+
30+
Initial release!

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kagi-ken-mcp",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Kagi MCP server using kagi-ken package",
55
"type": "module",
66
"main": "src/index.js",
@@ -31,7 +31,7 @@
3131
"license": "MIT",
3232
"dependencies": {
3333
"@modelcontextprotocol/sdk": "^1.0.0",
34-
"kagi-ken": "github:czottmann/kagi-ken#1.0.0",
34+
"kagi-ken": "github:czottmann/kagi-ken#1.2.0",
3535
"zod": "^3.22.0"
3636
},
3737
"repository": {

0 commit comments

Comments
 (0)