We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 69d5a8d + 4733d84 commit 7cf6604Copy full SHA for 7cf6604
src/main.py
@@ -55,8 +55,8 @@ def cli(
55
):
56
"""Redis MCP Server - Model Context Protocol server for Redis."""
57
58
- # Handle Redis URI if provided
59
- if url:
+ # Handle Redis URI if provided (and not empty)
+ if url and url.strip():
60
try:
61
uri_config = parse_redis_uri(url)
62
set_redis_config_from_cli(uri_config)
0 commit comments