/ easyshell-mcp / server.json
server.json
1 { 2 "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json", 3 "name": "io.github.easyshell-ai/mcp-server", 4 "display_name": "EasyShell", 5 "description": "AI-Native Server Operations — manage hosts, execute scripts, orchestrate multi-host tasks, schedule inspections with AI-powered analysis.", 6 "homepage": "https://easyshell.ai", 7 "repository": "https://github.com/easyshell-ai/easyshell", 8 "icon": "https://easyshell.ai/logo.png", 9 "categories": ["devops", "cloud", "automation"], 10 "artifacts": { 11 "npm": { 12 "package": "@easyshell/mcp-server" 13 } 14 }, 15 "configuration": { 16 "properties": { 17 "EASYSHELL_URL": { 18 "type": "string", 19 "description": "EasyShell Server URL (e.g. http://localhost:18080)", 20 "required": true 21 }, 22 "EASYSHELL_USER": { 23 "type": "string", 24 "description": "EasyShell username", 25 "required": true 26 }, 27 "EASYSHELL_PASS": { 28 "type": "string", 29 "description": "EasyShell password", 30 "sensitive": true, 31 "required": true 32 } 33 } 34 } 35 }