Raw scan report

Glyphs Info — 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": "glyphs-info-mcp",
    "source": {
      "kind": "package",
      "origin": "glyphs-info-mcp"
    },
    "server": {
      "name": "glyphs-info-mcp"
    }
  },
  "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": [
      "can execute shell commands or code"
    ],
    "tags": [
      "code-exec"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (14 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 (src/glyphs_info_mcp/data/official/GlyphsSDK/ObjectWrapper/Sphinx Documentation/code2sphinx.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/glyphs_info_mcp/data/official/GlyphsSDK/ObjectWrapper/Sphinx Documentation/code2sphinx.py:39`): 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": "src/glyphs_info_mcp/data/official/GlyphsSDK/ObjectWrapper/Sphinx Documentation/code2sphinx.py"
      },
      "evidence": "t subprocess process = subprocess.Popen(command, stdout=subprocess.PIPE, shell=True, close_fds=True) os.waitpid(proces",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/glyphs_info_mcp/data/official/GlyphsSDK/ObjectWrapper/Sphinx Documentation/code2sphinx.py",
        "line": 39,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/glyphs_info_mcp/modules/glyphs_plugins/accessors/official_registry.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/glyphs_info_mcp/modules/glyphs_plugins/accessors/official_registry.py:231`): 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": "src/glyphs_info_mcp/modules/glyphs_plugins/accessors/official_registry.py"
      },
      "evidence": "on result = subprocess.run( ['plutil', '-convert', 'xml1', '-o', '-', '-'],",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/glyphs_info_mcp/modules/glyphs_plugins/accessors/official_registry.py",
        "line": 231,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/glyphs_info_mcp/modules/glyphs_vocabulary/accessors/base_nib_extractor.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/glyphs_info_mcp/modules/glyphs_vocabulary/accessors/base_nib_extractor.py:101`): 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": "src/glyphs_info_mcp/modules/glyphs_vocabulary/accessors/base_nib_extractor.py"
      },
      "evidence": "ML result = subprocess.run( [\"plutil\", \"-convert\", \"xml1\", \"-o\", \"-\", str(nib_path)],",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/glyphs_info_mcp/modules/glyphs_vocabulary/accessors/base_nib_extractor.py",
        "line": 101,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/glyphs_info_mcp/shared/core/python_api_native_accessor.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/glyphs_info_mcp/shared/core/python_api_native_accessor.py:99`): 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": "src/glyphs_info_mcp/shared/core/python_api_native_accessor.py"
      },
      "evidence": "ty result = subprocess.run( [\"grep\", \"-n\", \"-F\", pattern, str(self.init_file)],",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/glyphs_info_mcp/shared/core/python_api_native_accessor.py",
        "line": 99,
        "nonRuntime": false
      }
    }
  ],
  "toxicFlows": [],
  "capabilities": [
    {
      "tool": "search_python_api",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_objc_api",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_drawing_tools",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_plugins_api",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_class_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_api_overview",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "api_search_objc_headers",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "api_get_objc_header",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_plugins",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_plugin_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_method_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_plugin_code",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_available_plugins",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_inheritance_info",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "153bb946510fc6b357d5f165ac7f2e736cadfd0e6e16b846a2899b7e9be41a88",
  "stats": {
    "tools": 14,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 0,
      "high": 4,
      "medium": 0,
      "low": 0,
      "info": 0
    }
  }
}