mcp-server-motherduck 0.7.1__tar.gz → 0.7.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.

Potentially problematic release.


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

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-server-motherduck
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: A MCP server for MotherDuck and local DuckDB
5
5
  Author-email: tdoehmen <till@motherduck.com>
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mcp-server-motherduck"
3
- version = "0.7.1"
3
+ version = "0.7.2"
4
4
  description = "A MCP server for MotherDuck and local DuckDB"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -6,13 +6,13 @@
6
6
  "url": "https://github.com/motherduckdb/mcp-server-motherduck",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.7.1",
9
+ "version": "0.7.2",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "pypi",
13
13
  "registryBaseUrl": "https://pypi.org",
14
14
  "identifier": "mcp-server-motherduck",
15
- "version": "0.7.1",
15
+ "version": "0.7.2",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },
@@ -1,6 +1,6 @@
1
1
  from typing import Any
2
2
 
3
- SERVER_VERSION = "0.7.1"
3
+ SERVER_VERSION = "0.7.2"
4
4
 
5
5
  SERVER_LOCALHOST = "127.0.0.1"
6
6
 
@@ -182,7 +182,7 @@ class DatabaseClient:
182
182
 
183
183
  out = tabulate(
184
184
  q.fetchall(),
185
- headers=[d[0] + "\n" + d[1] for d in q.description],
185
+ headers=[d[0] + "\n" + str(d[1]) for d in q.description],
186
186
  tablefmt="pretty",
187
187
  )
188
188
 
@@ -178,7 +178,7 @@ wheels = [
178
178
 
179
179
  [[package]]
180
180
  name = "mcp-server-motherduck"
181
- version = "0.7.1"
181
+ version = "0.7.2"
182
182
  source = { editable = "." }
183
183
  dependencies = [
184
184
  { name = "anyio" },