Fodda — 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": "fodda-mcp",
"source": {
"kind": "package",
"origin": "fodda-mcp"
},
"server": {
"name": "fodda-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": [
"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",
"code-exec",
"external-sink"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (47 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/verify.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/verify.js:1`): 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/verify.js"
},
"evidence": "import { spawn } from 'child_process'; import { createInterface } from 'readline'; async function runTest() { conso",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/verify.js",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/verify_hmac.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/verify_hmac.js:3`): 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/verify_hmac.js"
},
"evidence": "import { spawn } from 'child_process'; import dotenv from 'dotenv'; import path from 'path'; // Load env vars dotenv.co",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/verify_hmac.js",
"line": 3,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (dist/verify_tools_endpoint.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/verify_tools_endpoint.js:1`): 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/verify_tools_endpoint.js"
},
"evidence": "import { spawn } from 'child_process'; import axios from 'axios'; import { MCP_SERVER_VERSION } from './tools.js'; asyn",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/verify_tools_endpoint.js",
"line": 1,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/sessionTracker.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/sessionTracker.js:33`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. 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/sessionTracker.js"
},
"evidence": "const resp = await fetch('https://slack.com/api/chat.postMessage', { method: 'POST', header",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/sessionTracker.js",
"line": 33,
"nonRuntime": false
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "get_my_account",
"tags": [],
"reasons": {}
},
{
"tool": "list_graphs",
"tags": [],
"reasons": {}
},
{
"tool": "get_capabilities",
"tags": [],
"reasons": {}
},
{
"tool": "list_analysts",
"tags": [],
"reasons": {}
},
{
"tool": "search_graph",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"web_search\""
]
}
},
{
"tool": "get_neighbors",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"web_search\""
]
}
},
{
"tool": "get_evidence",
"tags": [],
"reasons": {}
},
{
"tool": "get_node",
"tags": [],
"reasons": {}
},
{
"tool": "get_label_values",
"tags": [],
"reasons": {}
},
{
"tool": "discover_adjacent_trends",
"tags": [],
"reasons": {}
},
{
"tool": "brand_tracker",
"tags": [],
"reasons": {}
},
{
"tool": "get_supplemental_context",
"tags": [],
"reasons": {}
},
{
"tool": "check_supplemental_status",
"tags": [],
"reasons": {}
},
{
"tool": "get_domain_intelligence",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"web_search\""
]
}
},
{
"tool": "get_expert_intelligence",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"web_search\""
]
}
},
{
"tool": "get_report_intelligence",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"web_search\""
]
}
},
{
"tool": "search_statistics",
"tags": [],
"reasons": {}
},
{
"tool": "search_insights",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"web_search\""
]
}
},
{
"tool": "draft_linkedin_post",
"tags": [],
"reasons": {}
},
{
"tool": "draft_linkedin_article",
"tags": [],
"reasons": {}
},
{
"tool": "get_earnings_intelligence",
"tags": [],
"reasons": {}
},
{
"tool": "get_earnings_divergence",
"tags": [],
"reasons": {}
},
{
"tool": "get_company_earnings",
"tags": [],
"reasons": {}
},
{
"tool": "get_validated_trends",
"tags": [],
"reasons": {}
},
{
"tool": "update_user_profile",
"tags": [],
"reasons": {}
},
{
"tool": "toggle_graph_preference",
"tags": [],
"reasons": {}
},
{
"tool": "send_feedback",
"tags": [],
"reasons": {}
},
{
"tool": "sign_up_free_account",
"tags": [],
"reasons": {}
},
{
"tool": "brainstorm_topic",
"tags": [],
"reasons": {}
},
{
"tool": "generate_visual",
"tags": [],
"reasons": {}
},
{
"tool": "manage_scheduled_reports",
"tags": [],
"reasons": {}
},
{
"tool": "read_url",
"tags": [],
"reasons": {}
},
{
"tool": "deep_research_topic",
"tags": [],
"reasons": {}
},
{
"tool": "check_research_status",
"tags": [],
"reasons": {}
},
{
"tool": "consult_analyst",
"tags": [],
"reasons": {}
},
{
"tool": "consult_human_agent",
"tags": [],
"reasons": {}
},
{
"tool": "request_deliverable",
"tags": [],
"reasons": {}
},
{
"tool": "check_deliverable_status",
"tags": [],
"reasons": {}
},
{
"tool": "begin_expert_onboarding",
"tags": [],
"reasons": {}
},
{
"tool": "submit_basic_info",
"tags": [],
"reasons": {}
},
{
"tool": "expert_onboarding_research",
"tags": [],
"reasons": {}
},
{
"tool": "submit_expertise_analysis",
"tags": [],
"reasons": {}
},
{
"tool": "get_detected_themes",
"tags": [],
"reasons": {}
},
{
"tool": "confirm_themes",
"tags": [],
"reasons": {}
},
{
"tool": "get_onboarding_status",
"tags": [],
"reasons": {}
},
{
"tool": "schedule_interview",
"tags": [],
"reasons": {}
},
{
"tool": "get_my_earnings",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "98ff57563bf8141648d83ac91c9a7f3df26c38c58ed70e6af2d174333dfd8e0e",
"stats": {
"tools": 47,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 3,
"medium": 1,
"low": 0,
"info": 0
}
}
}