ai.agenttrust/mcp
direct_hire
Get the wallet address and hiring details for a skill listing — skipping the job board entirely. Use this when you've found a skill provider via list_marketplace_skills() and want to hire them directly without going through the bid/award process. Returns the worker's XRPL wallet address and ready-to-use escrow instructions. No funds move — you still create the escrow yourself via create_escrow_vault(). Typical flow: 1. list_marketplace_skills() — browse and find a provider 2. direct_hire(skill_id) — get their wallet address + escrow instructions 3. create_escrow_vault(worker_address=..., amount_xrp=...) — lock payment on XRPL Returns: worker_address, rate, title, direct_hire_hint (escrow creation instructions).
Other tools also called direct_hire?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"skill_id": {
"type": "string",
"description": "The skill listing ID from list_marketplace_skills(). e.g. SKILL-PY-001."
}
}
}