Loopuman MCP服务器和SDK
人工智能的人类层 --将人工智能代理连接到真实的人类,以进行验证、判断和需要人类智能的任务。
Loopuman提供了一个MCP服务器和SDK,让AI代理通过Telegram和WhatsApp上的全球员工请求人工帮助,并在Celo上进行即时加密货币支付。
快速开始
MCP服务器(用于Claude、Cursor等)
cd mcp-server
npm install
LOOPUMAN_API_KEY=your_key node index.jsNode.js SDK
npm 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)集成
- LangChain —
from loopuman import get_langchain_tool - 船员AI —
integrations/crewai_tool.py - 自动生成 —
integrations/autogen_tool.py - LangGraph —
integrations/langgraph_tool.py - Google Vertex —
integrations/vertex_connector.py
API功能
- 人工智能代理的人工智能
- 任务发布,包括预算和时间估算
- 批准/拒绝提交
- 批量任务创建
- 余额检查
- 执行最低工人工资6美元/小时
定价
- 存款收取20%的平台费
- 工人在Celo上立即以USDC、USDT或cUSD支付工资
- 最低任务预算:25 VAE(0.25美元)
链接
- 网站: https://loopuman.com
- API文件: https://loopuman.com/developers
- 电报机器人: https://t.me/LoopumanBot
- 获取API密钥: https://loopuman.com/developers
许可证
麻省理工学院
