Title: Pagination is not working for the /tools/list API · Issue #615 · modelcontextprotocol/java-sdk · GitHub
Open Graph Title: Pagination is not working for the /tools/list API · Issue #615 · modelcontextprotocol/java-sdk
X Title: Pagination is not working for the /tools/list API · Issue #615 · modelcontextprotocol/java-sdk
Description: Bug description Even though the implementation uses a loop to fetch tools based on the next cursor value, the API is being called only once and returns all MCP tools (more than 200) in a single response. This indicates that pagination is...
Open Graph Description: Bug description Even though the implementation uses a loop to fetch tools based on the next cursor value, the API is being called only once and returns all MCP tools (more than 200) in a single res...
X Description: Bug description Even though the implementation uses a loop to fetch tools based on the next cursor value, the API is being called only once and returns all MCP tools (more than 200) in a single res...
Opengraph URL: https://github.com/modelcontextprotocol/java-sdk/issues/615
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Pagination is not working for the /tools/list API","articleBody":"**Bug description**\nEven though the implementation uses a loop to fetch tools based on the next cursor value, the API is being called only once and returns all MCP tools (more than 200) in a single response. This indicates that pagination is not functioning as expected.\n\n**Environment**\n- Spring MCP version: LATEST\n- Java version: 17\n\n**Steps to reproduce**\n- Deploy the MCP server with more than 200 tools registered.\n\n- Use the following code snippet to fetch tools:\n```\npublic List\u003cMcpSchema.Tool\u003e listTools(final McpSyncClient mcpSyncClient) {\n final List\u003cMcpSchema.Tool\u003e tools = new ArrayList\u003c\u003e();\n String cursor = null;\n do {\n final ListToolsResult listToolsResult = mcpSyncClient.listTools(cursor);\n final List\u003cTool\u003e toolList = listToolsResult.tools();\n log.info(\"toolList size: {}\", toolList.size());\n tools.addAll(toolList);\n cursor = listToolsResult.nextCursor();\n } while (cursor != null);\n return tools;\n}\n```\n\n- Observe the logs and behavior.\n\n**Expected behavior**\n- The mcpSyncClient.listTools(cursor) API should be called multiple times until all tools are fetched.\n\n- Each API call should return a limited subset of tools (based on page size), and the nextCursor should guide the next request.\n\n- Pagination should be configurable (e.g., pageSize or limit parameter) so users can control how many tools are fetched per request.\n\n**Minimal Complete Reproducible example**\nA minimal example can be created by:\n\n- Setting up an MCP server with more than 200 registered tools.\n\n- Running the above Java method to fetch tools.\n\n- Observing that only one API call is made (indicating that nextCursor is not working as intended).\n\nObserved result:\n\n- One call to /tools/list returning all tools.\n\nExpected result:\n\n- Multiple paginated calls to /tools/list, each returning a subset of tools until all are fetched.\n\n**Additional questions**\n\n- How many tools are expected to be fetched in a single request by default?\n\n- Is this page size configurable from client-side?\n","author":{"url":"https://github.com/SurajPandurangaJannu","@type":"Person","name":"SurajPandurangaJannu"},"datePublished":"2025-10-10T13:59:34.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/615/java-sdk/issues/615"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:7e401489-33c3-5ae9-5df1-c89c4ba41dd6 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | B48E:29A644:7002A53:94F8782:6A5DF6E0 |
| html-safe-nonce | 81f4902375c3b95cbce2cf3a941b8621424fea4040563ef343422d8da6a13052 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNDhFOjI5QTY0NDo3MDAyQTUzOjk0Rjg3ODI6NkE1REY2RTAiLCJ2aXNpdG9yX2lkIjoiMzA3NTAxOTcxNDY3MjMyNjM2OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9 |
| visitor-hmac | 244380693e313c7efb233dbd03bbea9de9e166014d14f57adf80506304aa6477 |
| hovercard-subject-tag | issue:3503068910 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/modelcontextprotocol/java-sdk/615/issue_layout |
| twitter:image | https://opengraph.githubassets.com/8d6bfe17e0dfd4c01b7d0797741a99cbe68df78588bf0b2032294bb942744073/modelcontextprotocol/java-sdk/issues/615 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/8d6bfe17e0dfd4c01b7d0797741a99cbe68df78588bf0b2032294bb942744073/modelcontextprotocol/java-sdk/issues/615 |
| og:image:alt | Bug description Even though the implementation uses a loop to fetch tools based on the next cursor value, the API is being called only once and returns all MCP tools (more than 200) in a single res... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | SurajPandurangaJannu |
| hostname | github.com |
| expected-hostname | github.com |
| None | 7f8603048a7a8270fc5b845c28ec71e80a9a899268387bcf65814ee1b51c0cc4 |
| turbo-cache-control | no-preview |
| go-import | github.com/modelcontextprotocol/java-sdk git https://github.com/modelcontextprotocol/java-sdk.git |
| octolytics-dimension-user_id | 182288589 |
| octolytics-dimension-user_login | modelcontextprotocol |
| octolytics-dimension-repository_id | 919609219 |
| octolytics-dimension-repository_nwo | modelcontextprotocol/java-sdk |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 919609219 |
| octolytics-dimension-repository_network_root_nwo | modelcontextprotocol/java-sdk |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | e2a5561aeb049d0632a92906af784af5d414c603 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width