Vlc MCP Server

An MCP (Model Contex Protocol) Server to play and control movies using VLC.

Local serverstdioPython

What is the Vlc MCP server?

Vlc MCP server exists for a simple reason — assistants are far more useful when they can act on Vlc directly instead of describing what you should do. An MCP (Model Contex Protocol) Server to play and control movies using VLC.

What you get

An MCP (Model Context Protocol) Server to play and control movies using the VLC media player. Use any MCP client to control play videos remotely (e.g. awesome-mcp-clients)

What the assistant can call

Once Vlc is connected, these are the calls the assistant has available:

  • Testing — Use mcp-client-for-testing to test the tools of the server using the json config using the local

Configuration and credentials

You will need 5 environment variables: ROOT_VIDEO_FOLDER, VLC_HTTP_HOST, VLC_HTTP_PORT, VLC_HTTP_PASSWORD, DISPLAY. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Installation goes through your MCP client rather than a global install: point it at mcp-client-for-testing on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

Among the developer tooling 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. Vlc's toolset — Testing — is a fair guide to whether it matches your workflow.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the vlc mcp server does with a few real requests.

Available tools

ToolWhat it does
TestingUse [mcp-client-for-testing](https://github.com/piebro/mcp-client-for-testing) to test the tools of the server using the json config using the local path.

How to install the Vlc MCP server

{
  "mcpServers": {
    "vlc": {
      "command": "uvx",
      "args": ["mcp-client-for-testing"],
      "env": {
        "ROOT_VIDEO_FOLDER": "your-value",
        "VLC_HTTP_HOST": "your-value",
        "VLC_HTTP_PORT": "your-value",
        "VLC_HTTP_PASSWORD": "your-value",
        "DISPLAY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ROOT_VIDEO_FOLDERConfiguration value read at startup.Optional
VLC_HTTP_HOSTEndpoint or connection string the server talks to.Optional
VLC_HTTP_PORTConfiguration value read at startup.Optional
VLC_HTTP_PASSWORDConfiguration value read at startup.Optional
DISPLAYConfiguration value read at startup.Optional

Example prompts to try

  • Use Vlc to Testing.

Frequently asked questions

It connects Vlc to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Testing) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Vlc directly.