An MCP (Model Context Protocol) server that allows AI assistants to ask questions to humans via Discord.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"human-in-the-loop": {
"command": "cargo",
"args": [
"run",
"--",
"human-in-the-loop"
]
}
}
}
Run in terminal:
claude mcp add human-in-the-loop cargo run -- human-in-the-loop
Add to .cursor/mcp.json:
{
"mcpServers": {
"human-in-the-loop": {
"command": "cargo",
"args": [
"run",
"--",
"human-in-the-loop"
]
}
}
}