From 952641b0f625252d787d672a0c05c98606617eed Mon Sep 17 00:00:00 2001 From: Javier Uruen Val Date: Sat, 5 Apr 2025 16:37:10 +0200 Subject: [PATCH] fix issue with pagination in search_repositories --- pkg/github/search.go | 2 +- pkg/github/search_test.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/github/search.go b/pkg/github/search.go index f9a20be14..a98c26434 100644 --- a/pkg/github/search.go +++ b/pkg/github/search.go @@ -36,7 +36,7 @@ func searchRepositories(client *github.Client, t translations.TranslationHelperF if err != nil { return mcp.NewToolResultError(err.Error()), nil } - perPage, err := optionalIntParamWithDefault(request, "per_page", 30) + perPage, err := optionalIntParamWithDefault(request, "perPage", 30) if err != nil { return mcp.NewToolResultError(err.Error()), nil } diff --git a/pkg/github/search_test.go b/pkg/github/search_test.go index 2485c4c26..9d02b3a27 100644 --- a/pkg/github/search_test.go +++ b/pkg/github/search_test.go @@ -72,9 +72,9 @@ func Test_SearchRepositories(t *testing.T) { ), ), requestArgs: map[string]interface{}{ - "query": "golang test", - "page": float64(2), - "per_page": float64(10), + "query": "golang test", + "page": float64(2), + "perPage": float64(10), }, expectError: false, expectedResult: mockSearchResult, pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy