pggm-mcp-snowflake-server 1.0.2__tar.gz → 1.0.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: 1.0.2
3
+ Version: 1.0.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
@@ -30,18 +30,18 @@ A customized Model Context Protocol (MCP) server for Snowflake integration, allo
30
30
 
31
31
  ### Using pip
32
32
 
33
- Option 1: Install Globally (Recommended)
34
- Install this globally so that it works with all your projects, run a powershell window and:
33
+ Option 1: Install
34
+ Install this in your user site-packages so that it works with all your projects, run a powershell window and:
35
35
 
36
36
  ```bash
37
- C:\Users\User> pip install pggm-mcp-snowflake-server
37
+ C:\Users\User> pip install --user pggm-mcp-snowflake-server
38
38
  ```
39
- This will install the package in: C:\Python311\Lib\site-packages
40
- with the .exe in your C:\Python311\Scripts
39
+ This will install the package in: C:\Users\USER\AppData\Roaming\Python\Python311\site-packages
40
+ with the .exe in your C:\Users\USER\AppData\Roaming\Python\Python311\Scripts
41
41
  You might have to add this to your PATH:
42
42
  1) windows search: Edit the System Environment Variables
43
43
  2) Navigate: advanced / Environment Variables / select: PATH / Edit..
44
- 3) New: C:\Python311\Scripts
44
+ 3) New: C:\Users\USER\AppData\Roaming\Python\Python311
45
45
 
46
46
  Option 2: Install in your project venv
47
47
 
@@ -63,7 +63,7 @@ Add the following to your settings.json in vs-code (F1 + Preferences: Open User
63
63
  "inputs": [],
64
64
  "servers": {
65
65
  "snowflake_local": {
66
- "command": "C:\\Python311\\Scripts\\pggm_mcp_snowflake_server.exe",
66
+ "command": "C:\\Users\\SNST\\AppData\\Roaming\\Python\\Python311\\Scripts\\pggm_mcp_snowflake_server.exe",
67
67
  # In case you chose to install in your venv, replace above with the following:
68
68
  # "command": "{project_source}\\venv\\Scripts\\pggm_mcp_snowflake_server.exe",
69
69
  "args": [
@@ -15,18 +15,18 @@ A customized Model Context Protocol (MCP) server for Snowflake integration, allo
15
15
 
16
16
  ### Using pip
17
17
 
18
- Option 1: Install Globally (Recommended)
19
- Install this globally so that it works with all your projects, run a powershell window and:
18
+ Option 1: Install
19
+ Install this in your user site-packages so that it works with all your projects, run a powershell window and:
20
20
 
21
21
  ```bash
22
- C:\Users\User> pip install pggm-mcp-snowflake-server
22
+ C:\Users\User> pip install --user pggm-mcp-snowflake-server
23
23
  ```
24
- This will install the package in: C:\Python311\Lib\site-packages
25
- with the .exe in your C:\Python311\Scripts
24
+ This will install the package in: C:\Users\USER\AppData\Roaming\Python\Python311\site-packages
25
+ with the .exe in your C:\Users\USER\AppData\Roaming\Python\Python311\Scripts
26
26
  You might have to add this to your PATH:
27
27
  1) windows search: Edit the System Environment Variables
28
28
  2) Navigate: advanced / Environment Variables / select: PATH / Edit..
29
- 3) New: C:\Python311\Scripts
29
+ 3) New: C:\Users\USER\AppData\Roaming\Python\Python311
30
30
 
31
31
  Option 2: Install in your project venv
32
32
 
@@ -48,7 +48,7 @@ Add the following to your settings.json in vs-code (F1 + Preferences: Open User
48
48
  "inputs": [],
49
49
  "servers": {
50
50
  "snowflake_local": {
51
- "command": "C:\\Python311\\Scripts\\pggm_mcp_snowflake_server.exe",
51
+ "command": "C:\\Users\\SNST\\AppData\\Roaming\\Python\\Python311\\Scripts\\pggm_mcp_snowflake_server.exe",
52
52
  # In case you chose to install in your venv, replace above with the following:
53
53
  # "command": "{project_source}\\venv\\Scripts\\pggm_mcp_snowflake_server.exe",
54
54
  "args": [
@@ -88,10 +88,10 @@ def main():
88
88
 
89
89
  assert (
90
90
  "database" in connection_args
91
- ), 'You must provide the account identifier as "--database" argument or "SNOWFLAKE_DATABASE" environment variable.'
91
+ ), 'You must provide the database name as "--database" argument or "SNOWFLAKE_DATABASE" environment variable.'
92
92
  assert (
93
93
  "schema" in connection_args
94
- ), 'You must provide the username as "--schema" argument or "SNOWFLAKE_SCHEMA" environment variable.'
94
+ ), 'You must provide the schema name as "--schema" argument or "SNOWFLAKE_SCHEMA" environment variable.'
95
95
 
96
96
  asyncio.run(
97
97
  server.main(
@@ -108,4 +108,4 @@ def main():
108
108
  __all__ = ["main", "server", "write_detector"]
109
109
 
110
110
  if __name__ == "__main__":
111
- main()
111
+ main()
@@ -595,7 +595,7 @@ async def main(
595
595
  @server.list_tools()
596
596
  async def handle_list_tools() -> list[types.Tool]:
597
597
  logger.info("Listing tools")
598
- logger.error(f"Allowed tools: {allowed_tools}")
598
+ logger.info(f"Allowed tools: {allowed_tools}")
599
599
  tools = [
600
600
  types.Tool(
601
601
  name=tool.name,
@@ -619,4 +619,4 @@ async def main(
619
619
  experimental_capabilities={},
620
620
  ),
621
621
  ),
622
- )
622
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pggm-mcp-snowflake-server
3
- Version: 1.0.2
3
+ Version: 1.0.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
@@ -30,18 +30,18 @@ A customized Model Context Protocol (MCP) server for Snowflake integration, allo
30
30
 
31
31
  ### Using pip
32
32
 
33
- Option 1: Install Globally (Recommended)
34
- Install this globally so that it works with all your projects, run a powershell window and:
33
+ Option 1: Install
34
+ Install this in your user site-packages so that it works with all your projects, run a powershell window and:
35
35
 
36
36
  ```bash
37
- C:\Users\User> pip install pggm-mcp-snowflake-server
37
+ C:\Users\User> pip install --user pggm-mcp-snowflake-server
38
38
  ```
39
- This will install the package in: C:\Python311\Lib\site-packages
40
- with the .exe in your C:\Python311\Scripts
39
+ This will install the package in: C:\Users\USER\AppData\Roaming\Python\Python311\site-packages
40
+ with the .exe in your C:\Users\USER\AppData\Roaming\Python\Python311\Scripts
41
41
  You might have to add this to your PATH:
42
42
  1) windows search: Edit the System Environment Variables
43
43
  2) Navigate: advanced / Environment Variables / select: PATH / Edit..
44
- 3) New: C:\Python311\Scripts
44
+ 3) New: C:\Users\USER\AppData\Roaming\Python\Python311
45
45
 
46
46
  Option 2: Install in your project venv
47
47
 
@@ -63,7 +63,7 @@ Add the following to your settings.json in vs-code (F1 + Preferences: Open User
63
63
  "inputs": [],
64
64
  "servers": {
65
65
  "snowflake_local": {
66
- "command": "C:\\Python311\\Scripts\\pggm_mcp_snowflake_server.exe",
66
+ "command": "C:\\Users\\SNST\\AppData\\Roaming\\Python\\Python311\\Scripts\\pggm_mcp_snowflake_server.exe",
67
67
  # In case you chose to install in your venv, replace above with the following:
68
68
  # "command": "{project_source}\\venv\\Scripts\\pggm_mcp_snowflake_server.exe",
69
69
  "args": [
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pggm-mcp-snowflake-server"
7
- version = "1.0.2"
7
+ version = "1.0.4"
8
8
  description = "Custom Model Context Protocol server for Snowflake"
9
9
  readme = "README.md"
10
10
  classifiers = [