Skip to main content
Glama

StreamerSongList MCP Server

by vuvuvu

StreamerSongList MCP Server

A Model Context Protocol (MCP) server that provides tools for interacting with StreamerSongList APIs. This server enables AI assistants like Claude to manage song requests, monitor queues, and interact with streaming platforms' song request systems.

Features

🎵 Available Tools

  • getStreamerByName: Fetch detailed information about a specific streamer
  • getQueue: View current song queues with pagination support
  • getQueueStats: Get comprehensive stats about song queues including total songs, duration, and popular tracks
  • manageSongRequest: Create, update, and delete song requests
  • monitorQueue: Monitor queue changes with configurable polling intervals

🔧 Technical Features

  • MCP Protocol Compliant: Works with Claude Desktop, OpenAI agents, and other MCP clients
  • Type Safety: Built with comprehensive input validation
  • Error Handling: Robust error handling and user-friendly error messages
  • No Authentication Required: Simplified setup without auth complexity

Quick Start

Prerequisites

  • Node.js (version 18 or higher)
  • Claude Desktop or another MCP-compatible client

Installation

No installation required! Just configure Claude Desktop to use:

{ "mcpServers": { "streamersonglist": { "command": "npx", "args": ["streamersonglist-mcp"] } } }
Option 2: Local Installation
  1. Clone this repository:
    git clone https://github.com/vuvuvu/streamersonglist-mcp.git cd streamersonglist-mcp
  2. Install dependencies:
    npm install
  3. Test the server:
    npm test

Usage with Claude Desktop

Quick Setup (npx method)
  1. Find your Claude Desktop config file:
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the server to your config:
    { "mcpServers": { "streamersonglist": { "command": "npx", "args": ["streamersonglist-mcp"] } } }
  3. Restart Claude Desktop
  4. Test it out: Ask Claude: "Use the getStreamerByName tool to get information about a popular streamer"
Alternative: Local Installation Method

If you prefer to run from a local clone:

{ "mcpServers": { "streamersonglist": { "command": "node", "args": ["src/server.js"], "cwd": "/path/to/streamersonglist-mcp" } } }

Tool Documentation

getStreamerByName

Fetch detailed information about a specific streamer.

Parameters:

  • streamerName (string, required): The name of the streamer

Example:

Use getStreamerByName with streamerName "belleune"

getQueue

View current song queues with pagination support.

Parameters:

  • streamerName (string, required): The name of the streamer whose queue to fetch
  • limit (number, optional): Maximum number of songs to return (default: 50)
  • offset (number, optional): Number of songs to skip for pagination (default: 0)

Example:

Use getQueue with streamerName "belleune" and limit 10

getQueueStats

Get comprehensive stats about song queues.

Parameters:

  • streamerName (string, required): The name of the streamer whose queue stats to fetch

Example:

Use getQueueStats with streamerName "belleune"

manageSongRequest

Create, update, and delete song requests.

Parameters:

  • action (string, required): The action to perform ("create", "update", or "delete")
  • streamerName (string, required): The name of the streamer
  • requestId (string, optional): The ID of the request (required for update/delete)
  • songTitle (string, optional): The title of the song (required for create/update)
  • artist (string, optional): The artist name
  • requesterName (string, optional): The name of the person making the request
  • message (string, optional): Optional message with the request

Examples:

Use manageSongRequest to create a new request: - action: "create" - streamerName: "belleune" - songTitle: "Bohemian Rhapsody" - artist: "Queen" - requesterName: "ChatUser123"

monitorQueue

Monitor queue changes with configurable polling intervals.

Parameters:

  • streamerName (string, required): The name of the streamer whose queue to monitor
  • interval (number, optional): Polling interval in seconds (default: 30)
  • duration (number, optional): How long to monitor in seconds (default: 300)

Example:

Use monitorQueue with streamerName "belleune", interval 60, duration 600

Development

Project Structure

streamersonglist-mcp/ ├── src/ │ └── server.js # Main MCP server implementation ├── package.json # Node.js dependencies and scripts ├── test-server.js # Test script └── README.md # This file

Testing

Run the test script to verify the server works correctly:

npm test

This will:

  • Start the MCP server
  • Send a test request
  • Verify the server responds with the correct tools

Manual Testing

You can also test the server manually:

npm start

The server will start and wait for MCP protocol messages on stdin. You can send a test message:

{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}

API Endpoints

The server interacts with these StreamerSongList API endpoints:

  • GET /v1/streamers/{streamerName} - Get streamer information
  • GET /v1/streamers/{streamerName}/queue - Get song queue
  • GET /v1/streamers/{streamerName}/queue/stats - Get queue statistics
  • POST /v1/streamers/{streamerName}/requests - Create song request
  • PUT /v1/streamers/{streamerName}/requests/{requestId} - Update song request
  • DELETE /v1/streamers/{streamerName}/requests/{requestId} - Delete song request

Troubleshooting

Common Issues

  1. Server not starting:
    • Ensure Node.js 18+ is installed
    • Run npm install to install dependencies
    • Check for error messages in the console
  2. Claude Desktop not seeing the server:
    • Verify the config file path is correct
    • Ensure the cwd path points to your project directory
    • Restart Claude Desktop completely
    • Check for JSON syntax errors in the config file
  3. API errors:
    • The StreamerSongList API endpoints are simulated for demonstration
    • In a real implementation, you would need valid API credentials
    • Check network connectivity if using real endpoints

Getting Help

  • Issues: Report bugs or request features on GitHub
  • MCP Documentation: https://modelcontextprotocol.io
  • Claude Desktop: https://claude.ai/download

License

MIT License - see LICENSE file for details.

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

Changelog

v1.0.0

  • Initial release
  • All 5 StreamerSongList tools implemented
  • MCP protocol compliance
  • Claude Desktop integration
  • Comprehensive error handling
-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

A Model Context Protocol server that enables AI assistants like Claude to manage song requests, monitor queues, and interact with streaming platforms' song request systems.

  1. Features
    1. 🎵 Available Tools
    2. 🔧 Technical Features
  2. Quick Start
    1. Prerequisites
    2. Installation
    3. Usage with Claude Desktop
  3. Tool Documentation
    1. getStreamerByName
    2. getQueue
    3. getQueueStats
    4. manageSongRequest
    5. monitorQueue
  4. Development
    1. Project Structure
    2. Testing
    3. Manual Testing
  5. API Endpoints
    1. Troubleshooting
      1. Common Issues
      2. Getting Help
    2. License
      1. Contributing
        1. Changelog
          1. v1.0.0

        Related MCP Servers

        • -
          security
          F
          license
          -
          quality
          A Model Context Protocol server that enables AI assistants like Claude to perform Python development tasks through file operations, code analysis, project management, and safe code execution.
          Last updated -
          1
          Python
          • Linux
          • Apple
        • -
          security
          A
          license
          -
          quality
          A Model Context Protocol server that enables AI assistants like Claude to interact directly with Home Assistant, allowing them to query device states, control smart home entities, and perform automation tasks.
          Last updated -
          104
          Python
          MIT License
          • Apple
          • Linux
        • -
          security
          F
          license
          -
          quality
          A Model Context Protocol server that enables AI assistants like Claude to interact with Spotify, allowing them to search for tracks, control playback, and manage playlists.
          Last updated -
          1
          TypeScript
          • Apple
        • -
          security
          F
          license
          -
          quality
          A Model Context Protocol server that extends AI capabilities by providing file system access and management functionalities to Claude or other AI assistants.
          Last updated -
          3
          TypeScript
          • Apple

        View all related MCP servers

        MCP directory API

        We provide all the information about MCP servers via our MCP API.

        curl -X GET 'https://glama.ai/api/mcp/v1/servers/vuvuvu/streamersonglist-mcp'

        If you have feedback or need assistance with the MCP directory API, please join our Discord server