Raw scan report

Automagik Tools — the complete, unedited output of the deterministic mcptrustchecker engine v1.13.0, scanned . Every finding, capability tag and score component below is exactly what the engine produced — no AI, no post-processing.

← Back to the scan page
{
  "tool": {
    "name": "mcptrustchecker",
    "version": "1.13.0",
    "methodologyVersion": "mcptrustchecker-1.13"
  },
  "target": {
    "id": "automagik-tools",
    "source": {
      "kind": "package",
      "origin": "automagik-tools"
    },
    "server": {
      "name": "automagik-tools"
    }
  },
  "grade": "A",
  "score": {
    "score": 93,
    "threatScore": 100,
    "grade": "A",
    "band": "A",
    "categorySubtotals": {
      "injection": 0,
      "exfiltration": 0,
      "permissions": 0,
      "supply-chain": 0,
      "network": 0,
      "hygiene": 0
    },
    "vector": [
      {
        "kind": "client",
        "term": "capability-exposure",
        "level": "high",
        "label": "capability blast radius (high) — client exposure if the model is manipulated",
        "appliedPenalty": 6
      },
      {
        "kind": "client",
        "term": "verification-discount",
        "level": "repo",
        "label": "publisher verification (public source) — no provenance, but the source is public and inspectable",
        "appliedPenalty": 1
      },
      {
        "kind": "client",
        "term": "coverage-honesty",
        "level": "source",
        "label": "inspection depth (source) — how much of the target the scan could see",
        "appliedPenalty": 0
      }
    ],
    "gatesFired": [],
    "methodologyVersion": "mcptrustchecker-1.13"
  },
  "capability": {
    "level": "high",
    "reasons": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "can send data / act on an external service",
      "can execute shell commands or code"
    ],
    "tags": [
      "untrusted-input",
      "external-sink",
      "code-exec"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (153 recovered), not enumerated from a running server. Tool-poisoning, Unicode-smuggling, capability and toxic-flow analysis ran on this inferred surface, but a mis-parsed registration could be missed or mis-attributed, so tool-derived findings are capped below “confirmed”. To grade the real runtime surface, scan the running server: --command \"npx -y <package>\"."
    ]
  },
  "findings": [
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (automagik_tools/cli.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`automagik_tools/cli.py:576`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "automagik_tools/cli.py"
      },
      "evidence": "script result = subprocess.run(cmd, capture_output=True, text=True) if result.returncode == 0:",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "automagik_tools/cli.py",
        "line": 576,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-FLOW-005",
      "title": "Untrusted input can drive an external action",
      "category": "exfiltration",
      "severity": "medium",
      "confidence": "strong",
      "description": "Untrusted-input tools ([download_media, read_messages, download_document]) co-exist with external-action tools ([send_message]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.",
      "remediation": "Require confirmation for state-changing/egress actions triggered after processing untrusted content.",
      "location": {
        "kind": "flow",
        "name": "download_media → send_message"
      },
      "evidence": "untrusted [download_media, read_messages, download_document] → sinks [send_message]",
      "owasp": "LLM06:2025 Excessive Agency",
      "references": [],
      "data": {
        "untrusted": [
          "download_media",
          "read_messages",
          "download_document"
        ],
        "sinks": [
          "send_message"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in packaging/dev tooling (tests/test_cli_simple.py)",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_cli_simple.py:47`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "tests/test_cli_simple.py"
      },
      "evidence": "t help result = subprocess.run( [\"python\", \"-c\", \"from automagik_tools.cli import app; app(['--help'",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "tests/test_cli_simple.py",
        "line": 47,
        "nonRuntime": true
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in packaging/dev tooling (tests/test_integration.py)",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_integration.py:115`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "tests/test_integration.py"
      },
      "evidence": "\"0\"} process = subprocess.Popen( [ sys.executable, \"-m\",",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "tests/test_integration.py",
        "line": 115,
        "nonRuntime": true
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "medium",
      "confidence": "strong",
      "untrustedInput": [
        "download_media",
        "read_messages",
        "download_document"
      ],
      "sensitiveSource": [],
      "externalSink": [
        "send_message"
      ],
      "selfContained": false,
      "description": "Untrusted input can drive an external action even though no sensitive source is exposed."
    }
  ],
  "capabilities": [
    {
      "tool": "list_mounted_tools",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hub_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_service_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_health_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_agents",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_agent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_agent_async",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_run_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_prompts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_prompt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_prompt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_prompt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_prompt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "activate_prompt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "deactivate_prompt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_sessions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_session_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_session",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_users",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_user",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_user",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_user",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_user",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_memories",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_memory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_memories_batch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_memory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_memory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_memory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_message",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "configure_mcp_servers",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_mcp_health",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_mcp_servers",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_mcp_server",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_mcp_server",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_mcp_server",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_mcp_server",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "start_mcp_server",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "stop_mcp_server",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "restart_mcp_server",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "call_mcp_tool",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "access_mcp_resource",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_mcp_server_tools",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_mcp_server_resources",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_agent_mcp_tools",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_claude_code_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_claude_code_run_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_claude_code_workflows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_claude_code_health",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "chat_agent",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_workflows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "check_workflow_progress",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "check_playground_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_available_agents",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "start_agent_conversation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "continue_agent_conversation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "view_agent_conversation_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_specific_agent_conversation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_agent_conversation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "rename_agent_conversation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "view_agent_memories",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_available_workflows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_workflow_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "execute_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "view_workflow_execution_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_workflow_execution_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_workflow_execution",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "rename_workflow_execution",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_available_teams",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_team_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "start_team_collaboration",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "view_team_collaboration_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_team_collaboration_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_team_collaboration",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "rename_team_collaboration",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "view_team_memories",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_text_message",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_media",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_audio",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_reaction",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_location",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_contact",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_presence",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_instance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_instance_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "consult_gemini",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_gemini_requests",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "end_session",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "my_connections",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "connection_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "my_contacts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "my_conversations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "add_contact",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_contact",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "remove_contact",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "download_media",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "find_message",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "find_person",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "find_chats",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_all_groups",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_group_members",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "my_whatsapp_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_whatsapp",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "react_with",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_sticker",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_message",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "check_is_whatsapp",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_poll",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "talk",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "read_messages",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"read_message\""
        ]
      }
    },
    {
      "tool": "check_new_messages",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ask_genie",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "genie_memory_stats",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "genie_clear_memories",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "start_google_auth",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "convert_json_to_docs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "upload_template",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "share_document",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_templates",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "download_document",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "extract_placeholders",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "validate_json_data",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_instances",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "send_message",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"send_message\""
        ]
      }
    },
    {
      "tool": "manage_traces",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_profiles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_chats",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_contacts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_all_channels",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_health",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_remote_workflows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_remote_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "sync_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_tasks",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_task",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_task",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_schedules",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_schedule",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_schedule",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_schedule",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_schedule",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "enable_schedule",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "disable_schedule",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_sources",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_source",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "add_source",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_source",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_source",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "wait_minutes",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "fdd7671b03c5a251d4199e784ad135185c58c595dfd4abdff1fe85b3606a9ddd",
  "stats": {
    "tools": 153,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 0,
      "high": 1,
      "medium": 1,
      "low": 2,
      "info": 0
    }
  }
}