Raw scan report

Dataverse — 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": "mcp-dataverse",
    "source": {
      "kind": "package",
      "origin": "mcp-dataverse"
    },
    "server": {
      "name": "mcp-dataverse"
    }
  },
  "grade": "B",
  "score": {
    "score": 89,
    "threatScore": 100,
    "grade": "B",
    "band": "B",
    "categorySubtotals": {
      "injection": 0,
      "exfiltration": 0,
      "permissions": 0,
      "supply-chain": 0,
      "network": 0,
      "hygiene": 0
    },
    "vector": [
      {
        "kind": "client",
        "term": "capability-exposure",
        "level": "critical",
        "label": "capability blast radius (critical) — client exposure if the model is manipulated",
        "appliedPenalty": 10
      },
      {
        "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": "critical",
    "reasons": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "can send data / act on an external service",
      "reads sensitive or local data",
      "has a read → egress path (a data-exfiltration surface)",
      "can execute shell commands or code",
      "untrusted-input, sensitive-source and egress co-exist across tools (toxic-flow surface)",
      "untrusted input can reach code execution"
    ],
    "tags": [
      "external-sink",
      "sensitive-source",
      "untrusted-input",
      "code-exec"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (129 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-FLOW-002",
      "title": "Completed toxic-flow trifecta across tools",
      "category": "exfiltration",
      "severity": "critical",
      "confidence": "strong",
      "description": "This server (without client built-ins) exposes a complete data-exfiltration chain: dataverse_download_file_column → dataverse_get_environment_variable ⇒ dataverse_batch_execute. Untrusted input is ingested, private data is read, and it can be sent to an external sink — and at least one leg is a direct schema wire (⇒), where a producer's output drops straight into a free-text parameter of the next tool, so the chain needs little agent cooperation. Static analysis proves the primitive exists, not that a specific run will occur.",
      "remediation": "Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.",
      "location": {
        "kind": "flow",
        "name": "dataverse_download_file_column → dataverse_get_environment_variable → dataverse_batch_execute"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "dataverse_download_file_column",
          "file_operations",
          "dataverse_open_table_browser"
        ],
        "sources": [
          "dataverse_get_environment_variable",
          "dataverse_set_environment_variable",
          "dataverse_plugin_trace_viewer_get_logs"
        ],
        "sinks": [
          "dataverse_batch_execute",
          "dataverse_upload_file_column"
        ],
        "path": [
          "dataverse_download_file_column",
          "dataverse_get_environment_variable",
          "dataverse_batch_execute"
        ],
        "edges": [
          {
            "from": "dataverse_download_file_column",
            "to": "dataverse_get_environment_variable",
            "kind": "agent-mediated"
          },
          {
            "from": "dataverse_get_environment_variable",
            "to": "dataverse_batch_execute",
            "kind": "schema-wired"
          }
        ],
        "wired": true
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/doctor.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/doctor.js:4`): 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": "dist/doctor.js"
      },
      "evidence": ";import{exec as Pe}from\"child_process\";import{platform as G}from\"process\";function Z(s){let e=G===\"win32\"?`echo|set /p=\"",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/doctor.js",
        "line": 4,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/server.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/server.js:4`): 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": "dist/server.js"
      },
      "evidence": ";import{exec as Fr}from\"child_process\";import{platform as Ft}from\"process\";function Bt(r){let a=Ft===\"win32\"?`echo|set /",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/server.js",
        "line": 4,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (dist/setup-auth.js)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`dist/setup-auth.js:4`): 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": "dist/setup-auth.js"
      },
      "evidence": "\";import{exec as B}from\"child_process\";import{platform as S}from\"process\";function I(t){let e=S===\"win32\"?`echo|set /p=\"",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/setup-auth.js",
        "line": 4,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-CAP-007",
      "title": "Unconstrained URL/host parameter \"url\" on \"dataverse_batch_execute\"",
      "category": "network",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"dataverse_batch_execute\" takes a URL/host parameter \"url\" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).",
      "remediation": "Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.",
      "location": {
        "kind": "tool",
        "name": "dataverse_batch_execute",
        "field": "inputSchema.properties.url"
      },
      "owasp": "LLM06:2025 Excessive Agency",
      "data": {
        "param": "url"
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in packaging/dev tooling (dist/install.js)",
      "category": "permissions",
      "severity": "low",
      "confidence": "heuristic",
      "description": "In a packaging/dev/install script (shipped, but not the server runtime) (`dist/install.js:2`): 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": "dist/install.js"
      },
      "evidence": "\";import{exec as Z}from\"child_process\";import{platform as A}from\"process\";import{createCipheriv as O,createDecipheriv as",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "dist/install.js",
        "line": 2,
        "nonRuntime": true
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "dataverse_download_file_column",
        "file_operations",
        "dataverse_open_table_browser"
      ],
      "sensitiveSource": [
        "dataverse_get_environment_variable",
        "dataverse_set_environment_variable",
        "dataverse_plugin_trace_viewer_get_logs"
      ],
      "externalSink": [
        "dataverse_batch_execute",
        "dataverse_upload_file_column"
      ],
      "selfContained": false,
      "path": [
        "dataverse_download_file_column",
        "dataverse_get_environment_variable",
        "dataverse_batch_execute"
      ],
      "pathWired": true,
      "description": "A cross-tool exfiltration chain exists: dataverse_download_file_column → dataverse_get_environment_variable ⇒ dataverse_batch_execute."
    }
  ],
  "capabilities": [
    {
      "tool": "dataverse_whoami",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_tables",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_table_metadata",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_relationships",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_global_option_sets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_option_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_entity_key",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_attribute_option_set",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_update_entity",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_set_table_icon",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_resolve_entity_name",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_query",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_execute_fetchxml",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_retrieve_multiple_with_paging",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_create",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_update",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_delete",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_upsert",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_assign",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_associate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_associate_bulk",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_disassociate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_query_associations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_execute_action",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_execute_function",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_execute_bound_action",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_retrieve_dependencies_for_delete",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_execute_bound_function",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_dependencies",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_batch_execute",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"put_request\""
        ]
      }
    },
    {
      "tool": "dataverse_change_detection",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_publish_customizations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_impersonate",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_custom_actions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_plugin_steps",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_set_workflow_state",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_connection_references",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_environment_variable",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"get_env\""
        ]
      }
    },
    {
      "tool": "dataverse_set_environment_variable",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"get_env\""
        ]
      }
    },
    {
      "tool": "dataverse_create_environment_variable",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_environment_capabilities",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_plugin_trace_logs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_workflow_trace_logs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_search",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_audit_log",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_detect_duplicates",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_annotations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_create_annotation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_user_roles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_users",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_roles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_assign_role_to_user",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_remove_role_from_user",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_role_privileges",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_add_role_privileges",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_replace_role_privileges",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_views",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_business_units",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_upload_file_column",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"upload_file\""
        ]
      }
    },
    {
      "tool": "dataverse_download_file_column",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "dataverse_create_web_resource",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_teams",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_assign_role_to_team",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_suggest_tools",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_tool_tags",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Table Schema",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Table Relationships",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Available Tables",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Server Instructions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "analyze-org-health",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "data-quality-check",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "tableName",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "sampleSize",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "schema-review",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "security-audit",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "analyze-workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "workflowName",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "statusFilter",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "query_data",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "explore_schema",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_record",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_record",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_record",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bulk_operations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_data",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "manage_solution",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "inspect_audit",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "file_operations",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "batch_schema_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_guides",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_guide",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_list_workflows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_get_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_create_attribute",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_update_attribute",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_delete_attribute",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_create_lookup_attribute",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_create_sitemap",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_create_table",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_create_relationship",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_check_record_access",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_grant_access",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_revoke_access",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_merge_records",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_open_table_browser",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"browse\""
        ]
      }
    },
    {
      "tool": "dataverse_table_browser_list_tables",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_table_browser_get_rows",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_open_fetchxml_workbench",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_fetchxml_workbench_list_tables",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_fetchxml_workbench_list_attributes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_fetchxml_workbench_execute",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_open_plugin_trace_viewer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_plugin_trace_viewer_get_logs",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"get_logs\""
        ]
      }
    },
    {
      "tool": "dataverse_open_schema_explorer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_schema_explorer_list_tables",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_schema_explorer_get_entity",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_open_rbac_inspector",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_rbac_inspector_list_roles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_rbac_inspector_get_role_privileges",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_rbac_inspector_list_users",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_rbac_inspector_get_user_roles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_rbac_inspector_list_field_profiles",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "dataverse_rbac_inspector_get_profile_permissions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Dataverse Table Browser",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Dataverse FetchXML Workbench",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Dataverse Plugin Trace Viewer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Dataverse Schema Explorer",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "Dataverse RBAC Inspector",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "e78c19fe0c98d49f7cb5fd60a14b9954ccc2edfdd6d0180ef9dd18baa1bda6fc",
  "stats": {
    "tools": 129,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 3,
      "medium": 1,
      "low": 1,
      "info": 0
    }
  }
}