Mcp Qdrant Docker
Docker configuration for Qdrant MCP server
RollandMELET
README
Serveur MCP pour Qdrant
Contexte du projet
Ce projet fournit un serveur MCP (Model Context Protocol) pour permettre à Claude d'accéder à une base de données vectorielle Qdrant déployée sur un VPS.
Configuration
- Le serveur Qdrant est déployé sur Coolify
- URL:
http://qdrant-v8gc8cc4sk80o444ccck0gkg.178.16.129.71.sslip.io
- Collection:
ClaudeCollection
- URL:
- Le serveur MCP est déployé via Docker pour exposer le serveur Qdrant à Claude
Structure du projet
Dockerfile
: Configuration du conteneur Docker pour le serveur MCPdocker-compose.yaml
: Configuration pour déployer le service via Coolify
Configuration requise
Variables d'environnement
QDRANT_URL
: URL du serveur QdrantQDRANT_API_KEY
: Clé API pour l'authentification QdrantCOLLECTION_NAME
: Nom de la collection Qdrant à utiliserEMBEDDING_MODEL
: Modèle d'embedding à utiliser (par défaut: sentence-transformers/all-MiniLM-L6-v2)
Ports
- 8000: Port principal du serveur MCP (avec support SSE pour connexion à distance)
Utilisation avec Claude Desktop
Pour configurer Claude Desktop afin qu'il utilise ce serveur MCP, modifiez le fichier claude_desktop_config.json
comme suit:
{
"mcpServers": {
"qdrant": {
"url": "http://votre-adresse-ip:8000/sse",
"transport": "sse"
}
}
}
Remplacez votre-adresse-ip
par l'adresse IP publique de votre VPS ou le domaine complet fourni par Coolify.
Documentation et ressources
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.