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
🎵 11 Available Tools
Core Queue Management
- 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
Play History & Song Database
- getPlayHistory: Retrieve play history with filtering and pagination
- searchSongs: Search the song database with various filters
- getSongDetails: Get detailed information about specific songs
- manageSongAttributes: Add, update, or remove song attributes like tags and ratings
Overlay & Analytics
- getOverlayData: Fetch real-time overlay data for streaming software
- getStreamStats: Get comprehensive streaming statistics and analytics
🔧 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 -Update- Since i've added the other api endpoints, those will require authentication, (I haven't a use for them so I leave it upto you to figure out) otherwise expect a 404 responses
Quick Start
Prerequisites
- Node.js (version 18 or higher)
- Claude Desktop or another MCP-compatible client
Installation
Option 1: Using npx (Recommended)
No installation required! Just configure Claude Desktop to use:
Option 2: Local Installation
- Clone this repository:
- Install dependencies:
- Test the server:
Installing via Smithery
To install streamersonglist-mcp for Claude Desktop automatically via Smithery:
Usage with Claude Desktop
Quick Setup (npx method)
- Find your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Add the server to your config:
- Restart Claude Desktop
- 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:
Tool Documentation
getStreamerByName
Fetch detailed information about a specific streamer.
Parameters:
streamerName
(string, required): The name of the streamer
Example:
getQueue
View current song queues with pagination support.
Parameters:
streamerName
(string, required): The name of the streamer whose queue to fetchlimit
(number, optional): Maximum number of songs to return (default: 50)offset
(number, optional): Number of songs to skip for pagination (default: 0)
Example:
getQueueStats
Get comprehensive stats about song queues.
Parameters:
streamerName
(string, required): The name of the streamer whose queue stats to fetch
Example:
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 streamerrequestId
(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 namerequesterName
(string, optional): The name of the person making the requestmessage
(string, optional): Optional message with the request
Examples:
monitorQueue
Monitor queue changes with configurable polling intervals.
Parameters:
streamerName
(string, required): The name of the streamer whose queue to monitorinterval
(number, optional): Polling interval in seconds (default: 30)duration
(number, optional): How long to monitor in seconds (default: 300)
Example:
getPlayHistory
Retrieve play history with filtering and pagination support.
Parameters:
streamerName
(string, required): The name of the streamer whose play history to fetchlimit
(number, optional): Maximum number of entries to return (default: 50)offset
(number, optional): Number of entries to skip for pagination (default: 0)startDate
(string, optional): Start date filter (ISO format)endDate
(string, optional): End date filter (ISO format)
Example:
searchSongs
Search the song database with various filters.
Parameters:
query
(string, optional): Search query for song title or artistartist
(string, optional): Filter by specific artistgenre
(string, optional): Filter by music genrelimit
(number, optional): Maximum number of results (default: 50)offset
(number, optional): Number of results to skip (default: 0)
Example:
getSongDetails
Get detailed information about specific songs.
Parameters:
songId
(string, required): The unique identifier of the song
Example:
getOverlayData
Fetch real-time overlay data for streaming software.
Parameters:
streamerName
(string, required): The name of the streameroverlayType
(string, optional): Type of overlay data ("current", "queue", "stats")
Example:
getStreamStats
Get comprehensive streaming statistics and analytics.
Parameters:
streamerName
(string, required): The name of the streamerperiod
(string, optional): Time period for stats ("day", "week", "month", "year")startDate
(string, optional): Start date for custom period (ISO format)endDate
(string, optional): End date for custom period (ISO format)
Example:
manageSongAttributes
Add, update, or remove song attributes like tags and ratings.
Parameters:
action
(string, required): The action to perform ("add", "update", "remove")songId
(string, required): The unique identifier of the songattributeType
(string, required): Type of attribute ("tag", "rating", "note")value
(string, optional): The attribute value (required for add/update)
Example:
Development
Project Structure
Testing
Run the test script to verify the server works correctly:
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:
The server will start and wait for MCP protocol messages on stdin. You can send a test message:
API Endpoints
The server interacts with these StreamerSongList API endpoints:
Core Queue Management
GET /v1/streamers/{streamerName}
- Get streamer informationGET /v1/streamers/{streamerName}/queue
- Get song queueGET /v1/streamers/{streamerName}/queue/stats
- Get queue statisticsPOST /v1/streamers/{streamerName}/requests
- Create song requestPUT /v1/streamers/{streamerName}/requests/{requestId}
- Update song requestDELETE /v1/streamers/{streamerName}/requests/{requestId}
- Delete song request
Play History & Song Database
GET /v1/streamers/{streamerName}/history
- Get play historyGET /v1/songs/search
- Search song databaseGET /v1/songs/{songId}
- Get song detailsPOST /v1/songs/{songId}/attributes
- Add song attributesPUT /v1/songs/{songId}/attributes/{attributeId}
- Update song attributesDELETE /v1/songs/{songId}/attributes/{attributeId}
- Remove song attributes
Overlay & Analytics
GET /v1/streamers/{streamerName}/overlay
- Get overlay dataGET /v1/streamers/{streamerName}/stats
- Get stream statistics
Troubleshooting
Common Issues
- Server not starting:
- Ensure Node.js 18+ is installed
- Run
npm install
to install dependencies - Check for error messages in the console
- 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
- 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
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
Changelog
v1.1.0
- NEW: Added 6 additional StreamerSongList API endpoints
- NEW: Play history retrieval with filtering (
getPlayHistory
) - NEW: Song database search functionality (
searchSongs
) - NEW: Detailed song information access (
getSongDetails
) - NEW: Real-time overlay data for streaming software (
getOverlayData
) - NEW: Comprehensive streaming analytics (
getStreamStats
) - NEW: Song attribute management system (
manageSongAttributes
) - Enhanced API coverage from 5 to 11 total tools
- Improved documentation with categorized tool sections
- Extended API endpoint coverage for comprehensive StreamerSongList integration
v1.0.0
- Initial release
- Core 5 StreamerSongList tools implemented
- MCP protocol compliance
- Claude Desktop integration
- Comprehensive error handling
This server cannot be installed
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.
Related MCP Servers
- -securityFlicense-qualityA 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 -1Python
- -securityAlicense-qualityA 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 -104PythonMIT License
- -securityFlicense-qualityA 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 -1TypeScript
- -securityFlicense-qualityA Model Context Protocol server that extends AI capabilities by providing file system access and management functionalities to Claude or other AI assistants.Last updated -3TypeScript