pggm-mcp-snowflake-server 1.0.0__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/PKG-INFO +7 -3
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/README.md +6 -2
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server/server.py +4 -5
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server.egg-info/PKG-INFO +7 -3
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pyproject.toml +1 -1
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server/__init__.py +0 -0
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server/write_detector.py +0 -0
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server.egg-info/SOURCES.txt +0 -0
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server.egg-info/dependency_links.txt +0 -0
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server.egg-info/entry_points.txt +0 -0
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server.egg-info/requires.txt +0 -0
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/pggm_mcp_snowflake_server.egg-info/top_level.txt +0 -0
- {pggm_mcp_snowflake_server-1.0.0 → pggm_mcp_snowflake_server-1.0.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pggm-mcp-snowflake-server
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Summary: Custom Model Context Protocol server for Snowflake
|
5
5
|
Classifier: Programming Language :: Python :: 3
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -88,10 +88,14 @@ Add the following to your settings.json in vs-code (F1 + Preferences: Open User
|
|
88
88
|
},
|
89
89
|
|
90
90
|
```
|
91
|
+
## Usage
|
91
92
|
|
92
|
-
|
93
|
+
In VS Code you need to have Agent mode enabled.
|
94
|
+
You can see which tools the AI has access to by navigating towards its chat window, and selecting the Tools icon, or pressing Ctrl+Shift+/ inside its chat window.
|
93
95
|
|
94
|
-
|
96
|
+
### Tools Available
|
97
|
+
|
98
|
+
The pggm_mcp_snowflake_server provides the following tools for copilot:
|
95
99
|
|
96
100
|
- `list_databases` - List all available databases in Snowflake
|
97
101
|
- `list_schemas` - List all schemas in a database
|
@@ -73,10 +73,14 @@ Add the following to your settings.json in vs-code (F1 + Preferences: Open User
|
|
73
73
|
},
|
74
74
|
|
75
75
|
```
|
76
|
+
## Usage
|
76
77
|
|
77
|
-
|
78
|
+
In VS Code you need to have Agent mode enabled.
|
79
|
+
You can see which tools the AI has access to by navigating towards its chat window, and selecting the Tools icon, or pressing Ctrl+Shift+/ inside its chat window.
|
78
80
|
|
79
|
-
|
81
|
+
### Tools Available
|
82
|
+
|
83
|
+
The pggm_mcp_snowflake_server provides the following tools for copilot:
|
80
84
|
|
81
85
|
- `list_databases` - List all available databases in Snowflake
|
82
86
|
- `list_schemas` - List all schemas in a database
|
@@ -604,17 +604,16 @@ async def main(
|
|
604
604
|
)
|
605
605
|
for tool in allowed_tools
|
606
606
|
]
|
607
|
-
return tools
|
608
|
-
|
607
|
+
return tools
|
608
|
+
|
609
609
|
# Start server
|
610
610
|
async with mcp.server.stdio.stdio_server() as (read_stream, write_stream):
|
611
611
|
logger.info("Server running with stdio transport")
|
612
|
-
await server.run(
|
613
|
-
read_stream,
|
612
|
+
await server.run(read_stream,
|
614
613
|
write_stream,
|
615
614
|
InitializationOptions(
|
616
615
|
server_name="snowflake",
|
617
|
-
server_version=importlib.metadata.version("
|
616
|
+
server_version=importlib.metadata.version("pggm_mcp_snowflake_server"),
|
618
617
|
capabilities=server.get_capabilities(
|
619
618
|
notification_options=NotificationOptions(),
|
620
619
|
experimental_capabilities={},
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pggm-mcp-snowflake-server
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Summary: Custom Model Context Protocol server for Snowflake
|
5
5
|
Classifier: Programming Language :: Python :: 3
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -88,10 +88,14 @@ Add the following to your settings.json in vs-code (F1 + Preferences: Open User
|
|
88
88
|
},
|
89
89
|
|
90
90
|
```
|
91
|
+
## Usage
|
91
92
|
|
92
|
-
|
93
|
+
In VS Code you need to have Agent mode enabled.
|
94
|
+
You can see which tools the AI has access to by navigating towards its chat window, and selecting the Tools icon, or pressing Ctrl+Shift+/ inside its chat window.
|
93
95
|
|
94
|
-
|
96
|
+
### Tools Available
|
97
|
+
|
98
|
+
The pggm_mcp_snowflake_server provides the following tools for copilot:
|
95
99
|
|
96
100
|
- `list_databases` - List all available databases in Snowflake
|
97
101
|
- `list_schemas` - List all schemas in a database
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|