Raw scan report

Elmapicms — 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": "@elmapicms/mcp-server",
    "source": {
      "kind": "package",
      "origin": "@elmapicms/mcp-server"
    },
    "server": {
      "name": "@elmapicms/mcp-server"
    }
  },
  "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",
      "reads sensitive or local data",
      "has a read → egress path (a data-exfiltration surface)",
      "untrusted-input, sensitive-source and egress co-exist across tools (toxic-flow surface)"
    ],
    "tags": [
      "untrusted-input",
      "external-sink",
      "sensitive-source"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (40 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: get_entry_version ⇒ create_webhook → delete_webhook. 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": "get_entry_version → create_webhook → delete_webhook"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "get_entry_version"
        ],
        "sources": [
          "create_webhook",
          "update_webhook"
        ],
        "sinks": [
          "create_webhook",
          "update_webhook",
          "delete_webhook"
        ],
        "path": [
          "get_entry_version",
          "create_webhook",
          "delete_webhook"
        ],
        "edges": [
          {
            "from": "get_entry_version",
            "to": "create_webhook",
            "kind": "schema-wired"
          },
          {
            "from": "create_webhook",
            "to": "delete_webhook",
            "kind": "agent-mediated"
          }
        ],
        "wired": true
      }
    },
    {
      "ruleId": "MTC-FLOW-003",
      "title": "Read-and-egress in one tool: \"create_webhook\"",
      "category": "exfiltration",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"create_webhook\" can both read sensitive data and send data to an external destination. Even without an explicit untrusted-input leg, this is a single-call data-exfiltration path if the model is ever manipulated.",
      "remediation": "Separate reading from sending; require explicit user confirmation before egress of file/secret contents.",
      "location": {
        "kind": "flow",
        "name": "create_webhook"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "tags": [
          "external-sink",
          "sensitive-source"
        ]
      }
    },
    {
      "ruleId": "MTC-FLOW-003",
      "title": "Read-and-egress in one tool: \"update_webhook\"",
      "category": "exfiltration",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"update_webhook\" can both read sensitive data and send data to an external destination. Even without an explicit untrusted-input leg, this is a single-call data-exfiltration path if the model is ever manipulated.",
      "remediation": "Separate reading from sending; require explicit user confirmation before egress of file/secret contents.",
      "location": {
        "kind": "flow",
        "name": "update_webhook"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "tags": [
          "external-sink",
          "sensitive-source"
        ]
      }
    },
    {
      "ruleId": "MTC-CAP-007",
      "title": "Unconstrained URL/host parameter \"url\" on \"create_webhook\"",
      "category": "network",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"create_webhook\" 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": "create_webhook",
        "field": "inputSchema.properties.url"
      },
      "owasp": "LLM06:2025 Excessive Agency",
      "data": {
        "param": "url"
      }
    },
    {
      "ruleId": "MTC-CAP-007",
      "title": "Unconstrained URL/host parameter \"url\" on \"update_webhook\"",
      "category": "network",
      "severity": "medium",
      "confidence": "heuristic",
      "description": "Tool \"update_webhook\" 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": "update_webhook",
        "field": "inputSchema.properties.url"
      },
      "owasp": "LLM06:2025 Excessive Agency",
      "data": {
        "param": "url"
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "get_entry_version"
      ],
      "sensitiveSource": [
        "create_webhook",
        "update_webhook"
      ],
      "externalSink": [
        "create_webhook",
        "update_webhook",
        "delete_webhook"
      ],
      "selfContained": false,
      "path": [
        "get_entry_version",
        "create_webhook",
        "delete_webhook"
      ],
      "pathWired": true,
      "description": "A cross-tool exfiltration chain exists: get_entry_version ⇒ create_webhook → delete_webhook."
    },
    {
      "id": "flow-2",
      "severity": "high",
      "confidence": "strong",
      "untrustedInput": [],
      "sensitiveSource": [
        "create_webhook"
      ],
      "externalSink": [
        "create_webhook"
      ],
      "selfContained": true,
      "description": "Tool \"create_webhook\" both reads sensitive data and can send it externally."
    },
    {
      "id": "flow-3",
      "severity": "high",
      "confidence": "strong",
      "untrustedInput": [],
      "sensitiveSource": [
        "update_webhook"
      ],
      "externalSink": [
        "update_webhook"
      ],
      "selfContained": true,
      "description": "Tool \"update_webhook\" both reads sensitive data and can send it externally."
    }
  ],
  "capabilities": [
    {
      "tool": "list_assets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_asset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "upload_asset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bulk_upload_assets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bulk_update_asset_metadata",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_asset",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_collections",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_collection",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_collection",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_collection",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "reorder_collections",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_entries",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_entry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_entry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_entry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "patch_entry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "publish_entry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "unpublish_entry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "discard_entry_draft",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_entry",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "link_entry_translation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bulk_create_entries",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bulk_update_entries",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "bulk_delete_entries",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_entry_versions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_entry_version",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"fetch\""
        ]
      }
    },
    {
      "tool": "revert_entry_version",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_entry_version_label",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_field",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "update_field",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "reorder_fields",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_project",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "add_project_locale",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "set_default_project_locale",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_webhooks",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_webhook",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_webhook",
      "tags": [
        "external-sink",
        "sensitive-source"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ],
        "sensitive-source": [
          "parameter \"secret\""
        ]
      }
    },
    {
      "tool": "update_webhook",
      "tags": [
        "external-sink",
        "sensitive-source"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ],
        "sensitive-source": [
          "parameter \"secret\""
        ]
      }
    },
    {
      "tool": "delete_webhook",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"webhook\""
        ]
      }
    },
    {
      "tool": "list_webhook_logs",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "141161706cdc30258d8ef79ed80acdd202044576dde752b9f18d0b4257316733",
  "stats": {
    "tools": 40,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 2,
      "medium": 2,
      "low": 0,
      "info": 0
    }
  }
}