PluginBench
MCP Server

Voice Transcriber MCP Server MCP Server

io.github.fgasparetto/voice-transcriber-mcp

What is the Voice Transcriber MCP Server MCP server?

MCP server for transcribing Google Chat voice messages using Groq Whisper API

How to install Voice Transcriber MCP Server

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • GROQ_API_KEY
    required
    secret

    Groq API key for Whisper transcription (free at console.groq.com)

  • GCHAT_TOKEN_PATH

    Path to Google Chat OAuth2 token.json

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "voice-transcriber-mcp": {
      "command": "uvx",
      "args": [
        "voice-transcriber-mcp"
      ],
      "env": {
        "GROQ_API_KEY": "<YOUR_GROQ_API_KEY>",
        "GCHAT_TOKEN_PATH": "<YOUR_GCHAT_TOKEN_PATH>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "voice-transcriber-mcp": {
      "command": "uvx",
      "args": [
        "voice-transcriber-mcp"
      ],
      "env": {
        "GROQ_API_KEY": "<YOUR_GROQ_API_KEY>",
        "GCHAT_TOKEN_PATH": "<YOUR_GCHAT_TOKEN_PATH>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "voice-transcriber-mcp": {
      "command": "uvx",
      "args": [
        "voice-transcriber-mcp"
      ],
      "env": {
        "GROQ_API_KEY": "<YOUR_GROQ_API_KEY>",
        "GCHAT_TOKEN_PATH": "<YOUR_GCHAT_TOKEN_PATH>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "voice-transcriber-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "voice-transcriber-mcp"
      ],
      "env": {
        "GROQ_API_KEY": "<YOUR_GROQ_API_KEY>",
        "GCHAT_TOKEN_PATH": "<YOUR_GCHAT_TOKEN_PATH>"
      }
    }
  }
}
Claude Code
claude mcp add voice-transcriber-mcp --env GROQ_API_KEY=<YOUR_GROQ_API_KEY> --env GCHAT_TOKEN_PATH=<YOUR_GCHAT_TOKEN_PATH> -- uvx voice-transcriber-mcp

Related MCP servers

MCP server for ChipsAI — manage chatbots, conversations, and AI models

View repository →

MCP server for ChipsNews — manage news sources, articles, and triggers

View repository →

MCP server for Italian electronic invoicing (SDI) via Invoicetronic API

View repository →