entroly
PyPI
v1.0.83
Published by juyterman1000 — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.
Drop-in Context Assurance for AI agents: reduce avoidable token usage and AI cost with evidence selection, receipts, exact recovery, and verification.
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 7.5 = 93. What the published surface and source actually contain:
| Points | What was found | Category |
|---|---|---|
| −6.3 | Unsafe deserialization MTC-SRC-007 | permissions |
| −1.2 | Instruction-override directive MTC-INJ-AUTH-2 | injection |
2. Client adoption risk — 93 − 7 = 86. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −6 | capability blast radius (high) — client exposure if the model is manipulated |
| −1 | publisher verification (public source) — no provenance, but the source is public and inspectable |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
In the server's implementation (`entroly/work_graph_path_policy.py:11`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: filename is the leak. ``id_rsa`` and ``credentials.json`` disclose that a secret exists and what kind, and a vendored de
Fix: 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: server entroly/work_graph_path_policy.py
In the server's implementation (`entroly/cli.py:271`): 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.
Evidence: uest resp = urllib.request.urlopen( "https://pypi.org/pypi/entroly/json", timeout=3
Fix: 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: server entroly/cli.py
In the server's implementation (`entroly/server.py:2249`): Deserializing untrusted data with these APIs can execute arbitrary code (a well-known RCE gadget class). This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: , "CWE-502","Critical","pickle.loads(", None, "Unsafe deserialization"), ("CRYPTO-001","CWE-327","High",
Fix: 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: server entroly/server.py
Instruction-override directive detected in the description of tool "security_scan". Instruction-like content in tool metadata is executed by the model, not the human, and is the primary tool-poisoning vector.
Evidence: ignore previous instructions
Fix: Tool descriptions should describe behavior, not instruct the assistant. Treat imperative / secrecy / sequencing language in metadata as hostile.
Location: tool security_scan · description
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/language_symbol_coverage.py:246`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: dule_name] = module exec(compile(source, module.__file__, "exec"), module.__dict__) return module def _module_
Fix: 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: server benchmarks/language_symbol_coverage.py
In a packaging/dev/install script (shipped, but not the server runtime) (`bench/fix_nb6.py:31`): 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.
Evidence: entroly'):\n", " subprocess.run(['git', 'clone', '--depth', '1', 'https://github.com/juyterman1000/entroly.git',
Fix: 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: server bench/fix_nb6.py
In a packaging/dev/install script (shipped, but not the server runtime) (`bench/quality_eval.py:162`): 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.
Evidence: 8" try: r = subprocess.run( [ "entroly", "optimize", "--task", q
Fix: 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: server bench/quality_eval.py
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/agent_symbol_delivery.py:60`): 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.
Evidence: str) -> str: return subprocess.run( ["git", *args], cwd=REPO_ROOT, capture_output=True, text=True, check=Tru
Fix: 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: server benchmarks/agent_symbol_delivery.py
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/agentic_task_miner.py:51`): 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.
Evidence: etedProcess: return subprocess.run( ["git", "-C", str(repo), *args], capture_output=True, te
Fix: 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: server benchmarks/agentic_task_miner.py
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/agentic_tasks_run.py:447`): 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.
Evidence: ") completed = subprocess.run( [sys.executable, "-m", "pytest", task.test_file, "-q", "--no-header"
Fix: 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: server benchmarks/agentic_tasks_run.py
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/audited_runner.py:90`): 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.
Evidence: try: return subprocess.check_output( ["git", "rev-parse", "HEAD"], cwd=ROOT, text=True )
Fix: 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: server benchmarks/audited_runner.py
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/closed_set_selection_frontier.py:52`): 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.
Evidence: -> str: completed = subprocess.run( ["git", "rev-parse", "HEAD"], cwd=ROOT, check=True,
Fix: 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: server benchmarks/closed_set_selection_frontier.py
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/coding_tasks.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.
Evidence: try: subprocess.run( task.setup_command, shell=True,
Fix: 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: server benchmarks/coding_tasks.py
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/competitive_provenance.py:64`): 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.
Evidence: () -> str: result = subprocess.run( ["git", "rev-parse", "HEAD"], cwd=ROOT, capture_output=True, text=True,
Fix: 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: server benchmarks/competitive_provenance.py
In a packaging/dev/install script (shipped, but not the server runtime) (`benchmarks/compression_frontier.py:526`): 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.
Evidence: , Any]: completed = subprocess.run( command, cwd=root, input=json.dumps(payload), ca
Fix: 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: server benchmarks/compression_frontier.py
Each tool and what it can reach — statically extracted from the published source.
advance_proof_guided_contextno sensitive capabilityanalyze_codebase_healthno sensitive capabilityblast_radiusno sensitive capabilitycheckpoint_stateno sensitive capabilitycompile_beliefsno sensitive capabilitycompile_docsno sensitive capabilitycoverage_gapsno sensitive capabilitycreate_context_receiptno sensitive capabilitycreate_context_receipt_from_pathno sensitive capabilitycreate_skillno sensitive capabilityeicv_suppress_hallucinationsno sensitive capabilityeicv_verify_claimno sensitive capabilityentroly_dashboardno sensitive capabilityentroly_retrieveno sensitive capabilityepistemic_routeno sensitive capabilityexecute_flowno sensitive capabilityexplain_contextno sensitive capabilityexplain_receipt_omissionno sensitive capabilityexport_training_datano sensitive capabilityget_statsno sensitive capabilityingest_diagramno sensitive capabilityingest_diffno sensitive capabilityingest_voiceno sensitive capabilityinspect_proof_guided_contextno sensitive capabilitylist_compression_receiptsno sensitive capabilitymanage_skillsno sensitive capabilityoptimize_contextno sensitive capabilityprefetch_relatedno sensitive capabilityprepare_proof_guided_contextno sensitive capabilityprepare_task_dreamno sensitive capabilityprocess_changeno sensitive capabilityrecall_relevantno sensitive capabilityrecord_ci_resultno sensitive capabilityrecord_command_exitno sensitive capabilityrecord_edit_outcomeno sensitive capabilityrecord_outcomeno sensitive capabilityrecord_test_resultno sensitive capabilityrecover_receipt_omissionno sensitive capabilityrefresh_beliefsno sensitive capabilityremember_fragmentno sensitive capabilityrender_context_receiptno sensitive capabilityrepo_file_mapno sensitive capabilityresume_stateno sensitive capabilityretrieve_compressed_spanno sensitive capabilityscan_for_vulnerabilitiesno sensitive capabilitysearch_compressed_spansno sensitive capabilitysecurity_reportno sensitive capabilitysecurity_scanno sensitive capabilitysmart_readno sensitive capabilitystart_workspace_listenerno sensitive capabilitysync_workspace_changesno sensitive capabilityvault_hygiene_scanno sensitive capabilityvault_queryno sensitive capabilityvault_searchno sensitive capabilityvault_statusno sensitive capabilityvault_time_travelno sensitive capabilityvault_write_actionno sensitive capabilityvault_write_beliefno sensitive capabilityverify_and_repairno sensitive capabilityverify_beliefsno sensitive capabilityverify_provenanceno sensitive capabilityverify_responseno sensitive capabilitywork_acknowledge_recoveryno sensitive capabilitywork_claimno sensitive capabilitywork_compile_contextno sensitive capabilitywork_context_faultno sensitive capabilitywork_handoffno sensitive capabilitywork_modificationsno sensitive capabilitywork_record_contextno sensitive capabilitywork_record_executionno sensitive capabilitywork_record_memoryno sensitive capabilitywork_resumeno sensitive capabilitywork_session_statusno sensitive capabilitywork_stateno sensitive capabilityScan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v1.0.83 latest |
B 86/100 | 15 | 1.13.0 | 2026-09-07 |
v1.0.81 |
B 86/100 | 16 | 1.13.0 | 2026-08-30 |
v1.0.78 |
A 92/100 | 14 | 1.13.0 | 2026-08-25 |
v1.0.77 |
A 92/100 | 14 | 1.12.1 | 2026-08-13 |
v1.0.76 |
A 92/100 | 13 | 1.12.1 | 2026-08-12 |
v1.0.75 |
A 92/100 | 14 | 1.12.1 | 2026-08-05 |
v1.0.74 |
A 92/100 | 14 | 1.12.1 | 2026-08-04 |
v1.0.72 |
A 92/100 | 14 | 1.12.1 | 2026-08-03 |
v1.0.70 |
A 92/100 | 14 | 1.12.1 | 2026-08-01 |
v1.0.69 |
A 92/100 | 14 | 1.12.1 | 2026-07-31 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan entroly --online --registry pypi
Independent packages implementing the same tool, scanned with the same engine. Compare all 2 side by side →
Hotel booking MCP server — 300K+ properties, real confirmation numbers, loyalty programs. Builders monetize every booking via Stripe Connect. The first MCP server that completes real hotel reservations inside AI conversations.
Manage AdGuard Home through AI assistants
Read-only Azure DevOps for MCP clients using only your existing browser session — no PAT, no Azure CLI. Browse work items, pull requests, comments, attachments and Artifacts feeds across every project, repo and feed you can access.
MCP server for Adobe Experience Manager Assets integration development
Servidor MCP para el tiempo oficial de España (API pública OpenData de AEMET). Predicción, observación y avisos como herramientas MCP tipadas.
A standalone MCP stdio bridge for Affinity by Canva's local MCP SSE server.