Edge Tts (s-n-n) MCP Server

mcp-edge-tts PyPI v0.1.1

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

Minimal cross-platform MCP server for text-to-speech using Microsoft Edge TTS

Trust grade
B
82/100
Last scanned get badge →
Trust
B · 82/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.
Share this Trust Score
𝕏 Share LinkedIn Reddit
B Why this grade threat 89 − adoption risk = 82/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 − 11 = 89. What the published surface and source actually contain:

PointsWhat was foundCategory
−11 Unsafe deserialization ×3 MTC-SRC-007 permissions

2. Client adoption risk — 89 − 7 = 82. 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

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 18

high Reads a sensitive credential path or dumps the environment (venv_win/Lib/site-packages/aiohttp/client.py)MTC-SRC-006

In the server's implementation (`venv_win/Lib/site-packages/aiohttp/client.py:1446`): 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: variables or ~/.netrc file if present. """ return self._trust_env @property def

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 venv_win/Lib/site-packages/aiohttp/client.py

high Reads a sensitive credential path or dumps the environment (venv_win/Lib/site-packages/aiohttp/helpers.py)MTC-SRC-006

In the server's implementation (`venv_win/Lib/site-packages/aiohttp/helpers.py:215`): 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: "trying to look for .netrc file: %s", e, ) return None netrc_

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 venv_win/Lib/site-packages/aiohttp/helpers.py

high Dynamic evaluation of a non-literal value (venv_win/Lib/site-packages/docutils/utils/math/math2html.py)MTC-SRC-010

In the server's implementation (`venv_win/Lib/site-packages/docutils/utils/math/math2html.py:3139`): Evaluating a runtime value as code (rather than a fixed literal) executes whatever reaches it — a direct RCE primitive, and almost never necessary in legitimate 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: return 1 return eval(sizestring) FormulaCommand.types += [HybridFunction] def math2html(formula): "Conve

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 venv_win/Lib/site-packages/docutils/utils/math/math2html.py

high Dynamic code execution in server code (venv_win/Lib/site-packages/attr/_make.py)MTC-SRC-001

In the server's implementation (`venv_win/Lib/site-packages/attr/_make.py:227`): 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: , filename, "exec") eval(bytecode, globs, locs) def _linecache_and_compile( script: str, filename: str,

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 venv_win/Lib/site-packages/attr/_make.py

high Dynamic code execution in server code (venv_win/Lib/site-packages/cffi/recompiler.py)MTC-SRC-001

In the server's implementation (`venv_win/Lib/site-packages/cffi/recompiler.py:78`): 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: (self): flags = eval(self.flags, G_FLAGS) fields_expr = [c_field.as_field_python_expr()

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 venv_win/Lib/site-packages/cffi/recompiler.py

high Dynamic code execution in server code (venv_win/Lib/site-packages/docutils/utils/math/math2html.py)MTC-SRC-001

In the server's implementation (`venv_win/Lib/site-packages/docutils/utils/math/math2html.py:3139`): 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: return 1 return eval(sizestring) FormulaCommand.types += [HybridFunction] def math2html(formula): "Conve

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 venv_win/Lib/site-packages/docutils/utils/math/math2html.py

high Dynamic code execution in server code (venv_win/Lib/site-packages/typing_extensions.py)MTC-SRC-001

In the server's implementation (`venv_win/Lib/site-packages/typing_extensions.py:1485`): 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: u are familiar with how eval() and exec() work). The search order is locals first, then globals. - If

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 venv_win/Lib/site-packages/typing_extensions.py

high Shell/command execution in server code (venv_win/Lib/site-packages/anyio/_backends/_trio.py)MTC-SRC-002

In the server's implementation (`venv_win/Lib/site-packages/anyio/_backends/_trio.py:1106`): 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: stderr, shell=True, **kwargs, ) else: process = await tr

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 venv_win/Lib/site-packages/anyio/_backends/_trio.py

high Shell/command execution in server code (venv_win/Lib/site-packages/cffi/pkgconfig.py)MTC-SRC-002

In the server's implementation (`venv_win/Lib/site-packages/cffi/pkgconfig.py:33`): 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: pc = subprocess.Popen(a, stdout=subprocess.PIPE, stderr=subprocess.PIPE) except EnvironmentError

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 venv_win/Lib/site-packages/cffi/pkgconfig.py

high Shell/command execution in server code (venv_win/Lib/site-packages/cffi/setuptools_ext.py)MTC-SRC-002

In the server's implementation (`venv_win/Lib/site-packages/cffi/setuptools_ext.py:26`): 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: , filename, 'exec') exec(code, glob, glob) def add_cffi_module(dist, mod_spec): from cffi.api import FFI

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 venv_win/Lib/site-packages/cffi/setuptools_ext.py

high Shell/command execution in server code (venv_win/Lib/site-packages/click/_termui_impl.py)MTC-SRC-002

In the server's implementation (`venv_win/Lib/site-packages/click/_termui_impl.py:454`): 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: color = True c = subprocess.Popen( [str(cmd_path)] + cmd_params, shell=False, stdin=subpr

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 venv_win/Lib/site-packages/click/_termui_impl.py

high Shell/command execution in server code (venv_win/Lib/site-packages/click/shell_completion.py)MTC-SRC-002

In the server's implementation (`venv_win/Lib/site-packages/click/shell_completion.py:320`): 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: e: output = subprocess.run( [bash_exe, "--norc", "-c", 'echo "${BASH_VERSION}"'],

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 venv_win/Lib/site-packages/click/shell_completion.py

high Shell/command execution in server code (venv_win/Lib/site-packages/docutils/utils/math/tex2mathml_extern.py)MTC-SRC-002

In the server's implementation (`venv_win/Lib/site-packages/docutils/utils/math/tex2mathml_extern.py:73`): 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: ligned}') result = subprocess.run(args, input=math_code, 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 venv_win/Lib/site-packages/docutils/utils/math/tex2mathml_extern.py

high Shell/command execution in server code (venv_win/Lib/site-packages/typing_extensions.py)MTC-SRC-002

In the server's implementation (`venv_win/Lib/site-packages/typing_extensions.py:1485`): 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: iar with how eval() and exec() work). The search order is locals first, then globals. - If no dict arg

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 venv_win/Lib/site-packages/typing_extensions.py

medium Dynamic module load from a non-literal (venv_win/Lib/site-packages/cffi/verifier.py)MTC-SRC-005

In the server's implementation (`venv_win/Lib/site-packages/cffi/verifier.py:151`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: pkg = __import__(self.ext_package, None, None, ['__doc__']) except ImportError:

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 venv_win/Lib/site-packages/cffi/verifier.py

medium Unsafe deserialization (venv_win/Lib/site-packages/aiohttp/cookiejar.py)MTC-SRC-007

In the server's implementation (`venv_win/Lib/site-packages/aiohttp/cookiejar.py:133`): 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: self._cookies = pickle.load(f) def clear(self, predicate: Optional[ClearCookiePredicate] = None) -> None:

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 venv_win/Lib/site-packages/aiohttp/cookiejar.py

medium Unsafe deserialization (venv_win/Lib/site-packages/anyio/to_interpreter.py)MTC-SRC-007

In the server's implementation (`venv_win/Lib/site-packages/anyio/to_interpreter.py:130`): 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: : res = pickle.loads(res) if is_exception: raise res return re

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 venv_win/Lib/site-packages/anyio/to_interpreter.py

medium Unsafe deserialization (venv_win/Lib/site-packages/anyio/to_process.py)MTC-SRC-007

In the server's implementation (`venv_win/Lib/site-packages/anyio/to_process.py:94`): 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: m exc retval = pickle.loads(pickled_response) if status == b"EXCEPTION": assert isinstance(

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 venv_win/Lib/site-packages/anyio/to_process.py

Tools 3

Each tool and what it can reach — statically extracted from the published source.

  • get_configno sensitive capability
  • list_available_voicesno sensitive capability
  • speakno sensitive capability

What this scan could not see

Versions 1

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.1.1 latest B 82/100 18 1.13.0 2026-08-25

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: B · 82/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/mcp-edge-tts/badge.svg)](https://mcptrustchecker.com/registry/mcp-edge-tts)
HTML
<a href="https://mcptrustchecker.com/registry/mcp-edge-tts"><img src="https://mcptrustchecker.com/registry/mcp-edge-tts/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/mcp-edge-tts/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 mcp-edge-tts --online --registry pypi

Use the free API → How scoring works

Other implementations of Edge Tts 1

Independent packages implementing the same tool, scanned with the same engine. Compare all 2 side by side →

More in Design & Media