mcp-server-motherduck 0.3__tar.gz → 0.3.1__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.
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/PKG-INFO +1 -1
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/pyproject.toml +1 -1
- mcp_server_motherduck-0.3.1/src/mcp_server_motherduck/__main__.py +19 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/src/mcp_server_motherduck/server.py +1 -1
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/.github/workflows/python-publish.yml +0 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/.gitignore +0 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/.python-version +0 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/LICENSE +0 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/README.md +0 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/makefile +0 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/src/mcp_server_motherduck/__init__.py +0 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/src/mcp_server_motherduck/prompt.py +0 -0
- {mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/uv.lock +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-0.3 → mcp_server_motherduck-0.3.1}/.github/workflows/python-publish.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/src/mcp_server_motherduck/__init__.py
RENAMED
|
File without changes
|
{mcp_server_motherduck-0.3 → mcp_server_motherduck-0.3.1}/src/mcp_server_motherduck/prompt.py
RENAMED
|
File without changes
|
|
File without changes
|