mcp-server-motherduck 0.3.2__py3-none-any.whl → 0.3.3__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.
- mcp_server_motherduck/server.py +3 -3
- {mcp_server_motherduck-0.3.2.dist-info → mcp_server_motherduck-0.3.3.dist-info}/METADATA +1 -1
- mcp_server_motherduck-0.3.3.dist-info/RECORD +9 -0
- mcp_server_motherduck-0.3.2.dist-info/RECORD +0 -9
- {mcp_server_motherduck-0.3.2.dist-info → mcp_server_motherduck-0.3.3.dist-info}/WHEEL +0 -0
- {mcp_server_motherduck-0.3.2.dist-info → mcp_server_motherduck-0.3.3.dist-info}/entry_points.txt +0 -0
- {mcp_server_motherduck-0.3.2.dist-info → mcp_server_motherduck-0.3.3.dist-info}/licenses/LICENSE +0 -0
mcp_server_motherduck/server.py
CHANGED
|
@@ -12,7 +12,7 @@ from mcp.server.models import InitializationOptions
|
|
|
12
12
|
from .prompt import PROMPT_TEMPLATE
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
SERVER_VERSION = "0.3.
|
|
15
|
+
SERVER_VERSION = "0.3.3"
|
|
16
16
|
|
|
17
17
|
logger = logging.getLogger("mcp_server_motherduck")
|
|
18
18
|
|
|
@@ -94,10 +94,10 @@ class DatabaseClient:
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
|
|
97
|
-
async def main(db_path: str):
|
|
97
|
+
async def main(db_path: str, result_format: Literal["markdown", "duckbox", "text"] = "markdown"):
|
|
98
98
|
logger.info(f"Starting MotherDuck MCP Server with DB path: {db_path}")
|
|
99
99
|
server = Server("mcp-server-motherduck")
|
|
100
|
-
db_client = DatabaseClient(db_path=db_path)
|
|
100
|
+
db_client = DatabaseClient(db_path=db_path, result_format=result_format)
|
|
101
101
|
|
|
102
102
|
logger.info("Registering handlers")
|
|
103
103
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
mcp_server_motherduck/__init__.py,sha256=0BPvfyJm7xnVEIZD7JLiuHuR0FFhf_Xa9xt7ieTZHWQ,723
|
|
2
|
+
mcp_server_motherduck/__main__.py,sha256=zx-Zgf5qrL280vm9L9vM64kBGfdvneJhZcU8pWSYLOw,410
|
|
3
|
+
mcp_server_motherduck/prompt.py,sha256=P7BrmhVXwDkPeSHQ3f25WMP6lpBpN2BxDzYPOQ3fxX8,56699
|
|
4
|
+
mcp_server_motherduck/server.py,sha256=ROYQvC2fRkLRyWj_SW8NYC1omlms6lnlhdLLMBn_Aiw,7979
|
|
5
|
+
mcp_server_motherduck-0.3.3.dist-info/METADATA,sha256=CTtfZg5sIqoPmAIPk49lYg6xE-lE1fLOfDsf754AGWU,2015
|
|
6
|
+
mcp_server_motherduck-0.3.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
mcp_server_motherduck-0.3.3.dist-info/entry_points.txt,sha256=dRTgcvWJn40bz0PVuKPylK6w92cFN32lwunZOgo5j4s,69
|
|
8
|
+
mcp_server_motherduck-0.3.3.dist-info/licenses/LICENSE,sha256=Tj68w9jCiceFKTvZ3jET-008NjhozcQMXpm-fyL9WUI,1067
|
|
9
|
+
mcp_server_motherduck-0.3.3.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
mcp_server_motherduck/__init__.py,sha256=0BPvfyJm7xnVEIZD7JLiuHuR0FFhf_Xa9xt7ieTZHWQ,723
|
|
2
|
-
mcp_server_motherduck/__main__.py,sha256=zx-Zgf5qrL280vm9L9vM64kBGfdvneJhZcU8pWSYLOw,410
|
|
3
|
-
mcp_server_motherduck/prompt.py,sha256=P7BrmhVXwDkPeSHQ3f25WMP6lpBpN2BxDzYPOQ3fxX8,56699
|
|
4
|
-
mcp_server_motherduck/server.py,sha256=EA8l90R52aXKhU4FuH9x3mnC81srZqg8omO19tYASiQ,7882
|
|
5
|
-
mcp_server_motherduck-0.3.2.dist-info/METADATA,sha256=238sc-UWVhRXcdRDFA4KjSkp7x934JZTekujgYkzCoo,2015
|
|
6
|
-
mcp_server_motherduck-0.3.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
-
mcp_server_motherduck-0.3.2.dist-info/entry_points.txt,sha256=dRTgcvWJn40bz0PVuKPylK6w92cFN32lwunZOgo5j4s,69
|
|
8
|
-
mcp_server_motherduck-0.3.2.dist-info/licenses/LICENSE,sha256=Tj68w9jCiceFKTvZ3jET-008NjhozcQMXpm-fyL9WUI,1067
|
|
9
|
-
mcp_server_motherduck-0.3.2.dist-info/RECORD,,
|
|
File without changes
|
{mcp_server_motherduck-0.3.2.dist-info → mcp_server_motherduck-0.3.3.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{mcp_server_motherduck-0.3.2.dist-info → mcp_server_motherduck-0.3.3.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|