Mopidy-MPD is an extension that provides a full MPD server implementation to make Mopidy available to MPD clients. It is bundled with Mopidy and enabled by default.
Warning
As a simple security measure, the MPD server is by default only available from localhost. To make it available from other computers, change the mpd/hostname config value. Before you do so, note that the MPD server does not support any form of encryption and only a single clear text password (see mpd/password) for weak authentication. Anyone able to access the MPD server can control music playback on your computer. Thus, you probably only want to make the MPD server available from your local network. You have been warned.
MPD stands for Music Player Daemon, which is also the name of the original MPD server project. Mopidy does not depend on the original MPD server, but implements the MPD protocol itself, and is thus compatible with clients for the original MPD server.
For more details on our MPD server implementation, see mopidy.mpd.
This is a non exhaustive list of MPD features that Mopidy doesn’t support. Items on this list will probably not be supported in the near future.
The following items are currently not supported, but should be added in the near future:
See Configuration for general help on configuring Mopidy.
[mpd]
enabled = true
hostname = 127.0.0.1
port = 6600
password =
max_connections = 20
connection_timeout = 60
zeroconf = Mopidy MPD server on $hostname
command_blacklist = listall,listallinfo
If the MPD extension should be enabled or not.
Which address the MPD server should bind to.
Which TCP port the MPD server should listen to.
The password required for connecting to the MPD server. If blank, no password is required.
The maximum number of concurrent connections the MPD server will accept.
Number of seconds an MPD client can stay inactive before the connection is closed by the server.
Name of the MPD service when published through Zeroconf. The variables $hostname and $port can be used in the name.
Set to an empty string to disable Zeroconf for MPD.
List of MPD commands which are disabled by the server. By default this setting blacklists listall and listallinfo. These commands don’t fit well with many of Mopidy’s backends and are better left disabled unless you know what you are doing.