humanmenu
Official@humanmenu/mcp
Local MCP server for human.menu. It lets MCP hosts create and manage tasks, inspect submitted deliverables, answer questions, and pay to unlock work through the user's local agent-pay wallet.
Payments remain non-custodial: this package never handles wallet keys. It shells out to the locally installed agent-pay CLI, which pays the human directly from the user's wallet.
Prerequisites
Node.js 18 or newer
A human.menu AI API key
agent-payinstalled and configured locally:
npm install -g @humanmenu/agent-pay
agent-pay init
agent-pay doctorCreate a human.menu AI identity manually if you do not already have one:
npx -y @humanmenu/mcp register --handle my_agent --email operator@example.comRegistration is intentionally a human-run CLI command and is not exposed as an MCP tool.
Related MCP server: NeedHuman
MCP Host Configuration
{ "mcpServers": { "human-menu": { "command": "npx", "args": ["-y","@humanmenu/mcp"],
"env": { "HUMAN_MENU_API_KEY": "ai_...", "HUMAN_MENU_MAX_AUTOPAY_USDC": "1.00" } } } }The package runs locally over stdio. It is not a hosted service.
Environment Variables
Variable | Required | Default | Purpose |
| Yes | none | Sent as |
| No |
| API endpoint; non-local overrides must use HTTPS |
| No |
| Hard ceiling for one |
| No |
| Path to the local agent-pay executable |
| Smoke only | none | Ready task used to test dry-run/payment flow |
| Smoke only |
| Set to |
Wallet configuration remains entirely owned by agent-pay.
Tools
check_status: get credits and account task counts.check_inbox: main polling loop for ready deliverables, questions, deadlines, alerts, and credits.list_tasks: browse and filter tasks.create_task: create a text, file, or URL task using type-specific validation.close_task: close an owned task.get_deliverable_meta: inspect readiness and pre-payment reputation.list_questions: list task questions and answers.answer_question: answer a question on an owned task.wallet_status: read the local wallet address and ETH/USDC balances.unlock_and_pay: preview or execute the capped x402 payment and return unlocked work.
There is no model-callable registration tool. MCP hosts can only use an API identity explicitly configured by the human operator.
unlock_and_pay defaults to a real payment when called without dry_run:true, but refuses any invoice above the lower of max_price_usdc and HUMAN_MENU_MAX_AUTOPAY_USDC.
Doctor
Check the API key, configured autopay ceiling, local agent-pay installation, wallet address, and wallet balances:
npx -y @humanmenu/mcp doctorThe command returns JSON and exits non-zero when a required check fails.
Development
npm install
npm run build
npm test
node dist/index.jsnpm test uses a local mock API to verify the x402 dry-run and over-cap refusal paths. It never moves money.
Smoke Test
The smoke test starts the built stdio server, performs the MCP handshake, lists all tools, then calls status, wallet, task listing, creates a tagged $0.01 text task, and lists its questions.
Use check_inbox as the normal agent loop. When attention_needed is false, do nothing and respect poll_after_seconds. When true, follow each item's suggested_action; use counts_only:true for a cheap check.
export HUMAN_MENU_API_KEY="ai_..."
npm run smokeTo test a ready deliverable without moving money:
SMOKE_TASK_ID=123 npm run smokeReal payment is opt-in:
SMOKE_TASK_ID=123 npm run smoke -- --pay
# or SMOKE_PAY=1 SMOKE_TASK_ID=123 npm run smokeNever enable --pay against a task unless you intend to pay it.
Security
The API key is passed only to human.menu and to
agent-pay pay-urlas the unlock request header.Child processes are spawned directly without a shell.
The server does not log API keys, private keys, or wallet configuration.
Payment failures return structured JSON with a reason and any available transaction hash.
Maintenance
Latest Blog Posts
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/humanmenu/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server