onyx_skill_bundle
InactiveTool of onyx-paid-mcp
Plan a multi-tool agent workflow under one x402 budget cap. Given a list of tool endpoints (any x402 server) and a max-spend cap, returns: unified cost preview (sum of declared prices), per-step prerequisites, estimated total settlement count, and whether the bundle fits the cap. v1 = analysis card (free); v2 = actually brokers settlement. (price: $0 USDC, tier: free)
Parameters schema
{
"type": "object",
"required": [
"tools",
"max_spend_usdc"
],
"properties": {
"tools": {
"type": "array",
"items": {
"type": "object",
"required": [
"endpoint_url"
],
"properties": {
"depends_on": {
"type": "array",
"items": {
"type": "integer"
}
},
"description": {
"type": "string"
},
"endpoint_url": {
"type": "string"
}
}
},
"description": "List of tools to bundle. Each: {endpoint_url, description, depends_on (optional)}."
},
"max_spend_usdc": {
"type": "number",
"description": "Bundle budget cap in USDC. Bundle is rejected if sum(prices) > cap."
}
}
}Parent server
onyx-paid-mcp
https://github.com/dimitrilaouanis-tech/onyx-mcp
2/7 registries