#!/bin/bash
set -e
# Create a virtual environment if it doesn't exist
if [ ! -d ".venv" ]; then
echo "Creating virtual environment..."
python -m venv .venv
fi
# Activate the virtual environment
source .venv/bin/activate
# Install dependencies
echo "Installing dependencies..."
pip install -e .
# Check if .env file exists, if not create from example
if [ ! -f ".env" ]; then
echo "Creating .env file from example..."
cp .env.example .env
echo "Please edit .env file if needed."
fi
# Run the MCP server
echo "Starting MCP server..."
python -m mcp_server_qdrant.main
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/Jimmy974/mcp-server-qdrant'
If you have feedback or need assistance with the MCP directory API, please join our Discord server