* Switch to Typer to read the CLI parameters and options * Rely on environmental variables only * Fix tests * Update README
10 lines
194 B
Python
10 lines
194 B
Python
from mcp_server_qdrant.server import mcp
|
|
|
|
|
|
def main():
|
|
"""
|
|
Main entry point for the mcp-server-qdrant script defined
|
|
in pyproject.toml. It runs the MCP server.
|
|
"""
|
|
mcp.run()
|