Neurolink MCP Server

@juspay/neurolink npm v12.12.8 Source verified

Published by juspay — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.

TypeScript AI SDK with 24+ LLM providers behind one consistent API. MCP-native (connect any MCP server), voice TTS/STT/realtime, RAG, agents, memory, context compaction. OpenAI · Anthropic · Gemini · Bedrock · Azure · Ollama · DeepSeek · NVIDIA NIM and mo

Trust grade
A
94/100
Last scanned get badge →
Trust
A · 94/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
A Why this grade threat 100 − adoption risk = 94/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 − 6 = 94. 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

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 12

high Reads a sensitive credential path or dumps the environment (dist/processors/config/fileExtensions.js)MTC-SRC-006

In the server's implementation (`dist/processors/config/fileExtensions.js:329`): 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: ".gitattributes", ".npmrc", ".yarnrc", ".prettierrc", ".eslintrc", ".babelrc", ]; // =============

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 dist/processors/config/fileExtensions.js

high Dynamic code execution in server code (dist/agent/directTools.js)MTC-SRC-001

In the server's implementation (`dist/agent/directTools.js:287`): 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: const result = new Function(`'use strict'; return (${expression})`)(); const roundedResult = ty

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 dist/agent/directTools.js

high Shell/command execution in server code (dist/adapters/video/ffmpegAdapter.js)MTC-SRC-002

In the server's implementation (`dist/adapters/video/ffmpegAdapter.js:169`): 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: } = await import("node:child_process"); const ffmpegPath = options.binaryPath ?? (await getFfmpegPath()); const

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 dist/adapters/video/ffmpegAdapter.js

high Shell/command execution in server code (dist/agent/backgroundCommands.js)MTC-SRC-002

In the server's implementation (`dist/agent/backgroundCommands.js:30`): 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: rt { spawn } from "node:child_process"; import { randomUUID } from "node:crypto"; import { createWriteStream } from "nod

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 dist/agent/backgroundCommands.js

high Shell/command execution in server code (dist/agent/directTools.js)MTC-SRC-002

In the server's implementation (`dist/agent/directTools.js:4`): 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: port { execFile } from "child_process"; import { logger } from "../utils/logger.js"; import { CSVProcessor } from "../ut

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 dist/agent/directTools.js

high Shell/command execution in server code (dist/cli/commands/auth.js)MTC-SRC-002

In the server's implementation (`dist/cli/commands/auth.js:22`): 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: port { execFile } from "child_process"; import { randomBytes, createHash } from "crypto"; import inquirer from "inquirer

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 dist/cli/commands/auth.js

high Shell/command execution in server code (dist/cli/utils/audioPlayer.js)MTC-SRC-002

In the server's implementation (`dist/cli/utils/audioPlayer.js:9`): 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: { execFile } from "node:child_process"; import { randomUUID } from "node:crypto"; import fs from "node:fs"; import os fr

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 dist/cli/utils/audioPlayer.js

high Shell/command execution in server code (dist/processors/archive/ArchiveProcessor.js)MTC-SRC-002

In the server's implementation (`dist/processors/archive/ArchiveProcessor.js:1186`): 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: } = await import("node:child_process"); return await new Promise((resolve) => { // ENOENT m

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 dist/processors/archive/ArchiveProcessor.js

high Shell/command execution in server code (dist/proxy/globalInstaller.js)MTC-SRC-002

In the server's implementation (`dist/proxy/globalInstaller.js:1`): 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: ecFileSync } from "node:child_process"; import { accessSync, constants, existsSync, realpathSync } from "node:fs"; impor

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 dist/proxy/globalInstaller.js

medium Hardcoded egress to an external endpoint (dist/cli/commands/auth.js)MTC-SRC-003

In the server's implementation (`dist/cli/commands/auth.js:447`): 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: const response = await fetch(`http://${host}:${proxyState.port}/limits`, { signal: AbortSignal.timeout(

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 dist/cli/commands/auth.js

medium Hardcoded egress to an external endpoint (dist/voice/providers/AzureTTS.js)MTC-SRC-003

In the server's implementation (`dist/voice/providers/AzureTTS.js:59`): 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: response = await fetch(`https://${this.region}.tts.speech.microsoft.com/cognitiveservices/voices/list`, {

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 dist/voice/providers/AzureTTS.js

medium Dynamic module load from a non-literal (dist/cli/commands/docs.js)MTC-SRC-005

In the server's implementation (`dist/cli/commands/docs.js:30`): 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: artDocsServer } = await import(mcpServerPath); await startDocsServer({ transport: argv.trans

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 dist/cli/commands/docs.js

What this scan could not see

Versions 10

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
v12.12.8 latest A 94/100 12 1.13.0 2026-09-07
v12.12.7 A 94/100 12 1.13.0 2026-09-06
v12.12.5 A 94/100 12 1.13.0 2026-09-05
v12.11.1 A 94/100 12 1.13.0 2026-09-04
v12.7.4 A 94/100 12 1.13.0 2026-09-01
Show 5 more versions ↓
v12.7.3 A 94/100 12 1.13.0 2026-08-31
v12.7.2 A 94/100 12 1.13.0 2026-08-30
v12.4.4 A 94/100 12 1.13.0 2026-08-29
v12.2.6 A 94/100 12 1.13.0 2026-08-28
v12.1.0 A 94/100 11 1.13.0 2026-08-27

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

Use the free API → How scoring works

More in AI & Agents