We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/stefanwatt/haos-mcp-ts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
MelodyQueueTool.ts•397 B
import { MCPTool } from "mcp-framework";
import { RunMelodyCmd } from "../melody/index.js";
class MelodyQueueTool extends MCPTool {
name = "melody-queue";
description = `Access the playback queue using Melody CLI.
Index can be used with the queue-play tool`;
schema = {};
async execute() {
return await RunMelodyCmd("queue")
}
}
export default MelodyQueueTool;