Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"dvdtheque-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
// ============================================================================ // 10. README.md - Documentation // ============================================================================
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
The official MCP Server for the Mux API
MCP Server for Text to Speech
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Unity MCP Server — 268 tools for AI-assisted game development. Connect Claude, Cursor, or any MCP client to Unity Editor & Unity Hub. Scene management, GameObjects, components, builds, profiling, Shader Graph, Amplify, terrain, physics, NavMesh, animation, MPPM multiplayer & more. Free & open source by AnkleBreaker Studio.
MCP Security Weekly
Get CVE alerts and security updates for Dvdtheque Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
// ============================================================================ // 10. README.md - Documentation // ============================================================================ /*
Serveur MCP (Model Context Protocol) qui expose une API conversationnelle pour gérer une collection de Films en utilisant Spring AI + Ollama (LLM local).
curl -fsSL https://ollama.com/install.sh | sh
Téléchargez depuis https://ollama.com/download
# Modèle recommandé (performant et léger)
ollama pull llama3.2
# Alternatives
ollama pull mistral
ollama pull llama2
ollama pull codellama
ollama list
curl http://localhost:11434/api/tags
Changer le modèle si nécessaire:
spring:
ai:
ollama:
base-url: http://localhost:11434
chat:
options:
model: llama3.2 # ou mistral, llama2, etc.
dvdtheque:
api:
base-url: http://localhost:3000/api
# Compiler
mvn clean install
# Lancer
mvn spring-boot:run
POST http://localhost:8080/mcp/chat
Content-Type: application/json
{
"message": "Montre-moi tous les films de science-fiction",
"conversationId": "user123"
}
DELETE http://localhost:8080/mcp/conversation/user123
GET http://localhost:8080/mcp/health
GET /api/dvds - Tous les DVDs
GET /api/dvds/{id} - DVD par ID
POST /api/dvds - Créer un DVD
PUT /api/dvds/{id} - Mettre à jour un DVD
DELETE /api/dvds/{id} - Supprimer un DVD
GET /api/dvds/search?q= - Rechercher des DVDs
curl -X POST http://localhost:8080/mcp/chat \
-H "Content-Type: application/json" \
-d '{"message": "Montre-moi tous mes films"}'
curl -X POST http://localhost:8080/mcp/chat \
-H "Content-Type: application/json" \
-d '{"message": "Cherche les films de Christopher Nolan"}'
curl -X POST http://localhost:8080/mcp/chat \
-H "Content-Type: application/json" \
-d '{"message": "Ajoute le film Inception réalisé par Christopher Nolan en 2010, genre science-fiction, note 4.8"}'
curl -X POST http://localhost:8080/mcp/chat \
-H "Content-Type: application/json" \
-d '{"message": "Change la note du film numéro 5 à 4.5"}'
curl -X POST http://localhost:8080/mcp/chat \
-H "Content-Type: application/json" \
-d '{"message": "Supprime le DVD avec l'ID 3"}'
curl -X POST http://localhost:8080/mcp/chat \
-H "Content-Type: application/json" \
-d '{"message": "Quels sont mes films les mieux notés ?"}'
✅ Gratuit et open-source ✅ Exécution locale (confidentialité des données) ✅ Pas de limite de requêtes ✅ Pas besoin de clé API ✅ Fonctionne offline ✅ Plusieurs modèles disponibles
Les réponses