{
"mcpServers": {
"dvdtheque-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 145 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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