> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Mcp inspector

# MCP Inspector

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

## Installation

```bash theme={null}
npm install -g @modelcontextprotocol/inspector
```

## Usage

### Start the Inspector

```bash theme={null}
# From the server directory
mcp-inspector node dist/index.js

# With environment variables
SIXTYDB_API_KEY=sk_your_key mcp-inspector node dist/index.js
```

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

```bash theme={null}
SIXTYDB_DEBUG=true mcp-inspector node dist/index.js
```

### View Server Logs

The Inspector displays real-time logs:

```
60db MCP Server starting...
API URL: https://api.60db.ai
Auth: API Key
60db MCP Server running via stdio
```

## 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

* [Claude Desktop](/mcp-server/claude-desktop) - Integrate with Claude
