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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-server-motherduck
3
- Version: 0.3
3
+ Version: 0.3.1
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.3"
3
+ version = "0.3.1"
4
4
  description = "A MCP server for MotherDuck and local DuckDB"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -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()
@@ -9,7 +9,7 @@ from mcp.server import NotificationOptions, Server
9
9
  from mcp.server.models import InitializationOptions
10
10
  from .prompt import PROMPT_TEMPLATE
11
11
 
12
- SERVER_VERSION = "0.3"
12
+ SERVER_VERSION = "0.3.1"
13
13
 
14
14
  logger = logging.getLogger("mcp_server_motherduck")
15
15