Tatine13 Manager — 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.
{
"tool": {
"name": "mcptrustchecker",
"version": "1.13.0",
"methodologyVersion": "mcptrustchecker-1.13"
},
"target": {
"id": "@tatine13/mcp-manager",
"source": {
"kind": "package",
"origin": "@tatine13/mcp-manager"
},
"server": {
"name": "@tatine13/mcp-manager"
}
},
"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 (34 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 (dist/bin/cli.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/bin/cli.js:21`): 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/bin/cli.js"
},
"evidence": "t { spawn, exec } from 'child_process'; import { z } from 'zod'; var DEFAULT_DATA_DIR = path2.join(os.homedir(), \".mail",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/bin/cli.js",
"line": 21,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/bin/server.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/bin/server.js:20`): 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/bin/server.js"
},
"evidence": "t { spawn, exec } from 'child_process'; import { z } from 'zod'; var DEFAULT_DATA_DIR = path2.join(os.homedir(), \".mail",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/bin/server.js",
"line": 20,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/index.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/index.js:19`): 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/index.js"
},
"evidence": "t { spawn, exec } from 'child_process'; import { z } from 'zod'; // src/core/server.ts var DEFAULT_DATA_DIR = path2.joi",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/index.js",
"line": 19,
"nonRuntime": false
}
},
{
"ruleId": "MTC-FLOW-005",
"title": "Untrusted input can drive an external action",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "Untrusted-input tools ([read_email, download_attachment]) co-exist with external-action tools ([send_email, create_inbound_webhook, create_outbound_webhook, webhook_logs]). 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": "read_email → send_email"
},
"evidence": "untrusted [read_email, download_attachment] → sinks [send_email, create_inbound_webhook, create_outbound_webhook, webhook_logs]",
"owasp": "LLM06:2025 Excessive Agency",
"references": [],
"data": {
"untrusted": [
"read_email",
"download_attachment"
],
"sinks": [
"send_email",
"create_inbound_webhook",
"create_outbound_webhook",
"webhook_logs"
]
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "medium",
"confidence": "strong",
"untrustedInput": [
"read_email",
"download_attachment"
],
"sensitiveSource": [],
"externalSink": [
"send_email",
"create_inbound_webhook",
"create_outbound_webhook",
"webhook_logs"
],
"selfContained": false,
"description": "Untrusted input can drive an external action even though no sensitive source is exposed."
}
],
"capabilities": [
{
"tool": "add_provider_preset",
"tags": [],
"reasons": {}
},
{
"tool": "list_provider_presets",
"tags": [],
"reasons": {}
},
{
"tool": "add_account",
"tags": [],
"reasons": {}
},
{
"tool": "list_accounts",
"tags": [],
"reasons": {}
},
{
"tool": "remove_account",
"tags": [],
"reasons": {}
},
{
"tool": "test_connection",
"tags": [],
"reasons": {}
},
{
"tool": "get_email_history",
"tags": [],
"reasons": {}
},
{
"tool": "search_local_emails",
"tags": [],
"reasons": {}
},
{
"tool": "sync_emails",
"tags": [],
"reasons": {}
},
{
"tool": "list_emails",
"tags": [],
"reasons": {}
},
{
"tool": "read_email",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"read_email\""
]
}
},
{
"tool": "send_email",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"send_email\""
]
}
},
{
"tool": "search_emails",
"tags": [],
"reasons": {}
},
{
"tool": "move_email",
"tags": [],
"reasons": {}
},
{
"tool": "delete_email",
"tags": [],
"reasons": {}
},
{
"tool": "download_attachment",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "create_persona",
"tags": [],
"reasons": {}
},
{
"tool": "list_personas",
"tags": [],
"reasons": {}
},
{
"tool": "update_persona",
"tags": [],
"reasons": {}
},
{
"tool": "delete_persona",
"tags": [],
"reasons": {}
},
{
"tool": "create_directive",
"tags": [],
"reasons": {}
},
{
"tool": "list_directives",
"tags": [],
"reasons": {}
},
{
"tool": "test_directive",
"tags": [],
"reasons": {}
},
{
"tool": "delete_directive",
"tags": [],
"reasons": {}
},
{
"tool": "create_task",
"tags": [],
"reasons": {}
},
{
"tool": "list_tasks",
"tags": [],
"reasons": {}
},
{
"tool": "execute_task",
"tags": [],
"reasons": {}
},
{
"tool": "delete_task",
"tags": [],
"reasons": {}
},
{
"tool": "create_inbound_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "create_outbound_webhook",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "list_webhooks",
"tags": [],
"reasons": {}
},
{
"tool": "webhook_logs",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\""
]
}
},
{
"tool": "get_server_info",
"tags": [],
"reasons": {}
},
{
"tool": "vault_status",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "b5b7b5b390e511e78754ea3c937d47b66328b82f89b008cf54d757995f036309",
"stats": {
"tools": 34,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 3,
"medium": 1,
"low": 0,
"info": 0
}
}
}