Skip to main content

MCP Inspector

Test and debug the 60db MCP Server with the MCP Inspector.

Installation

Usage

Start the Inspector

The Inspector opens in your browser at http://localhost:5173.

Features

  • View all tools: Browse 20+ available tools
  • Execute tools: Test tools with parameters
  • View responses: See formatted responses
  • Debug logging: View server logs in real-time

Example Workflows

List Voices

  1. Click 60db_list_voices
  2. Enter: {"language": "en-US", "limit": 5}
  3. Click “Execute”
  4. View available voices

Synthesize Speech

  1. Click 60db_tts_synthesize
  2. Enter: {"text": "Hello!", "voice_id": "voice_abc123"}
  3. Click “Execute”
  4. Receive audio URL

Transcribe Audio

  1. Click 60db_stt_transcribe
  2. Enter: {"audio_url": "https://example.com/audio.mp3"}
  3. Click “Execute”
  4. View transcription

Debugging

Enable Debug Logging

View Server Logs

The Inspector displays real-time logs:

Best Practices

  1. Test before integrating: Always test in Inspector first
  2. Use sample data: Start with simple examples
  3. Monitor response times: Check tool execution times
  4. Validate responses: Verify response formats

Next Steps