pggm-mcp-snowflake-server 0.1.2__tar.gz → 0.1.4__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.
@@ -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
-
@@ -15,14 +15,53 @@ A customized Model Context Protocol (MCP) server for Snowflake integration, allo
15
15
 
16
16
  ### Using pip
17
17
 
18
+ Install in your venv with:
19
+
18
20
  ```bash
19
21
  pip install pggm-mcp-snowflake-server
20
22
  ```
21
23
 
24
+ ### Inside VS-Code
25
+
26
+ Add the following to your settings.json in vs-code (F1 + Preferences: Open User Settings(JSON))
27
+
28
+ ```bash
29
+ "workbench.settings.applyToAllProfiles": [
30
+ "chat.agent.enabled"
31
+ ],
32
+ "github.copilot.chat.agent.thinkingTool": true,
33
+ "mcp": {
34
+
35
+ "inputs": [],
36
+ "servers": {
37
+ "snowflake_local": {
38
+ "command": "{project_source}\\venv\\Scripts\\pggm_mcp_snowflake_server.exe",
39
+ "args": [
40
+ "--account",
41
+ "pggm-vb.privatelink",
42
+ "--warehouse",
43
+ "{warehouse}",
44
+ "--authenticator",
45
+ "externalbrowser",
46
+ "--user",
47
+ "{user_email}",
48
+ "--role",
49
+ "PUBLIC",
50
+ "--database",
51
+ "SNOWFLAKE",
52
+ "--schema",
53
+ "INFORMATION_SCHEMA",
54
+ # Optionally: "--allow_write"
55
+ ]
56
+ }
57
+ }
58
+ },
59
+
60
+ ```
22
61
 
23
62
  ### Tools Available to AI Assistants
24
63
 
25
- The server provides the following tools for AI assistants:
64
+ The mcp_server provides the following tools for AI assistants:
26
65
 
27
66
  - `list_databases` - List all available databases in Snowflake
28
67
  - `list_schemas` - List all schemas in a database
@@ -38,16 +77,3 @@ The server provides the following tools for AI assistants:
38
77
  By default, the server runs in read-only mode. To enable write operations, you must explicitly pass the `--allow_write` flag.
39
78
 
40
79
  The server uses SQL parsing to detect and prevent write operations in `read_query` calls, ensuring only approved write operations can be executed.
41
-
42
- ## Development
43
-
44
- ### Setup Development Environment
45
-
46
- ```bash
47
- git clone https://github.com/yourusername/pggm-mcp-snowflake-server.git
48
- cd pggm-mcp-snowflake-server
49
- uv venv
50
- source .venv/bin/activate # On Windows: .venv\Scripts\activate
51
- uv pip install -e ".[dev]"
52
- ```
53
-
@@ -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
-
@@ -2,3 +2,4 @@ mcp
2
2
  pydantic
3
3
  snowflake-snowpark-python
4
4
  pyyaml
5
+ jaraco.text
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pggm-mcp-snowflake-server"
7
- version = "0.1.2"
7
+ version = "0.1.4"
8
8
  description = "Custom Model Context Protocol server for Snowflake"
9
9
  readme = "README.md"
10
10
  classifiers = [
@@ -17,7 +17,8 @@ dependencies = [
17
17
  "mcp",
18
18
  "pydantic",
19
19
  "snowflake-snowpark-python",
20
- "pyyaml"
20
+ "pyyaml",
21
+ "jaraco.text",
21
22
  ]
22
23
 
23
24
  [project.scripts]