Skip to main content
Glama
pixxelboy
by pixxelboy
detect-ai-music.json2.01 kB
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "detect_ai_music", "description": "Detect whether an audio file contains AI-generated music versus human-created music. Returns a confidence score and classification.", "type": "object", "properties": { "name": { "const": "detect_ai_music" }, "description": { "const": "Detect if audio is AI-generated or human-made" }, "inputSchema": { "type": "object", "properties": { "audio_url": { "type": "string", "format": "uri", "description": "Public URL to the audio file (MP3, WAV, FLAC, OGG, or M4A)", "examples": [ "https://example.com/track.mp3" ] } }, "required": ["audio_url"], "additionalProperties": false }, "outputSchema": { "type": "object", "properties": { "confidence": { "type": "number", "minimum": 0, "maximum": 100, "description": "Confidence score (0-100) for the classification" }, "classification": { "type": "string", "enum": ["ai_generated", "human_made", "uncertain"], "description": "Classification result: ai_generated if likely AI, human_made if likely human, uncertain if confidence is low" } }, "required": ["confidence", "classification"] } }, "examples": [ { "input": { "audio_url": "https://example.com/ai-track.mp3" }, "output": { "confidence": 92, "classification": "ai_generated" } }, { "input": { "audio_url": "https://example.com/real-song.mp3" }, "output": { "confidence": 87, "classification": "human_made" } }, { "input": { "audio_url": "https://example.com/hybrid.mp3" }, "output": { "confidence": 45, "classification": "uncertain" } } ] }

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/pixxelboy/amplify-mcp'

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