mcp-server-motherduck 0.3__py3-none-any.whl → 0.3.1__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/__main__.py +19 -0
- mcp_server_motherduck/server.py +1 -1
- {mcp_server_motherduck-0.3.dist-info → mcp_server_motherduck-0.3.1.dist-info}/METADATA +1 -1
- mcp_server_motherduck-0.3.1.dist-info/RECORD +9 -0
- mcp_server_motherduck-0.3.dist-info/RECORD +0 -8
- {mcp_server_motherduck-0.3.dist-info → mcp_server_motherduck-0.3.1.dist-info}/WHEEL +0 -0
- {mcp_server_motherduck-0.3.dist-info → mcp_server_motherduck-0.3.1.dist-info}/entry_points.txt +0 -0
- {mcp_server_motherduck-0.3.dist-info → mcp_server_motherduck-0.3.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from . import server
|
|
2
|
+
import asyncio
|
|
3
|
+
import argparse
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def main():
|
|
7
|
+
"""Main entry point for the package."""
|
|
8
|
+
parser = argparse.ArgumentParser(description="MotherDuck MCP Server")
|
|
9
|
+
parser.add_argument(
|
|
10
|
+
"--db-path",
|
|
11
|
+
help="Path to local DuckDB database file",
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
args = parser.parse_args()
|
|
15
|
+
asyncio.run(server.main(db_path=args.db_path))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
if __name__ == "__main__":
|
|
19
|
+
main()
|
mcp_server_motherduck/server.py
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
mcp_server_motherduck/__init__.py,sha256=355quIOEeF3hj4vBH-esu6yDKcNHUIrkrZZQLZ6gWLU,460
|
|
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=3Ki4T3jiv6viM4-DHKEF5cpweIcVvD2O01lGmuBwOt8,7149
|
|
5
|
+
mcp_server_motherduck-0.3.1.dist-info/METADATA,sha256=3dwytXskQyyNy-wWs4oGVZsXyOO2TtvXWjTK22rlGIw,1955
|
|
6
|
+
mcp_server_motherduck-0.3.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
mcp_server_motherduck-0.3.1.dist-info/entry_points.txt,sha256=dRTgcvWJn40bz0PVuKPylK6w92cFN32lwunZOgo5j4s,69
|
|
8
|
+
mcp_server_motherduck-0.3.1.dist-info/licenses/LICENSE,sha256=Tj68w9jCiceFKTvZ3jET-008NjhozcQMXpm-fyL9WUI,1067
|
|
9
|
+
mcp_server_motherduck-0.3.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
mcp_server_motherduck/__init__.py,sha256=355quIOEeF3hj4vBH-esu6yDKcNHUIrkrZZQLZ6gWLU,460
|
|
2
|
-
mcp_server_motherduck/prompt.py,sha256=P7BrmhVXwDkPeSHQ3f25WMP6lpBpN2BxDzYPOQ3fxX8,56699
|
|
3
|
-
mcp_server_motherduck/server.py,sha256=ap895Gea8qG_ckv5kcCtsMhH_EaRKkwRvusj8L3F2n0,7147
|
|
4
|
-
mcp_server_motherduck-0.3.dist-info/METADATA,sha256=hf8TF5EpG6ZJckue3DqRE01feR7YhiEIvbuUBMkYEz8,1953
|
|
5
|
-
mcp_server_motherduck-0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
6
|
-
mcp_server_motherduck-0.3.dist-info/entry_points.txt,sha256=dRTgcvWJn40bz0PVuKPylK6w92cFN32lwunZOgo5j4s,69
|
|
7
|
-
mcp_server_motherduck-0.3.dist-info/licenses/LICENSE,sha256=Tj68w9jCiceFKTvZ3jET-008NjhozcQMXpm-fyL9WUI,1067
|
|
8
|
-
mcp_server_motherduck-0.3.dist-info/RECORD,,
|
|
File without changes
|
{mcp_server_motherduck-0.3.dist-info → mcp_server_motherduck-0.3.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{mcp_server_motherduck-0.3.dist-info → mcp_server_motherduck-0.3.1.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|