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
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:
| Points | What was found | Category |
|---|---|---|
| −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:
| 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 (`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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Each tool and what it can reach — statically extracted from the published source.
get_configno sensitive capabilitylist_available_voicesno sensitive capabilityspeakno 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.1.1 latest |
B 82/100 | 18 | 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 mcp-edge-tts --online --registry pypi
Independent packages implementing the same tool, scanned with the same engine. Compare all 2 side by side →
Turn designs into shipped parts: quote 3D printing, CNC, and decals, then check out.
Aleph's official SiliconFlow media-generation MCP server (image / video / TTS)
MCP server for image generation using Google Gemini AI
Ambience AI MCP Server - Generate images, videos, and audio through Model Context Protocol
MCP server exposing every endpoint of the AstroWay Calculation API as tools — natal, synastry, transits, Vedic dashas, Tarot, Numerology, Human Design, AI horoscopes — for Claude Desktop, Cursor and any MCP-compatible AI agent.
Audio-guide and trip-planning tools for 1,100+ cities from Audiala. Free, no API key.