MCP-Human: Human Assistance for AI Assistants
A Model Context Protocol (MCP) server that enables AI assistants to get human input when needed. This tool creates tasks on Amazon Mechanical Turk that let real humans answer questions from AI systems. While primarily a proof-of-concept, it demonstrates how to build human-in-the-loop AI systems using the MCP standard. See limitations for current constraints.

Setup
Prerequisites
- Node.js 16+
- AWS credentials with MTurk permissions. See instructions below.
- AWS CLI (recommended for setting aws credentials)
Configuring AWS credentials
# Configure AWS credentials for profile mcp-human
export AWS_ACCESS_KEY_ID="your_access_key"
export AWS_SECRET_ACCESS_KEY="your_secret_key"
aws configure set aws_access_key_id ${AWS_ACCESS_KEY_ID} --profile mcp-human
aws configure set aws_secret_access_key ${AWS_SECRET_ACCESS_KEY} --profile mcp-humanConfiguring MCP server with your MCP client
Claude code
Sandbox mode:
claude mcp add human -- npx -y mcp-human@latest





