Turingmind MCP Server

turingmind-mcp PyPI v0.3.0

Published by turingmindai — 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.

Trust grade
A
93/100
Last scanned
Trust
A · 93/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
A Why this grade threat 100 − adoption risk = 93/100

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 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. 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:

PointsAdoption-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
inspection depth (source) — how much of the target the scan could see

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.

Findings 19

high Sensitive-source and external-sink co-existMTC-FLOW-004

Tools that read sensitive data ([turingmind_get_edit_reasoning, turingmind_request_code_edit, turingmind_analyze_diff, turingmind_store_auto_plan, turingmind_get_auto_plans, turingmind_apply_edit, turingmind_bootstrap_codebase]) and tools that can send data out ([turingmind_enable_auto_review, turingmind_create_issue, turingmind_create_comment]) are exposed together. An agent can move private data to the sink.

Evidence: sources [turingmind_get_edit_reasoning, turingmind_request_code_edit, turingmind_analyze_diff, turingmind_store_auto_plan, turingmind_get_auto_plans, turingmind

Fix: Keep secret-reading and egress capabilities on separate, separately-approved servers.

Location: flow turingmind_get_edit_reasoning → turingmind_enable_auto_review

high Shell/command execution in server code (src/turingmind_mcp/auto_review_service.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/auto_review_service.py:119`): 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: subprocess.run(

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 src/turingmind_mcp/auto_review_service.py

high Shell/command execution in server code (src/turingmind_mcp/chat_capture.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/chat_capture.py:413`): 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: subprocess.run(

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 src/turingmind_mcp/chat_capture.py

high Shell/command execution in server code (src/turingmind_mcp/chat_observation_poller.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/chat_observation_poller.py:65`): 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: subprocess.check_output(

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 src/turingmind_mcp/chat_observation_poller.py

high Shell/command execution in server code (src/turingmind_mcp/client/client.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/client/client.py:59`): 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: subprocess.Popen(

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 src/turingmind_mcp/client/client.py

high Shell/command execution in server code (src/turingmind_mcp/cursor_database_reader.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/cursor_database_reader.py:109`): 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: subprocess.run(

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 src/turingmind_mcp/cursor_database_reader.py

high Shell/command execution in server code (src/turingmind_mcp/entity_indexer.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/entity_indexer.py:455`): 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: subprocess.run(

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 src/turingmind_mcp/entity_indexer.py

high Shell/command execution in server code (src/turingmind_mcp/git_churn.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/git_churn.py:37`): 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: subprocess.run(

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 src/turingmind_mcp/git_churn.py

high Shell/command execution in server code (src/turingmind_mcp/unified_cli.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/unified_cli.py:61`): 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: subprocess.run(

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 src/turingmind_mcp/unified_cli.py

high Shell/command execution in server code (src/turingmind_mcp/v2_engine/handlers.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/v2_engine/handlers.py:618`): 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: subprocess.run(

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 src/turingmind_mcp/v2_engine/handlers.py

high Shell/command execution in server code (src/turingmind_mcp/v2_engine/security_scanner.py)MTC-SRC-002

In the server's implementation (`src/turingmind_mcp/v2_engine/security_scanner.py:94`): 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: subprocess.run(

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 src/turingmind_mcp/v2_engine/security_scanner.py

medium Unconstrained URL/host parameter "webhook_url" on "turingmind_enable_auto_review"MTC-CAP-007

Tool "turingmind_enable_auto_review" 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).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool turingmind_enable_auto_review · inputSchema.properties.webhook_url

low Unconstrained path parameter "file_path" on "turingmind_get_edit_reasoning"MTC-CAP-008

Tool "turingmind_get_edit_reasoning" takes a path parameter "file_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool turingmind_get_edit_reasoning · inputSchema.properties.file_path

low Unconstrained path parameter "file_path" on "turingmind_request_code_edit"MTC-CAP-008

Tool "turingmind_request_code_edit" takes a path parameter "file_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool turingmind_request_code_edit · inputSchema.properties.file_path

low Unconstrained path parameter "file_path" on "turingmind_analyze_diff"MTC-CAP-008

Tool "turingmind_analyze_diff" takes a path parameter "file_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool turingmind_analyze_diff · inputSchema.properties.file_path

low Unconstrained path parameter "file_path" on "turingmind_store_auto_plan"MTC-CAP-008

Tool "turingmind_store_auto_plan" takes a path parameter "file_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool turingmind_store_auto_plan · inputSchema.properties.file_path

low Unconstrained path parameter "file_path" on "turingmind_get_auto_plans"MTC-CAP-008

Tool "turingmind_get_auto_plans" takes a path parameter "file_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool turingmind_get_auto_plans · inputSchema.properties.file_path

low Unconstrained path parameter "file_path" on "turingmind_apply_edit"MTC-CAP-008

Tool "turingmind_apply_edit" takes a path parameter "file_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool turingmind_apply_edit · inputSchema.properties.file_path

low Unconstrained path parameter "project_path" on "turingmind_bootstrap_codebase"MTC-CAP-008

Tool "turingmind_bootstrap_codebase" takes a path parameter "project_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool turingmind_bootstrap_codebase · inputSchema.properties.project_path

Tools 99

Show each tool and what it can reach · statically extracted from the published source
  • turingmind_analyze_diffreads sensitive data
  • turingmind_apply_editreads sensitive data
  • turingmind_bootstrap_codebasereads sensitive data
  • turingmind_create_commentnetwork egress
  • turingmind_create_issuenetwork egress
  • turingmind_enable_auto_reviewnetwork egress
  • turingmind_get_auto_plansreads sensitive data
  • turingmind_get_edit_reasoningreads sensitive data
  • turingmind_request_code_editreads sensitive data
  • turingmind_store_auto_planreads sensitive data
  • turingmind_apply_fixno sensitive capability
  • turingmind_apply_spec_deltano sensitive capability
  • turingmind_break_down_featureno sensitive capability
  • turingmind_bundle_plans_for_commitno sensitive capability
  • turingmind_classify_failureno sensitive capability
  • turingmind_complete_tdd_cycleno sensitive capability
  • turingmind_create_decisionno sensitive capability
  • turingmind_create_edit_planno sensitive capability
  • turingmind_create_featureno sensitive capability
  • turingmind_create_goalno sensitive capability
  • turingmind_create_initiativeno sensitive capability
  • turingmind_create_spec_nodeno sensitive capability
  • turingmind_create_strategic_riskno sensitive capability
  • turingmind_create_strategic_specno sensitive capability
  • turingmind_define_required_testsno sensitive capability
  • turingmind_delete_memoryno sensitive capability
  • turingmind_detect_conflictsno sensitive capability
  • turingmind_explain_decisionno sensitive capability
  • turingmind_generate_specno sensitive capability
  • turingmind_generate_verificationno sensitive capability
  • turingmind_get_audit_trailno sensitive capability
  • turingmind_get_chat_analysis_plansno sensitive capability
  • turingmind_get_contextno sensitive capability
  • turingmind_get_decision_queueno sensitive capability
  • turingmind_get_decision_statsno sensitive capability
  • turingmind_get_execution_stateno sensitive capability
  • turingmind_get_featureno sensitive capability
  • turingmind_get_feature_issuesno sensitive capability
  • turingmind_get_goalno sensitive capability
  • turingmind_get_impacted_nodesno sensitive capability
  • turingmind_get_initiativeno sensitive capability
  • turingmind_get_issueno sensitive capability
  • turingmind_get_kanban_datano sensitive capability
  • turingmind_get_memoryno sensitive capability
  • turingmind_get_memory_statsno sensitive capability
  • turingmind_get_next_unblocked_issueno sensitive capability
  • turingmind_get_pending_decisionsno sensitive capability
  • turingmind_get_project_structureno sensitive capability
  • turingmind_get_ready_nodesno sensitive capability
  • turingmind_get_related_codeno sensitive capability
  • turingmind_get_spec_statusno sensitive capability
  • turingmind_get_strategic_riskno sensitive capability
  • turingmind_get_strategic_specno sensitive capability
  • turingmind_get_tdd_statusno sensitive capability
  • turingmind_index_codebaseno sensitive capability
  • turingmind_ingest_runtime_signalno sensitive capability
  • turingmind_initiate_loginno sensitive capability
  • turingmind_is_issue_blockedno sensitive capability
  • turingmind_link_intentno sensitive capability
  • turingmind_list_commentsno sensitive capability
  • turingmind_list_featuresno sensitive capability
  • turingmind_list_goalsno sensitive capability
  • turingmind_list_initiativesno sensitive capability
  • turingmind_list_issuesno sensitive capability
  • turingmind_list_memoryno sensitive capability
  • turingmind_list_spec_nodesno sensitive capability
  • turingmind_list_strategic_risksno sensitive capability
  • turingmind_list_strategic_specsno sensitive capability
  • turingmind_log_reasoningno sensitive capability
  • turingmind_mark_test_writtenno sensitive capability
  • turingmind_poll_loginno sensitive capability
  • turingmind_promote_nodeno sensitive capability
  • turingmind_quarantine_ruleno sensitive capability
  • turingmind_record_execution_stageno sensitive capability
  • turingmind_register_ruleno sensitive capability
  • turingmind_request_approvalno sensitive capability
  • turingmind_resolve_conflictno sensitive capability
  • turingmind_resolve_decisionno sensitive capability
  • turingmind_run_verificationno sensitive capability
  • turingmind_save_architecture_diagramno sensitive capability
  • turingmind_save_memoryno sensitive capability
  • turingmind_simulate_impactno sensitive capability
  • turingmind_store_chat_analysis_planno sensitive capability
  • turingmind_submit_feedbackno sensitive capability
  • turingmind_sync_cloudno sensitive capability
  • turingmind_sync_codebaseno sensitive capability
  • turingmind_test_opengrep_ruleno sensitive capability
  • turingmind_update_featureno sensitive capability
  • turingmind_update_feature_progressno sensitive capability
  • turingmind_update_goalno sensitive capability
  • turingmind_update_initiativeno sensitive capability
  • turingmind_update_issueno sensitive capability
  • turingmind_update_spec_nodeno sensitive capability
  • turingmind_update_strategic_riskno sensitive capability
  • turingmind_update_strategic_specno sensitive capability
  • turingmind_upload_reviewno sensitive capability
  • turingmind_validate_authno sensitive capability
  • turingmind_validate_tests_passingno sensitive capability
  • turingmind_validate_tests_writtenno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions

Scan 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.

VersionScoreFindingsEngineScanned
v0.3.0 latest A 93/100 19 1.8.0 2026-07-23

Embed this score

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.

MCP Trust Score: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/turingmind-mcp/badge.svg)](https://mcptrustchecker.com/registry/turingmind-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/turingmind-mcp"><img src="https://mcptrustchecker.com/registry/turingmind-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/turingmind-mcp/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

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 turingmind-mcp --online --registry pypi

Use the free API → How scoring works

More in Developer Tools