askahuman-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@askahuman-mcpAsk a human if this email looks like a phishing attempt."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
askahuman-mcp
An MCP (Model Context Protocol) server that gives AI agents access to human verification. Ask a human a question, pay via the Lightning Network, and get a verified answer -- all through standard MCP tools.
Any MCP-compatible AI agent (Claude, Gemini, Codex, etc.) can use this server to request human judgment on tasks that require real-world understanding, common sense, or subjective evaluation.
Platform launch coming soon — The AskAHuman marketplace is on its way. Follow @AskAHumanOnline for updates.
Prerequisites
Node.js >= 18
LND node with REST API enabled and a funded channel (for Lightning payments)
Installation
Run directly (no install required):
npx askahuman-mcpOr install globally:
npm install -g askahuman-mcpConfiguration
All configuration is via environment variables:
Variable | Required | Description |
| Yes | Base URL of the AskAHuman API (e.g. |
| Yes | URL of your LND node's REST API (e.g. |
| Yes | Hex-encoded LND admin macaroon for payment authorization |
| No | Path to LND's TLS certificate file (required for self-signed certs) |
| No | Log verbosity: |
Copy .env.example to .env and fill in your values:
cp .env.example .envTools
The server exposes five tools to AI agents:
Tool | Description | Key Inputs |
| Submit a question and pay via Lightning. Returns immediately with a |
|
| Poll the status of a verification; returns |
|
| Check refund eligibility (advisory, no state change) |
|
| Claim a refund for an expired-unclaimed task |
|
| Query current server-side pricing |
|
Task types
BINARY_DECISION-- Yes/No questionsMULTIPLE_CHOICE-- Choose from provided options (supplychoices[])TEXT_RESPONSE-- Free-form text answerMEDIA_VERIFICATION-- Verify one or more images and get a free-form text answer (supplyimages[]as public https URLs, max 8;choices[]is not allowed for this type)
Quick start
Claude Desktop
Add to your Claude Desktop MCP configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"askahuman": {
"command": "npx",
"args": ["askahuman-mcp"],
"env": {
"ASKAHUMAN_API_URL": "https://api.askahuman.online",
"LND_REST_URL": "https://localhost:8080",
"LND_MACAROON_HEX": "<your-macaroon-hex>",
"LND_TLS_CERT_PATH": "/path/to/tls.cert"
}
}
}
}Restart Claude Desktop. The ask_human tool will be available in your conversations.
Example usage
ask_human is non-blocking: it prices the task, pays the Lightning invoice, submits the request, and returns right away with a verificationId and status: "PENDING". The agent then polls check_verification until the human responds. (The MCP request timeout is far shorter than a human's response time, so the tool never blocks waiting for an answer.)
Text / decision task — the agent is prompted:
"Ask a human whether this email looks like a phishing attempt: [email content]"
ask_humanreturns immediately:{ "status": "PENDING", "verificationId": "vid-123", "amountPaidSats": 50 }The agent polls
check_verification({ "verificationId": "vid-123" })every 30–60s:While
terminal: false(nextStep: "keep_polling") → keep polling.When
terminal: truewith statusCOMPLETED→ the human's answer is in theresultfield.
Image task (MEDIA_VERIFICATION) — verify images and get a free-form answer:
ask_human({
"taskType": "MEDIA_VERIFICATION",
"question": "Do both photos show the same person?",
"images": [
"https://example.com/a.jpg",
"https://example.com/b.jpg"
],
"maxWaitMinutes": 240
})
// → { "status": "PENDING", "verificationId": "vid-456", "amountPaidSats": 80 }Image URLs must be public https links (up to 8). Then poll check_verification exactly as above.
Multiple choice — supply choices[]:
ask_human({
"taskType": "MULTIPLE_CHOICE",
"question": "Which category best fits this support ticket?",
"choices": ["Billing", "Bug report", "Feature request", "Spam"]
})If a task expires in the queue without being claimed, check_verification returns nextStep: "call_request_refund" — call request_refund({ "verificationId": "..." }) to reclaim the sats.
Development
# Clone the repository
git clone https://github.com/AskAHumanOnline/askahuman-mcp-server.git
cd askahuman-mcp-server
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Run with coverage
npx jest --config jest.config.cjs --coverage
# Lint
npm run lint
# Start the server (stdio transport)
npm start
# Interactive tool testing with MCP Inspector
npx @modelcontextprotocol/inspector dist/index.jsRunning tests
Unit tests mock all external I/O (HTTP calls, LND). No running services are required.
npm testIntegration tests (in tests/integration/) are skipped by default. They require:
A running AskAHuman backend
A Polar Lightning Network with funded channels
How it works
The server implements the L402 payment protocol:
Submit -- The agent sends a verification request to the AskAHuman API
Pay -- The API returns a 402 with a Lightning invoice; the MCP server pays it via the agent's LND node
Authenticate -- The payment preimage proves payment; the server retries with L402 credentials
Return -- The request is queued for a human verifier and
ask_humanreturns immediately with averificationId(statusPENDING)Poll -- The agent calls
check_verificationevery 30–60s until it returnsterminal: true; statusCOMPLETEDcarries the human's answer inresult
If a task expires without being claimed, check_verification signals nextStep: "call_request_refund" and the agent can call request_refund to reclaim the sats.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AskAHumanOnline/askahuman-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server