You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/mcp_snowflake_server/__init__.py
+3-3
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ def parse_args():
21
21
"--prefetch",
22
22
action="store_true",
23
23
dest="prefetch",
24
-
default=True,
24
+
default=False,
25
25
help="Prefetch table descriptions (when enabled, list_tables and describe_table are disabled)",
26
26
)
27
27
parser.add_argument(
@@ -88,10 +88,10 @@ def main():
88
88
89
89
assert (
90
90
"database"inconnection_args
91
-
), 'You must provide the account identifier as "--database" argument or "SNOWFLAKE_DATABASE" environment variable. This MCP server can only operate on a single database.'
91
+
), 'You must provide the account identifier as "--database" argument or "SNOWFLAKE_DATABASE" environment variable.'
92
92
assert (
93
93
"schema"inconnection_args
94
-
), 'You must provide the username as "--schema" argument or "SNOWFLAKE_SCHEMA" environment variable. This MCP server can only operate on a single schema.'
94
+
), 'You must provide the username as "--schema" argument or "SNOWFLAKE_SCHEMA" environment variable.'
0 commit comments