Description

MCP server allowing AI assistants to ask questions to humans via Discord.

Installation

npx -y human-in-the-loop-mcp
npm install human-in-the-loop-mcp
git clone https://github.com/KOBA789/human-in-the-loop

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "human-in-the-loop-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "human-in-the-loop-mcp"
      ]
    }
  }
}