pggm-mcp-snowflake-server 0.1.2__py3-none-any.whl → 0.1.4__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pggm-mcp-snowflake-server
3
- Version: 0.1.2
3
+ Version: 0.1.4
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
@@ -11,6 +11,7 @@ Requires-Dist: mcp
11
11
  Requires-Dist: pydantic
12
12
  Requires-Dist: snowflake-snowpark-python
13
13
  Requires-Dist: pyyaml
14
+ Requires-Dist: jaraco.text
14
15
 
15
16
  # PGGM MCP Snowflake Server
16
17
 
@@ -29,14 +30,53 @@ A customized Model Context Protocol (MCP) server for Snowflake integration, allo
29
30
 
30
31
  ### Using pip
31
32
 
33
+ Install in your venv with:
34
+
32
35
  ```bash
33
36
  pip install pggm-mcp-snowflake-server
34
37
  ```
35
38
 
39
+ ### Inside VS-Code
40
+
41
+ Add the following to your settings.json in vs-code (F1 + Preferences: Open User Settings(JSON))
42
+
43
+ ```bash
44
+ "workbench.settings.applyToAllProfiles": [
45
+ "chat.agent.enabled"
46
+ ],
47
+ "github.copilot.chat.agent.thinkingTool": true,
48
+ "mcp": {
49
+
50
+ "inputs": [],
51
+ "servers": {
52
+ "snowflake_local": {
53
+ "command": "{project_source}\\venv\\Scripts\\pggm_mcp_snowflake_server.exe",
54
+ "args": [
55
+ "--account",
56
+ "pggm-vb.privatelink",
57
+ "--warehouse",
58
+ "{warehouse}",
59
+ "--authenticator",
60
+ "externalbrowser",
61
+ "--user",
62
+ "{user_email}",
63
+ "--role",
64
+ "PUBLIC",
65
+ "--database",
66
+ "SNOWFLAKE",
67
+ "--schema",
68
+ "INFORMATION_SCHEMA",
69
+ # Optionally: "--allow_write"
70
+ ]
71
+ }
72
+ }
73
+ },
74
+
75
+ ```
36
76
 
37
77
  ### Tools Available to AI Assistants
38
78
 
39
- The server provides the following tools for AI assistants:
79
+ The mcp_server provides the following tools for AI assistants:
40
80
 
41
81
  - `list_databases` - List all available databases in Snowflake
42
82
  - `list_schemas` - List all schemas in a database
@@ -52,16 +92,3 @@ The server provides the following tools for AI assistants:
52
92
  By default, the server runs in read-only mode. To enable write operations, you must explicitly pass the `--allow_write` flag.
53
93
 
54
94
  The server uses SQL parsing to detect and prevent write operations in `read_query` calls, ensuring only approved write operations can be executed.
55
-
56
- ## Development
57
-
58
- ### Setup Development Environment
59
-
60
- ```bash
61
- git clone https://github.com/yourusername/pggm-mcp-snowflake-server.git
62
- cd pggm-mcp-snowflake-server
63
- uv venv
64
- source .venv/bin/activate # On Windows: .venv\Scripts\activate
65
- uv pip install -e ".[dev]"
66
- ```
67
-
@@ -1,8 +1,8 @@
1
1
  pggm_mcp_snowflake_server/__init__.py,sha256=fBi0ejuNSFNA_q0h1Jo6zMlsS0R1_xOW8sne9BygAHQ,3304
2
2
  pggm_mcp_snowflake_server/server.py,sha256=hfINhJuS2s44obtKWvxfLek6Y5P6GmBLUgkhnr3DuD0,21959
3
3
  pggm_mcp_snowflake_server/write_detector.py,sha256=qLFxghERiZT7-DRT8sGPAqrACTgO61QE29QXtH4CN2w,3635
4
- pggm_mcp_snowflake_server-0.1.2.dist-info/METADATA,sha256=w0FF2GyR4lfcPEcATBDz1OsWDAlhgMsVKrKUb4d_2ZU,2328
5
- pggm_mcp_snowflake_server-0.1.2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
6
- pggm_mcp_snowflake_server-0.1.2.dist-info/entry_points.txt,sha256=YEZPlm-G0tFK9kVDEDDpV1pSXDRfnkIXFNYxODEWkKs,77
7
- pggm_mcp_snowflake_server-0.1.2.dist-info/top_level.txt,sha256=ouamdLwMWx5aSlAHI_mhoPvm9PEBtovD3qbDvR7x284,26
8
- pggm_mcp_snowflake_server-0.1.2.dist-info/RECORD,,
4
+ pggm_mcp_snowflake_server-0.1.4.dist-info/METADATA,sha256=t4hKjpqd4UMF_MddbsQaicTUFI2lnYaL5_9KDzIwSRs,3218
5
+ pggm_mcp_snowflake_server-0.1.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
6
+ pggm_mcp_snowflake_server-0.1.4.dist-info/entry_points.txt,sha256=YEZPlm-G0tFK9kVDEDDpV1pSXDRfnkIXFNYxODEWkKs,77
7
+ pggm_mcp_snowflake_server-0.1.4.dist-info/top_level.txt,sha256=ouamdLwMWx5aSlAHI_mhoPvm9PEBtovD3qbDvR7x284,26
8
+ pggm_mcp_snowflake_server-0.1.4.dist-info/RECORD,,