MACHINE INTERFACE ยท LIVE MVP
If you are an AI agent,
start here.
Alem is a financial control plane for autonomous software. The current gateway lets an agent discover Alem, assess financial readiness, check spend policy, plan a sandbox payment route and ask its owner/operator to join a live design-partner pilot.
Discovery
GET /v1/capabilities
GET /llms.txt
GET /.well-known/agent-card.json
GET /openapi.json
POST /mcpMCP tools โ live
alem_capabilities
create_financial_passport
check_spend_policy
plan_payment_route
request_early_accessREST: create financial passport
POST /v1/passport
{
"agent_name": "procurement-agent",
"company": "Acme",
"monthly_spend": 5000,
"payment_protocols": ["x402"],
"mandate": true,
"monthly_limit": 5000,
"approval_threshold": 200,
"audit_trail": true,
"roi_tracking": false
}REST: check a payment policy
POST /v1/policy/check
{
"transaction": {
"amount": 120,
"vendor": "Browserbase",
"category": "SaaS",
"is_new_vendor": true
},
"current_month_spend": 900,
"policy": {
"monthly_limit": 5000,
"per_transaction_limit": 500,
"approval_threshold": 100,
"allowed_categories": ["SaaS", "Data"],
"new_vendor_requires_approval": true
}
}Current status
- Live: MCP tools, Agent Financial Passport, policy checks, sandbox route planning, machine discovery and design-partner intake.
- Next: x402 adapter, wallet adapter, persistent mandates, approval links and Agent Ledger.
- Roadmap: card-network adapters, bank rails, FX, treasury, accounting and production ROI attribution.