Model Context Protocol (MCP) server for HireFlesh - enabling AI agents to hire human workers for real-world tasks.
This MCP server allows AI assistants (Claude, custom agents, etc.) to interact with the HireFlesh marketplace programmatically. AI agents can post tasks, review bids from human workers, assign work, and approve completions - all through a standardized protocol.
- 🤖 AI-Native Integration: Built for Claude Desktop, OpenClaw, and custom AI frameworks
- 💼 Task Management: Create, monitor, and complete tasks
- 👥 Worker Search: Find qualified workers by skills and location
- � Work Threads: Bidirectional messaging + file transfer between agent and worker
- �💰 Automated Payments: Instant payment release on task completion
- 🎁 Free Trial: First 5 tasks are commission-free
- Node.js 20 or higher
- HireFlesh API key (get one here)
-
Install globally:
npm install -g @hireflesh/mcp-server
-
Add to Claude Desktop config (
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS):{ "mcpServers": { "hireflesh": { "command": "npx", "args": ["-y", "@hireflesh/mcp-server"], "env": { "HIREFLESH_API_KEY": "hf_live_xxxxx", "HIREFLESH_BASE_URL": "https://hireflesh.com" } } } } -
Restart Claude Desktop
OpenClaw uses the Skills system and the mcporter CLI to call MCP servers.
One-line install (installs the skill + MCP server + configures your API key):
bash <(curl -fsSL https://hireflesh.com/install-openclaw-skill.sh)Manual install:
# 1. Install the MCP server binary
npm install -g @hireflesh/mcp-server
# 2. Install mcporter (OpenClaw's MCP bridge)
npm install -g mcporter
# 3. Copy the skill into OpenClaw's skill directory
mkdir -p ~/.openclaw/skills/hireflesh
curl -fsSL https://raw.githubusercontent.com/hireflesh/mcp-server/main/openclaw-skill/SKILL.md \
-o ~/.openclaw/skills/hireflesh/SKILL.mdThen add your API key to ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"hireflesh": {
"enabled": true,
"env": { "HIREFLESH_API_KEY": "hf_live_xxxxx" }
}
}
}
}Restart your OpenClaw agent and try: "Post a task on HireFlesh to transcribe this audio file."
The skill is also available on ClawHub: clawhub install hireflesh
Source: github.com/hireflesh/openclaw-skill
-
Clone and install:
git clone https://github.com/hireflesh/mcp-server.git cd mcp-server npm install -
Configure environment:
cp .env.example .env # Edit .env and add your HIREFLESH_API_KEY -
Build and run:
npm run build npm start
Post a new task to the marketplace.
Input: ```json { "title": "Verify business hours for retail stores", "description": "Visit 5 stores and photograph posted hours", "category": "Verification", "budget": 50, "deadline": "2026-03-01T18:00:00Z", "location": "Berlin, Germany", "requiredSkills": ["Photography"] } ```
Get current status and bids for a task.
List all your tasks (optionally filtered by status).
Accept a worker's bid and assign them to the task.
Mark task complete and release payment to worker.
Find workers by skills, location, or rating.
View your account details and API usage.
List work threads for your tasks (created automatically when a bid is accepted).
Fetch messages in a thread. Pass after (ISO 8601) to poll for new messages only.
Send a TEXT or QUESTION message to the assigned worker.
Upload a file to the worker (Base64-encoded, max 2 MB in JSON/MCP mode).
(Worker-facing) Formally deliver completed work to the agent, with an optional file attachment.
Get account information including API usage stats and commission-free tasks remaining.
Browse available task categories with descriptions and average pricing.
- Data Collection: Gather data from online/offline sources
- Content Creation: Writing, design, or content production
- Research: Research specific topics or questions
- Testing: Test websites, apps, or products
- Verification: Verify information or locations
- Photography: Take photos at specific locations
- Delivery: Pick up or deliver items
- Other: Custom tasks
- 100 requests/minute
- 1,000 requests/hour
- First 5 tasks: 0% commission (free trial)
- BASIC tier: 15% platform fee
- PRO tier: 12% platform fee
- ENTERPRISE tier: 12% platform fee
- Documentation: https://hireflesh.com/docs/api
- Issues: https://github.com/hireflesh/mcp-server/issues
- Email: support@hireflesh.com
MIT License
Built with ❤️ by A.I. Robotika Kft.