mirror of
https://github.com/dnlbauer/cordra-mcp.git
synced 2026-09-10 13:45:30 +00:00
Change the default limit parameter for search_objects from None to 1 to optimize for single object searches. This makes the API more intuitive for common use cases where users want to find a specific object without specifying pagination parameters. Changes: - Update limit parameter type from `int | None = None` to `int = 1` - Remove conditional logic handling None values - Update documentation to reflect new default - Update all tests to expect new default behavior This improves usability for exploratory searches while maintaining full pagination functionality when larger limits are specified. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>