Ainative Zerodb — 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": "ainative-zerodb-mcp-server",
"source": {
"kind": "package",
"origin": "ainative-zerodb-mcp-server"
},
"server": {
"name": "ainative-zerodb-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",
"can create, modify or delete files",
"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",
"file-write"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (77 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: zerodb_download_file → zerodb_get_postgres_logs → zerodb_subscribe_events. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). 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": "zerodb_download_file → zerodb_get_postgres_logs → zerodb_subscribe_events"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"zerodb_list_vectors",
"zerodb_export_vectors",
"zerodb_download_file",
"zerodb_generate_presigned_url",
"zerodb_list_events"
],
"sources": [
"zerodb_list_files",
"zerodb_postgres_query",
"zerodb_get_postgres_logs"
],
"sinks": [
"zerodb_upload_file",
"zerodb_subscribe_events"
],
"path": [
"zerodb_download_file",
"zerodb_get_postgres_logs",
"zerodb_subscribe_events"
],
"edges": [
{
"from": "zerodb_download_file",
"to": "zerodb_get_postgres_logs",
"kind": "agent-mediated"
},
{
"from": "zerodb_get_postgres_logs",
"to": "zerodb_subscribe_events",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"webhook_url\" on \"zerodb_subscribe_events\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"zerodb_subscribe_events\" takes a URL/host parameter \"webhook_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": "zerodb_subscribe_events",
"field": "inputSchema.properties.webhook_url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "webhook_url"
}
},
{
"ruleId": "MTC-CAP-002",
"title": "Tool \"zerodb_delete_file\" can modify the filesystem",
"category": "permissions",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"zerodb_delete_file\" can write, overwrite or delete files (keyword \"delete_file\" in tool name). Verify it is scoped to a safe directory.",
"remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
"location": {
"kind": "tool",
"name": "zerodb_delete_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"zerodb_delete_file\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"zerodb_delete_file\" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.",
"remediation": "Declare accurate annotations, and gate destructive tools on user confirmation regardless.",
"location": {
"kind": "tool",
"name": "zerodb_delete_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-008",
"title": "Unconstrained path parameter \"file_id\" on \"zerodb_delete_file\"",
"category": "permissions",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"zerodb_delete_file\" takes a path parameter \"file_id\" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.",
"remediation": "Resolve and verify the path stays within an allowed root; reject traversal sequences.",
"location": {
"kind": "tool",
"name": "zerodb_delete_file",
"field": "inputSchema.properties.file_id"
},
"data": {
"param": "file_id"
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"zerodb_list_vectors",
"zerodb_export_vectors",
"zerodb_download_file",
"zerodb_generate_presigned_url",
"zerodb_list_events"
],
"sensitiveSource": [
"zerodb_list_files",
"zerodb_postgres_query",
"zerodb_get_postgres_logs"
],
"externalSink": [
"zerodb_upload_file",
"zerodb_subscribe_events"
],
"selfContained": false,
"path": [
"zerodb_download_file",
"zerodb_get_postgres_logs",
"zerodb_subscribe_events"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: zerodb_download_file → zerodb_get_postgres_logs → zerodb_subscribe_events."
}
],
"capabilities": [
{
"tool": "zerodb_generate_embeddings",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_embed_and_store",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_semantic_search",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_store_memory",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_search_memory",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_context",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_upsert_vector",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_batch_upsert_vectors",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_search_vectors",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_delete_vector",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_vector",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_list_vectors",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
]
}
},
{
"tool": "zerodb_vector_stats",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_create_vector_index",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_optimize_vectors",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_export_vectors",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "zerodb_quantum_compress",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_quantum_decompress",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_quantum_hybrid_search",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_quantum_optimize",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_quantum_feature_map",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_quantum_kernel",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_create_table",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_list_tables",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_table",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_delete_table",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_insert_rows",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_query_rows",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_update_rows",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_delete_rows",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_upload_file",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"upload_file\""
]
}
},
{
"tool": "zerodb_download_file",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "zerodb_list_files",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "zerodb_delete_file",
"tags": [
"file-write"
],
"reasons": {
"file-write": [
"keyword \"delete_file\" in tool name"
]
}
},
{
"tool": "zerodb_get_file_metadata",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_generate_presigned_url",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "zerodb_create_event",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_list_events",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
]
}
},
{
"tool": "zerodb_get_event",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_subscribe_events",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"webhook\"",
"parameter \"webhook\""
]
}
},
{
"tool": "zerodb_event_stats",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_create_project",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_project",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_list_projects",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_update_project",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_delete_project",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_project_stats",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_enable_database",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_interaction",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_agent_feedback",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_workflow",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_error",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_status",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_summary",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_start",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_stop",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_session",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_rlhf_broadcast",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_admin_system_stats",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_admin_list_projects",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_admin_user_usage",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_admin_health",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_admin_optimize",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_postgres_query",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"execute_sql\"",
"parameter \"sql\""
]
}
},
{
"tool": "zerodb_postgres_schema_info",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_postgres_create_table",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_postgres_backup",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_postgres_restore",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_postgres_stats",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_provision_postgres",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_postgres_status",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_postgres_connection",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_postgres_usage",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_get_postgres_logs",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"sql_query\""
]
}
},
{
"tool": "zerodb_restart_postgres",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_delete_postgres",
"tags": [],
"reasons": {}
},
{
"tool": "zerodb_renew_token",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "024b3d18382775ba21788516ca42d24412a599672663457a21af35313cabdbde",
"stats": {
"tools": 77,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 0,
"medium": 2,
"low": 2,
"info": 0
}
}
}