FFmpeg MCP server
FFmpeg MCP server. The mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 2 defined tools rather than through you.
An MCP server that allows you to run Node.js scripts and npm commands, with permission prompts via node-notifier.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Everything the assistant can do here goes through one of these:
DISABLE_NOTIFICATIONS — Set DISABLE_NOTIFICATIONS=true to automatically approve all permission requests without showing notification prompts:EVAL_DIRECTORIES — Specify a colon-separated list of directories where JavaScript code can be evaluated using the run-node-eval tool:You will need 2 environment variables: DISABLE_NOTIFICATIONS, EVAL_DIRECTORIES. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Among the monitoring and observability options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP's toolset — DISABLE_NOTIFICATIONS, EVAL_DIRECTORIES — is a fair guide to whether it matches your workflow. It is maintained by oivoodoo; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| DISABLE_NOTIFICATIONS | Set DISABLE_NOTIFICATIONS=true to automatically approve all permission requests without showing notification prompts: |
| EVAL_DIRECTORIES | Specify a colon-separated list of directories where JavaScript code can be evaluated using the run-node-eval tool: |
{
"mcpServers": {
"node-runner": {
"command": "npx",
"args": ["-y", "mcp-node@latest"],
"env": {
"DISABLE_NOTIFICATIONS": "true", // Optional: disable permission prompts
"EVAL_DIRECTORIES": "/path/to/safe/dir1:/path/to/safe/dir2" // Optional: additional allowed eval directories
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| DISABLE_NOTIFICATIONS | Configuration value read at startup. | Optional |
| EVAL_DIRECTORIES | Filesystem location the server is allowed to use. | Optional |
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Dashboards, Prometheus and Loki queries, incidents and alerts — observability by conversation.
Errors with full context — stack traces, issue triage and AI-powered root-cause analysis from Sentry's server.
Enables enhanced web research capabilities for large language models through intelligent search queuing and advanced content extraction.
Automates browser interactions and enables Large Language Models (LLMs) to interact with web pages through Playwright and Chrome DevTools Protocol
Guides tool usage by providing recommendations for MCP tools at each problem-solving stage.