Veeam MCP
Analysis
The skill appears purpose-built for Veeam monitoring, but it needs review because it uses Veeam administrator credentials with an externally obtained beta Docker MCP server.
Findings (5)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
The Veeam Intelligence MCP server is currently in beta. ... Once you have the MCP server package, build the Docker image: docker build -t veeam-intelligence-mcp-server .
The key runtime component is an external beta MCP server package obtained outside the skill, with no pinned version, checksum, source URL, or included Dockerfile in the reviewed artifacts.
echo "Send JSON-RPC requests via stdin. Ctrl+D to exit." ... docker run -i --rm ... -e "ADMIN_PASSWORD=$PASSWORD" ... veeam-intelligence-mcp-server
The helper starts an unrestricted interactive MCP session using the same stored credentials, rather than limiting use to the specific question-answering wrapper.
Verify credentials: cat ~/.veeam-mcp-creds.json | jq . ... ✅ Credentials stored locally only ... ✅ No credentials in logs or command history
The troubleshooting command prints the full credentials file, including passwords, while the security section broadly claims credentials are not exposed.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
PASSWORD=$(jq -r ".${PRODUCT}.password" "$CREDS_FILE") ... -e "ADMIN_USERNAME=$USERNAME" ... -e "ADMIN_PASSWORD=$PASSWORD" ... -e "ACCEPT_SELF_SIGNED_CERT=true"The script reads locally stored Veeam credentials and passes the username and password into the Docker MCP server as environment variables; it also enables self-signed certificate acceptance by default.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
User Question → OpenClaw Skill → Docker MCP Server → Veeam API ... Veeam Intelligence ... JSON Response
The documented data flow sends user questions and Veeam backup/infrastructure information through an MCP server and Veeam Intelligence.
