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.
MCP server for TuringMind cloud - provides type-safe tools for authentication, code reviews, and feedback
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:
| 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 (`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: it result = subprocess.run( ["git", "rev-parse", "--show-toplevel"], capture
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
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: status result = subprocess.run( ["git", "status", "--porcelain", "--untracked-files=all"],
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
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: try: url = subprocess.check_output( ["git", "remote", "get-url", "origin"], stderr=subprocess.D
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
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: self.process = subprocess.Popen( [self.command] + self.args, stdin=subprocess.P
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
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: query result = subprocess.run( cmd, input=sql, capture_output=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 src/turingmind_mcp/cursor_database_reader.py
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: t root result = subprocess.run( ["git", "rev-parse", "--show-toplevel"], capture_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/entity_indexer.py
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: try: result = subprocess.run( ["git", "-C", str(workspace), *args], capture_output=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 src/turingmind_mcp/git_churn.py
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: rocess subprocess.run([sys.executable, "-m", "pip", "install", "turingmind-mcp"]) print
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
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: y: result = subprocess.run( [str(resolved_bin), "-m", "pytest", str(resolved_test_dir),
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
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: y: result = subprocess.run( ["git", "diff", "--name-only", "--diff-filter=ACMR", base_ref],
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
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
Each tool and what it can reach — statically extracted from the published source.
turingmind_create_commentnetwork egressturingmind_create_issuenetwork egressturingmind_enable_auto_reviewnetwork egressturingmind_analyze_diffno sensitive capabilityturingmind_apply_editno sensitive capabilityturingmind_apply_fixno sensitive capabilityturingmind_apply_spec_deltano sensitive capabilityturingmind_bootstrap_codebaseno sensitive capabilityturingmind_break_down_featureno sensitive capabilityturingmind_bundle_plans_for_commitno sensitive capabilityturingmind_classify_failureno sensitive capabilityturingmind_complete_tdd_cycleno sensitive capabilityturingmind_create_decisionno sensitive capabilityturingmind_create_edit_planno sensitive capabilityturingmind_create_featureno sensitive capabilityturingmind_create_goalno sensitive capabilityturingmind_create_initiativeno sensitive capabilityturingmind_create_spec_nodeno sensitive capabilityturingmind_create_strategic_riskno sensitive capabilityturingmind_create_strategic_specno sensitive capabilityturingmind_define_required_testsno sensitive capabilityturingmind_delete_memoryno sensitive capabilityturingmind_detect_conflictsno sensitive capabilityturingmind_explain_decisionno sensitive capabilityturingmind_generate_specno sensitive capabilityturingmind_generate_verificationno sensitive capabilityturingmind_get_audit_trailno sensitive capabilityturingmind_get_auto_plansno sensitive capabilityturingmind_get_chat_analysis_plansno sensitive capabilityturingmind_get_contextno sensitive capabilityturingmind_get_decision_queueno sensitive capabilityturingmind_get_decision_statsno sensitive capabilityturingmind_get_edit_reasoningno sensitive capabilityturingmind_get_execution_stateno sensitive capabilityturingmind_get_featureno sensitive capabilityturingmind_get_feature_issuesno sensitive capabilityturingmind_get_goalno sensitive capabilityturingmind_get_impacted_nodesno sensitive capabilityturingmind_get_initiativeno sensitive capabilityturingmind_get_issueno sensitive capabilityturingmind_get_kanban_datano sensitive capabilityturingmind_get_memoryno sensitive capabilityturingmind_get_memory_statsno sensitive capabilityturingmind_get_next_unblocked_issueno sensitive capabilityturingmind_get_pending_decisionsno sensitive capabilityturingmind_get_project_structureno sensitive capabilityturingmind_get_ready_nodesno sensitive capabilityturingmind_get_related_codeno sensitive capabilityturingmind_get_spec_statusno sensitive capabilityturingmind_get_strategic_riskno sensitive capabilityturingmind_get_strategic_specno sensitive capabilityturingmind_get_tdd_statusno sensitive capabilityturingmind_index_codebaseno sensitive capabilityturingmind_ingest_runtime_signalno sensitive capabilityturingmind_initiate_loginno sensitive capabilityturingmind_is_issue_blockedno sensitive capabilityturingmind_link_intentno sensitive capabilityturingmind_list_commentsno sensitive capabilityturingmind_list_featuresno sensitive capabilityturingmind_list_goalsno sensitive capabilityturingmind_list_initiativesno sensitive capabilityturingmind_list_issuesno sensitive capabilityturingmind_list_memoryno sensitive capabilityturingmind_list_spec_nodesno sensitive capabilityturingmind_list_strategic_risksno sensitive capabilityturingmind_list_strategic_specsno sensitive capabilityturingmind_log_reasoningno sensitive capabilityturingmind_mark_test_writtenno sensitive capabilityturingmind_poll_loginno sensitive capabilityturingmind_promote_nodeno sensitive capabilityturingmind_quarantine_ruleno sensitive capabilityturingmind_record_execution_stageno sensitive capabilityturingmind_register_ruleno sensitive capabilityturingmind_request_approvalno sensitive capabilityturingmind_request_code_editno sensitive capabilityturingmind_resolve_conflictno sensitive capabilityturingmind_resolve_decisionno sensitive capabilityturingmind_run_verificationno sensitive capabilityturingmind_save_architecture_diagramno sensitive capabilityturingmind_save_memoryno sensitive capabilityturingmind_simulate_impactno sensitive capabilityturingmind_store_auto_planno sensitive capabilityturingmind_store_chat_analysis_planno sensitive capabilityturingmind_submit_feedbackno sensitive capabilityturingmind_sync_cloudno sensitive capabilityturingmind_sync_codebaseno sensitive capabilityturingmind_test_opengrep_ruleno sensitive capabilityturingmind_update_featureno sensitive capabilityturingmind_update_feature_progressno sensitive capabilityturingmind_update_goalno sensitive capabilityturingmind_update_initiativeno sensitive capabilityturingmind_update_issueno sensitive capabilityturingmind_update_spec_nodeno sensitive capabilityturingmind_update_strategic_riskno sensitive capabilityturingmind_update_strategic_specno sensitive capabilityturingmind_upload_reviewno sensitive capabilityturingmind_validate_authno sensitive capabilityturingmind_validate_tests_passingno sensitive capabilityturingmind_validate_tests_writtenno 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 |
|---|---|---|---|---|
v0.3.0 latest |
A 93/100 | 11 | 1.13.0 | 2026-08-25 |
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 turingmind-mcp --online --registry pypi
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.