Nothing appears in ncmpcpp after mopidy-spotify setup

I setup the spotify plugin, but the player does not display any option to select the spotify tunes. What I’m doing wrong?

My config is this:

mopidy.conf

[mpd]
enabled = true
hostname = ::

[spotify]
enabled = true
allow_cache = true
allow_network = true
allow_playlists = true
search_album_count = 20
search_artist_count = 10
search_track_count = 50
cache_dir = $XDG_CACHE_DIR/mopidy/spotify
settings_dir = $XDG_CONFIG_DIR/mopidy/spotify
username = 1169334675
password = *********
client_id = 4e3263a4-f668-43d4-99d7-00e8f42a6f45
client_secret = ***********
# [spotify_web]
# port = 6680
# zeroconf = Mopidy HTTP server on $hostname
# client_id = 4e3263a4-f668-43d4-99d7-00e8f42a6f45
# client_secret = ***************

[core]
cache_dir = $XDG_CACHE_DIR/mopidy
config_dir = $XDG_CONFIG_DIR/mopidy
data_dir = $XDG_DATA_DIR/mopidy
max_tracklist_length = 10000
restore_state = false

[logging]
color = true
console_format = %(levelname)-8s %(message)s
debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %    (name)s\n  %(message)s
debug_file = mopidy.log
config_file =

[audio]
mixer = software
mixer_volume =
output = autoaudiosink
buffer_time =

[proxy]
scheme =
hostname =
port =
username =
password =

[local]
enabled = false

ncmpcpp config

% egrep -v '^#' .ncmpcpp/config
mpd_music_dir = "/Users/******/Music/iTunes/iTunes\ Media/Music/"
visualizer_in_stereo = "yes"
visualizer_fifo_path = "/tmp/mpd.fifo"
visualizer_output_name = "my_fifo"
visualizer_sync_interval = "30"
#visualizer_type = "spectrum"
visualizer_look = "◆▋"
message_delay_time = "3"
playlist_shorten_total_times = "yes"
playlist_display_mode = "columns"
browser_display_mode = "columns"
search_engine_display_mode = "columns"
playlist_editor_display_mode = "columns"
autocenter_mode = "yes"
centered_cursor = "yes"
user_interface = "alternative"
follow_now_playing_lyrics = "yes"
locked_screen_width_part = "60"
display_bitrate = "yes"
external_editor = "nano"
use_console_editor = "yes"
header_window_color = "cyan"
volume_color = "red"
state_line_color = "yellow"
state_flags_color = "red"
progressbar_color = "yellow"
statusbar_color = "cyan"
visualizer_color = "red"
mpd_host = "127.0.0.1"
mpd_port = "6600"
mouse_list_scroll_whole_page = "yes"
lines_scrolled = "1"
#ask_before_clearing_main_playlist = "yes"
enable_window_title = "yes"
song_columns_list_format = "(25)[cyan]{a} (40)[]{f} (30)[red]{b} (7f)[green]{l}"

mpd.conf

music_directory "/Users/*****/Music/iTunes/iTunes\ Media/Music/"
playlist_directory "/Users/*****/Music/iTunes/iTunes\ Media/Music/"
db_file "/Users/****/.mpd/mpd.db"
log_file "/Users/******/.mpd/mpd.log"
pid_file "/Users/*******/.mpd/mpd.pid"
state_file "/Users/******/.mpd/mpdstate"
audio_output {
    type                  "osx"
    name                  "CoreAudio"
    mixer_type            "software"
}

decoder {
    plugin                "mp4ff"
#    enabled               "no"
}

bind_to_address "127.0.0.1"
port "6600"

mopidy -vv

593 | 13:37:30 | builttolast | ~  > mopidy -vv
INFO     2018-01-02 13:37:34,908 [87997:MainThread] mopidy.__main__
  Starting Mopidy 2.1.0
DEBUG    2018-01-02 13:37:34,984 [87997:MainThread] mopidy.ext
  Loading entry point: mpd = mopidy.mpd:Extension
DEBUG    2018-01-02 13:37:34,987 [87997:MainThread] mopidy.ext
  Loaded extension: Mopidy-MPD 2.1.0
DEBUG    2018-01-02 13:37:34,987 [87997:MainThread] mopidy.ext
  Loading entry point: http = mopidy.http:Extension
DEBUG    2018-01-02 13:37:34,989 [87997:MainThread] mopidy.ext
  Loaded extension: Mopidy-HTTP 2.1.0
DEBUG    2018-01-02 13:37:34,989 [87997:MainThread] mopidy.ext
  Loading entry point: stream = mopidy.stream:Extension
DEBUG    2018-01-02 13:37:34,991 [87997:MainThread] mopidy.ext
  Loaded extension: Mopidy-Stream 2.1.0
DEBUG    2018-01-02 13:37:34,992 [87997:MainThread] mopidy.ext
  Loading entry point: m3u = mopidy.m3u:Extension
DEBUG    2018-01-02 13:37:34,994 [87997:MainThread] mopidy.ext
  Loaded extension: Mopidy-M3U 2.1.0
DEBUG    2018-01-02 13:37:34,994 [87997:MainThread] mopidy.ext
  Loading entry point: softwaremixer = mopidy.softwaremixer:Extension
DEBUG    2018-01-02 13:37:34,995 [87997:MainThread] mopidy.ext
  Loaded extension: Mopidy-SoftwareMixer 2.1.0
DEBUG    2018-01-02 13:37:34,995 [87997:MainThread] mopidy.ext
  Loading entry point: file = mopidy.file:Extension
DEBUG    2018-01-02 13:37:34,997 [87997:MainThread] mopidy.ext
  Loaded extension: Mopidy-File 2.1.0
DEBUG    2018-01-02 13:37:34,997 [87997:MainThread] mopidy.ext
  Loading entry point: local = mopidy.local:Extension
DEBUG    2018-01-02 13:37:35,003 [87997:MainThread] mopidy.ext
  Loaded extension: Mopidy-Local 2.1.0
DEBUG    2018-01-02 13:37:35,004 [87997:MainThread] mopidy.ext
  Loading entry point: tunein = mopidy_tunein:Extension
DEBUG    2018-01-02 13:37:35,007 [87997:MainThread] mopidy.ext
  Loaded extension: Mopidy-TuneIn 0.4.1
DEBUG    2018-01-02 13:37:35,042 [87997:MainThread] mopidy.ext
  Discovered extensions: mpd, http, stream, m3u, softwaremixer, file, local, tunein
DEBUG    2018-01-02 13:37:35,045 [87997:MainThread] mopidy.config.keyring
  Fetching passwords from your keyring failed. Any passwords stored in the keyring will not be available. (dbus not installed)
INFO     2018-01-02 13:37:35,045 [87997:MainThread] mopidy.config
  Loading config from builtin defaults
DEBUG    2018-01-02 13:37:35,048 [87997:MainThread] mopidy.config
  Loading config from /etc/xdg/mopidy/mopidy.conf failed; it does not exist
INFO     2018-01-02 13:37:35,048 [87997:MainThread] mopidy.config
  Loading config from /Users/luisalves/.config/mopidy/mopidy.conf
INFO     2018-01-02 13:37:35,051 [87997:MainThread] mopidy.config
  Loading config from command line options
DEBUG    2018-01-02 13:37:35,056 [87997:MainThread] mopidy.config
  Ignoring unknown config section: spotify
DEBUG    2018-01-02 13:37:35,060 [87997:MainThread] mopidy.ext
  Validating extension: mpd
DEBUG    2018-01-02 13:37:35,063 [87997:MainThread] mopidy.ext
  Validating extension: http
DEBUG    2018-01-02 13:37:35,172 [87997:MainThread] mopidy.ext
  Validating extension: stream
DEBUG    2018-01-02 13:37:35,174 [87997:MainThread] mopidy.ext
  Validating extension: m3u
DEBUG    2018-01-02 13:37:35,176 [87997:MainThread] mopidy.ext
  Validating extension: softwaremixer
DEBUG    2018-01-02 13:37:35,177 [87997:MainThread] mopidy.ext
  Validating extension: file
DEBUG    2018-01-02 13:37:35,179 [87997:MainThread] mopidy.ext
  Validating extension: local
DEBUG    2018-01-02 13:37:35,180 [87997:MainThread] mopidy.ext
  Validating extension: tunein
INFO     2018-01-02 13:37:35,186 [87997:MainThread] mopidy.__main__
  Enabled extensions: mpd, http, stream, m3u, softwaremixer, file, tunein
INFO     2018-01-02 13:37:35,187 [87997:MainThread] mopidy.__main__
  Disabled extensions: local
DEBUG    2018-01-02 13:37:35,378 [87997:MainThread] mopidy.commands
  Available Mopidy mixers: SoftwareMixer
INFO     2018-01-02 13:37:35,379 [87997:MainThread] mopidy.commands
  Starting Mopidy mixer: SoftwareMixer
DEBUG    2018-01-02 13:37:35,382 [87997:MainThread] mopidy.commands
  Mixer volume left unchanged
INFO     2018-01-02 13:37:35,382 [87997:MainThread] mopidy.commands
  Starting Mopidy audio
INFO     2018-01-02 13:37:35,384 [87997:MainThread] mopidy.commands
  Starting Mopidy backends: StreamBackend, M3UBackend, FileBackend, TuneInBackend
DEBUG    2018-01-02 13:37:35,401 [87997:MainThread] mopidy.file.library
  Failed expanding path ($XDG_MUSIC_DIR) from file/media_dirs config value.
INFO     2018-01-02 13:37:35,410 [87997:Audio-2] mopidy.audio.actor
  Audio output set to "autoaudiosink"
INFO     2018-01-02 13:37:35,411 [87997:MainThread] mopidy.commands
  Starting Mopidy core
INFO     2018-01-02 13:37:35,446 [87997:MainThread] mopidy.commands
  Starting Mopidy frontends: MpdFrontend, HttpFrontend
INFO     2018-01-02 13:37:35,452 [87997:MainThread] mopidy.mpd.actor
  MPD server running at [::]:6600
DEBUG    2018-01-02 13:37:35,453 [87997:MpdFrontend-8] mopidy.zeroconf
  Zeroconf service "None" (_mpd._tcp at []:6600): dbus not installed; publish failed.
DEBUG    2018-01-02 13:37:35,454 [87997:MainThread] mopidy.http.actor
  Starting HTTP server
INFO     2018-01-02 13:37:35,455 [87997:HttpFrontend-10] mopidy.http.actor
  HTTP server running at [::ffff:127.0.0.1]:6680
INFO     2018-01-02 13:37:35,455 [87997:MainThread] mopidy.commands
  Starting GLib mainloop
DEBUG    2018-01-02 13:37:35,456 [87997:HttpServer] mopidy.http.actor
  Loaded HTTP extension: mopidy
DEBUG    2018-01-02 13:37:35,456 [87997:HttpFrontend-10] mopidy.zeroconf
  Zeroconf service "None" (_http._tcp at []:6680): dbus not installed; publish failed.
DEBUG    2018-01-02 13:37:35,457 [87997:HttpServer] mopidy.http.actor
  HTTP routes from extensions: 
    u'/mopidy': <class 'mopidy.http.handlers.AddSlashHandler'>
    u'/mopidy/ws/?': <class 'mopidy.http.handlers.WebSocketHandler'>
    u'/mopidy/rpc': <class 'mopidy.http.handlers.JsonRpcHandler'>
    u'/mopidy/(.+)': <class 'mopidy.http.handlers.StaticFileHandler'>
    u'/mopidy/': <class 'mopidy.http.handlers.ClientListHandler'>
    u'/': <class 'tornado.web.RedirectHandler'>
DEBUG    2018-01-02 13:37:35,457 [87997:HttpFrontend-10] mopidy.zeroconf
  Zeroconf service "None" (_mopidy-http._tcp at []:6680): dbus not installed; publish failed.

Your log states:

[87997:MainThread] mopidy.config Ignoring unknown config section: spotify

Doesn’t look like your mopidy installation can see the mopidy-spotify
installation. How did you install everything? What’s the output of ‘mopidy
run config’?

Strange! I can run the web extension mopify, and play music on it, but in ncmpcpp I do not see anything related to de spotify.

This is the mopify config output:

511 | 21:24:25 | builttolast | ~  > mopidy config
[core]
cache_dir = $XDG_CACHE_DIR/mopidy
config_dir = $XDG_CONFIG_DIR/mopidy
data_dir = $XDG_DATA_DIR/mopidy
max_tracklist_length = 10000
restore_state = false

[logging]
color = true
console_format = %(levelname)-8s %(message)s
debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %                (name)s\n  %(message)s
debug_file = mopidy.log
config_file =

[audio]
mixer = software
mixer_volume = 
output = autoaudiosink
buffer_time = 

[proxy]
scheme = 
hostname = 
port = 
username = 
password = 

[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
default_playlist_scheme = m3u

[http]
enabled = true
hostname = 127.0.0.1
port = 6680
static_dir =
zeroconf = Mopidy HTTP server on $hostname

[stream]
enabled = true
protocols = 
  http
  https
  mms
  rtmp
  rtmps
  rtsp
metadata_blacklist = 
timeout = 5000

[m3u]
enabled = true
base_dir =
default_encoding = latin-1
default_extension = .m3u8
playlists_dir =

[softwaremixer]
enabled = true

[file]
enabled = true
media_dirs = 
  $XDG_MUSIC_DIR|Music
  ~/|Home
excluded_file_extensions = 
  .jpg
  .jpeg
show_dotfiles = false
follow_symlinks = false
metadata_timeout = 1000

[local]
enabled = false  ; Extension disabled by user config.

[tunein]
enabled = true
timeout = 5000

[spotify]
enabled = true
username = 1169334675
password = ********
client_id = aa56f448-9a38-419c-aada-cad78b973faf
client_secret = ********
bitrate = 160
volume_normalization = true
private_session = false
timeout = 10
allow_cache = true
allow_network = true
allow_playlists = true
search_album_count = 20
search_artist_count = 10
search_track_count = 50
toplist_countries = 

[spotify_tunigo]
enabled = true
region = 
sub_genres = true
cache_time = 3600

[podcast]
enabled = true
browse_root = Podcasts.opml
browse_order = desc
lookup_order = asc
cache_size = 64
cache_ttl = 86400
timeout = 10

[podcast-itunes]
enabled = true
retries = 3
country = US
explicit = 
base_url = http://itunes.apple.com/
charts = audioPodcasts
search_limit = 20
timeout = 10
charts_limit = 20

[mopify]
enabled = true
debug = false

[moped]
enabled = true

[material-webclient]
enabled = true
config_file = /etc/mopidy/mopidy.conf

I’ve been messing with it so now I get another error!

** mopidy -vv output**

528 | 22:09:16 | builttolast | ~  > mopidy -vv
INFO     2018-01-02 22:09:22,833 [25103:MainThread] mopidy.__main__
  Starting Mopidy 2.1.0
DEBUG    2018-01-02 22:09:22,902 [25103:MainThread] mopidy.ext
  Loading entry point: mpd = mopidy.mpd:Extension
DEBUG    2018-01-02 22:09:22,905 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-MPD 2.1.0
DEBUG    2018-01-02 22:09:22,905 [25103:MainThread] mopidy.ext
  Loading entry point: http = mopidy.http:Extension
DEBUG    2018-01-02 22:09:22,907 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-HTTP 2.1.0
DEBUG    2018-01-02 22:09:22,907 [25103:MainThread] mopidy.ext
  Loading entry point: stream = mopidy.stream:Extension
DEBUG    2018-01-02 22:09:22,909 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Stream 2.1.0
DEBUG    2018-01-02 22:09:22,909 [25103:MainThread] mopidy.ext
  Loading entry point: m3u = mopidy.m3u:Extension
DEBUG    2018-01-02 22:09:22,911 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-M3U 2.1.0
DEBUG    2018-01-02 22:09:22,911 [25103:MainThread] mopidy.ext
  Loading entry point: softwaremixer = mopidy.softwaremixer:Extension
DEBUG    2018-01-02 22:09:22,912 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-SoftwareMixer 2.1.0
DEBUG    2018-01-02 22:09:22,913 [25103:MainThread] mopidy.ext
  Loading entry point: file = mopidy.file:Extension
DEBUG    2018-01-02 22:09:22,915 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-File 2.1.0
DEBUG    2018-01-02 22:09:22,915 [25103:MainThread] mopidy.ext
  Loading entry point: local = mopidy.local:Extension
DEBUG    2018-01-02 22:09:22,920 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Local 2.1.0
DEBUG    2018-01-02 22:09:22,921 [25103:MainThread] mopidy.ext
  Loading entry point: tunein = mopidy_tunein:Extension
DEBUG    2018-01-02 22:09:22,924 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-TuneIn 0.4.1
DEBUG    2018-01-02 22:09:22,925 [25103:MainThread] mopidy.ext
  Loading entry point: spotify = mopidy_spotify:Extension
DEBUG    2018-01-02 22:09:22,927 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Spotify 3.1.0
DEBUG    2018-01-02 22:09:22,929 [25103:MainThread] mopidy.ext
  Loading entry point: spotify_tunigo = mopidy_spotify_tunigo:Extension
DEBUG    2018-01-02 22:09:22,931 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Spotify-Tunigo 1.0.0
DEBUG    2018-01-02 22:09:22,932 [25103:MainThread] mopidy.ext
  Loading entry point: podcast = mopidy_podcast:Extension
DEBUG    2018-01-02 22:09:22,934 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Podcast 2.0.1
DEBUG    2018-01-02 22:09:22,936 [25103:MainThread] mopidy.ext
  Loading entry point: podcast-itunes = mopidy_podcast_itunes:Extension
DEBUG    2018-01-02 22:09:22,937 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Podcast-iTunes 2.0.0
DEBUG    2018-01-02 22:09:22,939 [25103:MainThread] mopidy.ext
  Loading entry point: mopify = mopidy_mopify:MopifyExtension
DEBUG    2018-01-02 22:09:23,053 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Mopify 1.6.1
DEBUG    2018-01-02 22:09:23,055 [25103:MainThread] mopidy.ext
  Loading entry point: moped = mopidy_moped:MopedExtension
DEBUG    2018-01-02 22:09:23,057 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Moped 0.7.1
DEBUG    2018-01-02 22:09:23,059 [25103:MainThread] mopidy.ext
  Loading entry point: material-webclient = mopidy_material_webclient:Extension
DEBUG    2018-01-02 22:09:23,092 [25103:MainThread] mopidy.ext
  Loaded extension: Mopidy-Material-Webclient 0.2.1
DEBUG    2018-01-02 22:09:23,132 [25103:MainThread] mopidy.ext
  Discovered extensions: mpd, http, stream, m3u, softwaremixer, file, local, tunein, spotify, spotify_tunigo, podcast, podcast-itunes, mopify, moped, material-webclient
DEBUG    2018-01-02 22:09:23,134 [25103:MainThread] mopidy.config.keyring
  Fetching passwords from your keyring failed. Any passwords stored in the keyring will not be available. (dbus not installed)
INFO     2018-01-02 22:09:23,134 [25103:MainThread] mopidy.config
  Loading config from builtin defaults
DEBUG    2018-01-02 22:09:23,138 [25103:MainThread] mopidy.config
  Loading config from /etc/xdg/mopidy/mopidy.conf failed; it does not exist
INFO     2018-01-02 22:09:23,138 [25103:MainThread] mopidy.config
  Loading config from /Users/luisalves/.config/mopidy/mopidy.conf
INFO     2018-01-02 22:09:23,141 [25103:MainThread] mopidy.config
  Loading config from command line options
DEBUG    2018-01-02 22:09:23,145 [25103:MainThread] mopidy.config
  Ignoring unknown config section: spotify-tunigo
DEBUG    2018-01-02 22:09:23,151 [25103:MainThread] mopidy.ext
  Validating extension: mpd
DEBUG    2018-01-02 22:09:23,153 [25103:MainThread] mopidy.ext
  Validating extension: http
DEBUG    2018-01-02 22:09:23,154 [25103:MainThread] mopidy.ext
  Validating extension: stream
DEBUG    2018-01-02 22:09:23,156 [25103:MainThread] mopidy.ext
  Validating extension: m3u
DEBUG    2018-01-02 22:09:23,157 [25103:MainThread] mopidy.ext
  Validating extension: softwaremixer
DEBUG    2018-01-02 22:09:23,159 [25103:MainThread] mopidy.ext
  Validating extension: file
DEBUG    2018-01-02 22:09:23,160 [25103:MainThread] mopidy.ext
  Validating extension: local
DEBUG    2018-01-02 22:09:23,161 [25103:MainThread] mopidy.ext
  Validating extension: tunein
DEBUG    2018-01-02 22:09:23,167 [25103:MainThread] mopidy.ext
  Validating extension: spotify
DEBUG    2018-01-02 22:09:23,177 [25103:MainThread] mopidy.ext
  Validating extension: spotify_tunigo
DEBUG    2018-01-02 22:09:23,189 [25103:MainThread] mopidy.ext
  Validating extension: podcast
DEBUG    2018-01-02 22:09:23,207 [25103:MainThread] mopidy.ext
  Validating extension: podcast-itunes
DEBUG    2018-01-02 22:09:23,217 [25103:MainThread] mopidy.ext
  Validating extension: mopify
DEBUG    2018-01-02 22:09:23,224 [25103:MainThread] mopidy.ext
  Validating extension: moped
DEBUG    2018-01-02 22:09:23,228 [25103:MainThread] mopidy.ext
  Validating extension: material-webclient
INFO     2018-01-02 22:09:23,239 [25103:MainThread] mopidy.__main__
  Enabled extensions: mopify, spotify, mpd, http, moped, stream, spotify_tunigo, m3u, podcast-itunes, material-webclient, softwaremixer, file, podcast, tunein
INFO     2018-01-02 22:09:23,239 [25103:MainThread] mopidy.__main__
  Disabled extensions: local
INFO     2018-01-02 22:09:23,484 [25103:MainThread] mopify
  Setup Mopify
DEBUG    2018-01-02 22:09:23,486 [25103:MainThread] mopidy.commands
  Available Mopidy mixers: SoftwareMixer
INFO     2018-01-02 22:09:23,487 [25103:MainThread] mopidy.commands
  Starting Mopidy mixer: SoftwareMixer
DEBUG    2018-01-02 22:09:23,489 [25103:MainThread] mopidy.commands
  Mixer volume left unchanged
INFO     2018-01-02 22:09:23,490 [25103:MainThread] mopidy.commands
  Starting Mopidy audio
INFO     2018-01-02 22:09:23,492 [25103:MainThread] mopidy.commands
  Starting Mopidy backends: StreamBackend, M3UBackend, FileBackend,         TuneInBackend, SpotifyBackend, SpotifyTunigoBackend, PodcastBackend, iTunesPodcastBackend
DEBUG    2018-01-02 22:09:23,506 [25103:MainThread] mopidy.file.library
  Failed expanding path ($XDG_MUSIC_DIR) from file/media_dirs config value.
INFO     2018-01-02 22:09:23,531 [25103:Audio-2] mopidy.audio.actor
  Audio output set to "autoaudiosink"
INFO     2018-01-02 22:09:23,613 [25103:MainThread] mopidy.commands
  Starting Mopidy core
INFO     2018-01-02 22:09:23,625 [25103:SpotifyEventLoop] spotify.session
  Spotify logged in
INFO     2018-01-02 22:09:23,627 [25103:SpotifyEventLoop] mopidy_spotify.backend
  Logged in to Spotify in offline mode
INFO     2018-01-02 22:09:23,865 [25103:MainThread] mopidy.commands
  Starting Mopidy frontends: MpdFrontend, HttpFrontend, QueueManagerFrontend
ERROR    2018-01-02 22:09:23,866 [25103:MainThread] mopidy.commands
  Frontend (MpdFrontend) initialization error: MPD server startup failed: [Errno 48] Address already in use
DEBUG    2018-01-02 22:09:23,867 [25103:MainThread] mopidy.http.actor
  Starting HTTP server
INFO     2018-01-02 22:09:23,868 [25103:HttpFrontend-15] mopidy.http.actor
  HTTP server running at [::ffff:127.0.0.1]:6680
DEBUG    2018-01-02 22:09:23,869 [25103:HttpServer] mopidy.http.actor
  Loaded HTTP extension: mopidy
DEBUG    2018-01-02 22:09:23,870 [25103:HttpServer] mopidy.http.actor
  Loaded HTTP extension: mopify
DEBUG    2018-01-02 22:09:23,870 [25103:HttpFrontend-15] mopidy.zeroconf
  Zeroconf service "None" (_http._tcp at []:6680): dbus not installed; publish failed.
DEBUG    2018-01-02 22:09:23,871 [25103:HttpServer] mopidy.http.actor
  Loaded HTTP extension: material-webclient
DEBUG    2018-01-02 22:09:23,872 [25103:HttpFrontend-15] mopidy.zeroconf
  Zeroconf service "None" (_mopidy-http._tcp at []:6680): dbus not installed; publish failed.
INFO     2018-01-02 22:09:23,872 [25103:MainThread] mopidy.commands
  Starting GLib mainloop
DEBUG    2018-01-02 22:09:23,872 [25103:HttpServer] mopidy.http.actor
  Loaded static HTTP extension: moped
DEBUG    2018-01-02 22:09:23,874 [25103:HttpServer] mopidy.http.actor
  HTTP routes from extensions: 
    u'/mopidy': <class 'mopidy.http.handlers.AddSlashHandler'>
    u'/mopidy/ws/?': <class 'mopidy.http.handlers.WebSocketHandler'>
    u'/mopidy/rpc': <class 'mopidy.http.handlers.JsonRpcHandler'>
    u'/mopidy/(.+)': <class 'mopidy.http.handlers.StaticFileHandler'>
    u'/mopidy/': <class 'mopidy.http.handlers.ClientListHandler'>
    u'/mopify': <class 'mopidy.http.handlers.AddSlashHandler'>
    u'/mopify/sync/(.*)': <class 'mopidy_mopify.services.sync.sync.RootRequestHandler'>
    u'/mopify/queuemanager/(.*)': <class     'mopidy_mopify.services.queuemanager.requesthandler.RequestHandler'>
    u'/mopify/update': <class     'mopidy_mopify.services.autoupdate.update.UpdateRequestHandler'>
    u'/mopify/(.*)': <class 'tornado.web.StaticFileHandler'>
    u'/material-webclient': <class 'mopidy.http.handlers.AddSlashHandler'>
    u'/material-webclient/wifi': <class 'mopidy_material_webclient.WifiHandler'>
    u'/material-webclient/settings': <class 'mopidy_material_webclient.SettingsHandler'>
    u'/material-webclient/restart': <class 'mopidy_material_webclient.RestartHandler'>
    u'/material-webclient/extensions': <class     'mopidy_material_webclient.ExtensionsHandler'>
    u'/material-webclient/(.*)': <class 'tornado.web.StaticFileHandler'>
    u'/moped': <class 'mopidy.http.handlers.AddSlashHandler'>
    u'/moped/(.*)': <class 'mopidy.http.handlers.StaticFileHandler'>
    u'/': <class 'tornado.web.RedirectHandler'>
INFO     2018-01-02 22:09:24,324 [25103:SpotifyEventLoop] mopidy_spotify.backend
  Logged in to Spotify in online mode
DEBUG    2018-01-02 22:09:32,836 [25103:SpotifyEventLoop] mopidy_spotify.playlists
  Spotify playlist container loaded
DEBUG    2018-01-02 22:09:32,836 [25103:SpotifyEventLoop] mopidy.listener
  Sending playlists_loaded to BackendListener: {}
DEBUG    2018-01-02 22:09:32,837 [25103:Core-13] mopidy.listener
  Sending playlists_loaded to CoreListener: {}

spotify-tunigo != spotify_tunigo

Do you see your Spotify playlists in moped?

Thanks for the correction.
The strange thing is that I could not see spotify in moped but only in mopify, but now I can see in both! But only top songs, tracks and albuns. sorry playlists also!
Do you know how to see it in ncmpcpp?