fc5076d054247dfa934a71e95ca747ba0a7feaf1
Wyvern&Castle
Projet de NLP 2025-2026. Modèle MCP de D&D.
Initialisation du jeu
Pour lancer la partie il faut tout d'abord installer Claude Desktop (disponible sur Windows et Mac).
Installer l'utilitaire python UV :
# Mac/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows, l'ajouter au Path
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Initialiser le dossier pour l'installation
Creer un dossier et cloner le projet :
uv init wyvern-castle
cd wyvern-castle
git clone "https://gitea.galaxynoliro.fr/KuMiShi/Wyvern-Castle.git"
Creation de l'environnement virtuel
uv venv
Mac/Linux
source .venv/bin/activate
Windows
.\.venv\Scripts\activate
Installation du client mcp
uv add mcp[cli] httpx
Changement de la config de Claude Desktop
Modifier le fichier claude_desktop_config.json
{
"mcpServers": {
"weather": {
"command": "uv",
"args": [
"--directory",
"C:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\wyvern_castle",
"run",
"server.py"
]
}
}
}
Description
Languages
Python
100%