by vuvuvu
Connect StreamerSongList to manage music queues, song requests, play history, and overlays for your Twitch streams seaml
Connects to StreamerSongList APIs to manage music queues and song requests for Twitch streamers. Read-only access to view current songs, queue status, and play history.
StreamerSongList is a community-built MCP server published by vuvuvu that provides AI assistants with tools and capabilities via the Model Context Protocol. Connect StreamerSongList to manage music queues, song requests, play history, and overlays for your Twitch streams seaml It is categorized under other, analytics data.
You can install StreamerSongList in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
StreamerSongList is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
StreamerSongList is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated StreamerSongList against two servers with overlapping tools; this profile had the clearer scope statement.
According to our notes, StreamerSongList benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
StreamerSongList is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
I recommend StreamerSongList for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
StreamerSongList is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
StreamerSongList reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
StreamerSongList is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We wired StreamerSongList into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
StreamerSongList has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 50
MCP server exposing read-only StreamerSongList tools. Use LLM's to interface with a Live Streamers Song list. Claude Desktop and any MCP client.
Add to Claude Desktop via npx:
{
"mcpServers": {
"streamersonglist": {
"command": "npx",
"args": ["streamersonglist-mcp"]
}
}
}
See claude-desktop-config.with-default-streamer.json for an example with DEFAULT_STREAMER configured.
Optional Smithery install (requires Smithery account):
# First login to Smithery (one-time setup)
npx -y @smithery/cli login
# Then install the MCP server
npx -y @smithery/cli install @vuvuvu/streamersonglist-mcp --client claude
Want to test this MCP server instantly without any local setup? Click the Smithery badge above or visit:
Smithery.ai provides a hosted environment where you can:
Simply click the badge at the top of this README or the link above to get started instantly!
Use the MCP Inspector to explore tools and run requests interactively:
npx @modelcontextprotocol/inspector@latest -- npx streamersonglist-mcp
# or from a local clone
npx @modelcontextprotocol/inspector@latest -- node src/server.js
Alternative (raw stdio):
npm start
printf '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}
' | node src/server.js
For comprehensive examples of how to use these tools, see docs/USAGE_EXAMPLES.md including:
Quick examples:
// Search for songs
{"tool": "searchSongs", "arguments": {"streamerName": "belleune", "query": "Frank Sinatra"}}
// Get most popular songs
{"tool": "getSongs", "arguments": {"streamerName": "belleune", "limit": 20}}
// Compare streamer libraries
{"tool": "getSongs", "arguments": {"streamerName": "vu_vu", "limit": 50}}
Working Endpoints: All 6 tools use real API data
#Please be considerate when using streamersonglists api. It's a shared but limitted resource, be mindful when using LLM's to access it, Please don't ruin it for everyone!
For detailed API testing results, see docs/API_TESTING_REPORT.md
Optionally set a default streamer used when streamerName is omitted:
{
"mcpServers": {
"streamersonglist": {
"command": "npx",
"args": ["streamersonglist-mcp"],
"env": { "DEFAULT_STREAMER": "public_streamer" }
}
}
}
CLI override examples:
DEFAULT_STREAMER=public_streamer npx streamersonglist-mcp
npx streamersonglist-mcp --streamer public_streamer
Configuration options:
DEFAULT_STREAMER — default streamer when an argument is omittedSSL_API_BASE — override API base (default https://api.streamersonglist.com/v1)Version info: The server reports its version from package.json, matching the published package.
Security tip: use only public streamer names; the server calls public read-only endpoints.
npm install — install dependenciesnpm start — run server on stdionpm test — spawn server and verify tools/listnpm run setup — generate Claude Desktop entriesMIT — see LICENSE.
Contributions are welcome via pull requests. Due to limitations of the public StreamerSongList API, scope for major new features is intentionally modest — helpful contributions include:
Please open an issue to discuss larger ideas before starting work, and run npm test before submitting PRs.
This project builds on the excellent StreamerSonglist service. All data and API functionality are provided by StreamerSonglist:
I am not affiliated with or endorsed by StreamerSonglist so please don't bother them with any issues you find in my code. Thankyou Streamersonglist for providing such a useful service to the streamer community. Very POG
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.