seesayearn-boop/loopuman-mcp
MCP Server & SDKs for Loopuman — The Human Layer for AI. Connect AI agents to real humans via Telegram & WhatsApp with instant crypto payments.
Platform-specific configuration:
{
"mcpServers": {
"loopuman-mcp": {
"command": "npx",
"args": [
"-y",
"loopuman-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
The Human Layer for AI — Connect AI agents to real humans for verification, judgment, and tasks that require human intelligence.
Loopuman provides an MCP server and SDKs that let AI agents request human help via a global workforce on Telegram and WhatsApp, with instant cryptocurrency payments on Celo.
cd mcp-server
npm install
LOOPUMAN_API_KEY=your_key node index.jsnpm install loopumanconst Loopuman = require('loopuman');
const client = new Loopuman({ apiKey: 'your_key' });
// Ask a human a question
const result = await client.ask('Is this image appropriate for children?');
console.log(result.response);
// Post a task with budget
const task = await client.createTask({
title: 'Verify this business address',
description: 'Visit and confirm this address exists: 123 Main St',
budget: 500, // 500 VAE = $5
estimatedSeconds: 1800
});pip install loopumanfrom loopuman import Loopuman
client = Loopuman(api_key="your_key")
result = client.ask("Is this image appropriate for children?")
print(result.response)from loopuman import get_langchain_toolintegrations/crewai_tool.pyintegrations/autogen_tool.pyintegrations/langgraph_tool.pyintegrations/vertex_connector.pyLoading reviews...