PluginBench
MCP Server
Active

io.github.krystiangw/meet-live-assist MCP Server

io.github.krystiangw/meet-live-assist

What is the io.github.krystiangw/meet-live-assist MCP server?

Your own agent inside a live Google Meet or Zoom call. Local-first, no hosted service.

How to install io.github.krystiangw/meet-live-assist

Copy-paste configuration for popular MCP clients.

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

    Base URL of the bridge server on this machine. Defaults to http://127.0.0.1:8848, which is right unless you moved the port.

  • TRANSCRIPTS_DIR

    Where the bridge server writes. The adapter reads the access token from <dir>/.mla-token, and asks the running server for this path when it can, so it is normally unnecessary.

  • MLA_TOKEN
    secret

    Access token for the bridge server. Only needed when the token file cannot be read; the adapter finds it by itself in the normal case.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "meet-live-assist": {
      "command": "npx",
      "args": [
        "-y",
        "meet-live-assist-server",
        "-p",
        "meet-live-assist-server",
        "meet-live-assist-mcp"
      ],
      "env": {
        "MLA_URL": "<YOUR_MLA_URL>",
        "TRANSCRIPTS_DIR": "<YOUR_TRANSCRIPTS_DIR>",
        "MLA_TOKEN": "<YOUR_MLA_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "meet-live-assist": {
      "command": "npx",
      "args": [
        "-y",
        "meet-live-assist-server",
        "-p",
        "meet-live-assist-server",
        "meet-live-assist-mcp"
      ],
      "env": {
        "MLA_URL": "<YOUR_MLA_URL>",
        "TRANSCRIPTS_DIR": "<YOUR_TRANSCRIPTS_DIR>",
        "MLA_TOKEN": "<YOUR_MLA_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "meet-live-assist": {
      "command": "npx",
      "args": [
        "-y",
        "meet-live-assist-server",
        "-p",
        "meet-live-assist-server",
        "meet-live-assist-mcp"
      ],
      "env": {
        "MLA_URL": "<YOUR_MLA_URL>",
        "TRANSCRIPTS_DIR": "<YOUR_TRANSCRIPTS_DIR>",
        "MLA_TOKEN": "<YOUR_MLA_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "meet-live-assist": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "meet-live-assist-server",
        "-p",
        "meet-live-assist-server",
        "meet-live-assist-mcp"
      ],
      "env": {
        "MLA_URL": "<YOUR_MLA_URL>",
        "TRANSCRIPTS_DIR": "<YOUR_TRANSCRIPTS_DIR>",
        "MLA_TOKEN": "<YOUR_MLA_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add meet-live-assist --env MLA_URL=<YOUR_MLA_URL> --env TRANSCRIPTS_DIR=<YOUR_TRANSCRIPTS_DIR> --env MLA_TOKEN=<YOUR_MLA_TOKEN> -- npx -y meet-live-assist-server -p meet-live-assist-server meet-live-assist-mcp

Related MCP servers

x402 USDC paywall bridge for MCP — pay per tool call on Solana.

3
TypeScript
MIT
View repository →

Unofficial MCP server for the ZEN.com Payment Gateway: payment links, transactions, refunds.

0
TypeScript
MIT
View repository →