mcp-server-motherduck 0.6.2__tar.gz → 0.6.3__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.

Potentially problematic release.


This version of mcp-server-motherduck might be problematic. Click here for more details.

Files changed (19) hide show
  1. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/.idea/workspace.xml +1 -3
  2. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/PKG-INFO +2 -2
  3. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/README.md +0 -1
  4. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/pyproject.toml +2 -1
  5. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/src/mcp_server_motherduck/configs.py +1 -1
  6. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/uv.lock +12 -1
  7. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/.github/workflows/python-publish.yml +0 -0
  8. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/.gitignore +0 -0
  9. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/.idea/.gitignore +0 -0
  10. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/.idea/mcp-server-motherduck.iml +0 -0
  11. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/.idea/misc.xml +0 -0
  12. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/.idea/modules.xml +0 -0
  13. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/.idea/vcs.xml +0 -0
  14. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/LICENSE +0 -0
  15. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/makefile +0 -0
  16. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/src/mcp_server_motherduck/__init__.py +0 -0
  17. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/src/mcp_server_motherduck/database.py +0 -0
  18. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/src/mcp_server_motherduck/prompt.py +0 -0
  19. {mcp_server_motherduck-0.6.2 → mcp_server_motherduck-0.6.3}/src/mcp_server_motherduck/server.py +0 -0
@@ -13,10 +13,8 @@
13
13
  </component>
14
14
  <component name="ChangeListManager">
15
15
  <list default="true" id="8bdee1d4-886c-4093-b4cf-95b120034c9e" name="Changes" comment="">
16
- <change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
17
16
  <change beforePath="$PROJECT_DIR$/pyproject.toml" beforeDir="false" afterPath="$PROJECT_DIR$/pyproject.toml" afterDir="false" />
18
17
  <change beforePath="$PROJECT_DIR$/src/mcp_server_motherduck/configs.py" beforeDir="false" afterPath="$PROJECT_DIR$/src/mcp_server_motherduck/configs.py" afterDir="false" />
19
- <change beforePath="$PROJECT_DIR$/src/mcp_server_motherduck/database.py" beforeDir="false" afterPath="$PROJECT_DIR$/src/mcp_server_motherduck/database.py" afterDir="false" />
20
18
  </list>
21
19
  <option name="SHOW_DIALOG" value="false" />
22
20
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -97,7 +95,7 @@
97
95
  <workItem from="1750084439422" duration="575000" />
98
96
  <workItem from="1750086684829" duration="92000" />
99
97
  <workItem from="1750099676834" duration="5651000" />
100
- <workItem from="1750235697329" duration="2124000" />
98
+ <workItem from="1750235697329" duration="4118000" />
101
99
  </task>
102
100
  <servers />
103
101
  </component>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-server-motherduck
3
- Version: 0.6.2
3
+ Version: 0.6.3
4
4
  Summary: A MCP server for MotherDuck and local DuckDB
5
5
  Author-email: tdoehmen <till@motherduck.com>
6
6
  License-File: LICENSE
@@ -9,6 +9,7 @@ Requires-Dist: anyio>=4.8.0
9
9
  Requires-Dist: click>=8.1.8
10
10
  Requires-Dist: duckdb==1.3.1
11
11
  Requires-Dist: mcp>=1.9.4
12
+ Requires-Dist: pytz>=2025.2
12
13
  Requires-Dist: starlette>=0.46.1
13
14
  Requires-Dist: tabulate>=0.9.0
14
15
  Requires-Dist: uvicorn>=0.34.0
@@ -221,7 +222,6 @@ Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace
221
222
  **Important Notes**:
222
223
 
223
224
  - Replace `YOUR_MOTHERDUCK_TOKEN_HERE` with your actual MotherDuck token
224
- - The `HOME` environment variable is required for DuckDB to function properly.
225
225
 
226
226
  ## Securing your MCP Server when querying MotherDuck
227
227
 
@@ -205,7 +205,6 @@ Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace
205
205
  **Important Notes**:
206
206
 
207
207
  - Replace `YOUR_MOTHERDUCK_TOKEN_HERE` with your actual MotherDuck token
208
- - The `HOME` environment variable is required for DuckDB to function properly.
209
208
 
210
209
  ## Securing your MCP Server when querying MotherDuck
211
210
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mcp-server-motherduck"
3
- version = "0.6.2"
3
+ version = "0.6.3"
4
4
  description = "A MCP server for MotherDuck and local DuckDB"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -12,6 +12,7 @@ dependencies = [
12
12
  "uvicorn>=0.34.0",
13
13
  "anyio>=4.8.0",
14
14
  "mcp>=1.9.4",
15
+ "pytz>=2025.2"
15
16
  ]
16
17
 
17
18
  [[project.authors]]
@@ -1,6 +1,6 @@
1
1
  from typing import Any
2
2
 
3
- SERVER_VERSION = "0.6.2"
3
+ SERVER_VERSION = "0.6.3"
4
4
 
5
5
  SERVER_LOCALHOST = "127.0.0.1"
6
6
 
@@ -182,13 +182,14 @@ wheels = [
182
182
 
183
183
  [[package]]
184
184
  name = "mcp-server-motherduck"
185
- version = "0.6.2"
185
+ version = "0.6.3"
186
186
  source = { editable = "." }
187
187
  dependencies = [
188
188
  { name = "anyio" },
189
189
  { name = "click" },
190
190
  { name = "duckdb" },
191
191
  { name = "mcp" },
192
+ { name = "pytz" },
192
193
  { name = "starlette" },
193
194
  { name = "tabulate" },
194
195
  { name = "uvicorn" },
@@ -200,6 +201,7 @@ requires-dist = [
200
201
  { name = "click", specifier = ">=8.1.8" },
201
202
  { name = "duckdb", specifier = "==1.3.1" },
202
203
  { name = "mcp", specifier = ">=1.9.4" },
204
+ { name = "pytz", specifier = ">=2025.2" },
203
205
  { name = "starlette", specifier = ">=0.46.1" },
204
206
  { name = "tabulate", specifier = ">=0.9.0" },
205
207
  { name = "uvicorn", specifier = ">=0.34.0" },
@@ -339,6 +341,15 @@ wheels = [
339
341
  { url = "https://files.pythonhosted.org/packages/45/58/38b5afbc1a800eeea951b9285d3912613f2603bdf897a4ab0f4bd7f405fc/python_multipart-0.0.20-py3-none-any.whl", hash = "sha256:8a62d3a8335e06589fe01f2a3e178cdcc632f3fbe0d492ad9ee0ec35aab1f104", size = 24546 },
340
342
  ]
341
343
 
344
+ [[package]]
345
+ name = "pytz"
346
+ version = "2025.2"
347
+ source = { registry = "https://pypi.org/simple" }
348
+ sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884 }
349
+ wheels = [
350
+ { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225 },
351
+ ]
352
+
342
353
  [[package]]
343
354
  name = "sniffio"
344
355
  version = "1.3.1"