Skip to main content
Glama

get_queue_status

Check current audio processing queue status to monitor batch operations and track progress for game audio, voice processing, and music mastering tasks.

Instructions

Get current status of the audio processing queue

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • MCP tool handler implementation that executes get_queue_status by calling audioProcessor.getQueueStatus() and returning the status as JSON response.
    case 'get_queue_status': { const status = audioProcessor.getQueueStatus(); return { content: [ { type: 'text', text: JSON.stringify(status, null, 2) } ] }; }
  • Tool definition object containing the name, description, and input schema (empty object since no parameters required).
    export const getQueueStatusTool: Tool = { name: 'get_queue_status', description: 'Get current status of the audio processing queue', inputSchema: { type: 'object', properties: {} } };
  • Registration of getQueueStatusTool in the exported tools array used for MCP server registration.
    export const tools = [ processAudioFileTool, batchProcessAudioTool, applyPresetTool, listPresetsTool, getQueueStatusTool, generateVariationsTool, createHarmonicsTool, advancedProcessTool, layerSoundsTool ];
  • Core helper method implementation that provides the actual queue status data from the PQueue instance.
    getQueueStatus() { return { size: this.queue.size, pending: this.queue.pending, isPaused: this.queue.isPaused }; }

Latest Blog Posts

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/DeveloperZo/mcp-audio-tweaker'

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