Mnehmos.index Foundry.mcp — 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": "mnehmos.index-foundry.mcp",
"source": {
"kind": "package",
"origin": "mnehmos.index-foundry.mcp"
},
"server": {
"name": "mnehmos.index-foundry.mcp"
}
},
"grade": "A",
"score": {
"score": 92,
"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": "none",
"label": "publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read",
"appliedPenalty": 2
},
{
"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 (46 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/tools/projects.js)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`dist/tools/projects.js:1174`): 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/tools/projects.js"
},
"evidence": "exec } = await import(\"child_process\"); const { promisify } = await import(\"util\"); const execAsync = p",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "dist/tools/projects.js",
"line": 1174,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/tools/projects.ts)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/tools/projects.ts:54`): 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/tools/projects.ts"
},
"evidence": "{ ChildProcess } from \"child_process\"; import { ensureDir, pathExists, readJson, writeJson, readJsonl,",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/tools/projects.ts",
"line": 54,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (dist/tools/projects.js)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`dist/tools/projects.js:1907`): 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/tools/projects.js"
},
"evidence": "const response = await fetch(\"https://api.openai.com/v1/embeddings\", { method: \"POST\",",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "dist/tools/projects.js",
"line": 1907,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SRC-003",
"title": "Hardcoded egress to an external endpoint (src/tools/projects.ts)",
"category": "exfiltration",
"severity": "medium",
"confidence": "strong",
"description": "In the server's implementation (`src/tools/projects.ts:2440`): 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": "src/tools/projects.ts"
},
"evidence": "const response = await fetch(\"https://api.openai.com/v1/embeddings\", { method: \"POST\", headers: {",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-003",
"file": "src/tools/projects.ts",
"line": 2440,
"nonRuntime": false
}
},
{
"ruleId": "MTC-SUP-011",
"title": "Package declares no source repository",
"category": "supply-chain",
"severity": "info",
"confidence": "strong",
"description": "\"mnehmos.index-foundry.mcp\" declares no repository URL, so its published artifact cannot be compared against reviewable source.",
"remediation": "Prefer packages that link to public, reviewable source.",
"location": {
"kind": "package",
"name": "mnehmos.index-foundry.mcp"
}
}
],
"toxicFlows": [],
"capabilities": [
{
"tool": "indexfoundry_connect_url",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "indexfoundry_connect_sitemap",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "indexfoundry_connect_folder",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_connect_pdf",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "indexfoundry_extract_pdf",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_extract_html",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_extract_document",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_normalize_chunk",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_normalize_enrich",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_normalize_dedupe",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_index_embed",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_index_upsert",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_index_build_profile",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_serve_openapi",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_serve_start",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_serve_stop",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_serve_status",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_serve_query",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_run_status",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_run_list",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_run_diff",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_run_cleanup",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_create",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_list",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_get",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_delete",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_add_source",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"crawl\""
]
}
},
{
"tool": "indexfoundry_project_remove_source",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_build",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "indexfoundry_project_build_status",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_query",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_export",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_deploy",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_serve",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_serve_stop",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_project_serve_status",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_classify_query",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_extract_tables",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_debug_query",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_librarian_audit",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_librarian_assess",
"tags": [],
"reasons": {}
},
{
"tool": "indexfoundry_get_server_info",
"tags": [],
"reasons": {}
},
{
"tool": "search",
"tags": [],
"reasons": {}
},
{
"tool": "get_chunk",
"tags": [],
"reasons": {}
},
{
"tool": "list_sources",
"tags": [],
"reasons": {}
},
{
"tool": "stats",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "b208ddba52ad679edcb73694885f82d1f1724ac4254aa4dbdd9c1b65785364e2",
"stats": {
"tools": 46,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 0,
"high": 2,
"medium": 2,
"low": 0,
"info": 1
}
}
}