Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can this server support chunked select (aka cursor)? #20

Open
zhrt123 opened this issue Mar 28, 2025 · 3 comments
Open

Can this server support chunked select (aka cursor)? #20

zhrt123 opened this issue Mar 28, 2025 · 3 comments

Comments

@zhrt123
Copy link

zhrt123 commented Mar 28, 2025

I need to deal with an extensive database, but the memory is insufficient. So I wonder if the server could support pagination. Looking forward to your response.

@designcomputer
Copy link
Owner

There may be a pull request that addresses that feature.

#7

@zhrt123
Copy link
Author

zhrt123 commented Mar 30, 2025

Thank you for your response. After reviewing the code, I noticed that cursor queries are exclusively handled with fetchall() instead of fetch(). Would it be possible to add support for fetch() in this server?

@designcomputer
Copy link
Owner

@zhrt123

We're actively working on adding pagination support to mysql_mcp_server. This enhancement will allow much more efficient handling of large result sets. The implementation involves several key components:

Adding a cursor management system to maintain state between queries
Creating new tools specifically for paginated queries
Implementing proper resource cleanup to prevent memory leaks
Enhancing documentation so AI agents can understand pagination concepts

Rather than fetching all results at once with fetchall(), we'll use fetchmany() to retrieve data in configurable batches. This will significantly reduce memory usage for large datasets.
We need to thoroughly test this feature before release to ensure:

Cursor state is properly maintained across multiple requests
Resources are correctly cleaned up when queries complete or errors occur
The pagination workflow is intuitive for both human and AI users
Performance is optimized for various batch sizes and dataset volumes

I'll keep you updated on our progress. We're aiming to have this feature tested and ready for deployment soon!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants