loading…
Search for a command to run...
loading…
An MCP server that enables managing Docker containers through natural language commands, allowing users to create, list, and delete containers. It facilitates a
An MCP server that enables managing Docker containers through natural language commands, allowing users to create, list, and delete containers. It facilitates automated container orchestration and integrates with VS Code via the Cline extension.
Servidor MCP para controlar Docker con lenguaje natural usando Cline y modelos gratuitos. Esta demostración trata de simular la automatización de la orquestación de contenedores en Docker.
npm install
Crea/edita %USERPROFILE%\.continue\config.json:
{
"models": [
{
"title": "Kat Coder Pro",
"provider": "openai",
"model": "kat-coder-pro",
"apiBase": "https://api.kat.ai/v1"
}
],
"mcpServers": {
"docker": {
"command": "node",
"args": ["C:\\Users\\Rodri\\OneDrive\\Desktop\\Docker-MCP\\app\\index.js"]
}
}
}
En VS Code, abre Cline → Settings → MCP Servers y pega:
{
"mcpServers": {
"docker": {
"command": "node",
"args": ["C:\\Users\\Rodri\\OneDrive\\Desktop\\Docker-MCP\\app\\index.js"]
}
}
}
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"docker-mcp-server": {
"command": "npx",
"args": []
}
}
}