Skip to main content
Glama

mcp-server-qdrant

Official
by qdrant
main.py699 B
import argparse def main(): """ Main entry point for the mcp-server-qdrant script defined in pyproject.toml. It runs the MCP server with a specific transport protocol. """ # Parse the command-line arguments to determine the transport protocol. parser = argparse.ArgumentParser(description="mcp-server-qdrant") parser.add_argument( "--transport", choices=["stdio", "sse", "streamable-http"], default="stdio", ) args = parser.parse_args() # Import is done here to make sure environment variables are loaded # only after we make the changes. from mcp_server_qdrant.server import mcp mcp.run(transport=args.transport)

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/qdrant/mcp-server-qdrant'

If you have feedback or need assistance with the MCP directory API, please join our Discord server