@nirvana-labs/nirvana-mcp 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +462 -0
- package/code-tool-paths.cjs +6 -0
- package/code-tool-paths.cjs.map +1 -0
- package/code-tool-paths.d.cts +2 -0
- package/code-tool-paths.d.cts.map +1 -0
- package/code-tool-types.d.mts +14 -0
- package/code-tool-types.d.mts.map +1 -0
- package/code-tool-types.d.ts +14 -0
- package/code-tool-types.d.ts.map +1 -0
- package/code-tool-types.js +4 -0
- package/code-tool-types.js.map +1 -0
- package/code-tool-types.mjs +3 -0
- package/code-tool-types.mjs.map +1 -0
- package/code-tool-worker.d.mts +5 -0
- package/code-tool-worker.d.mts.map +1 -0
- package/code-tool-worker.d.ts +5 -0
- package/code-tool-worker.d.ts.map +1 -0
- package/code-tool-worker.js +45 -0
- package/code-tool-worker.js.map +1 -0
- package/code-tool-worker.mjs +40 -0
- package/code-tool-worker.mjs.map +1 -0
- package/code-tool.d.mts +12 -0
- package/code-tool.d.mts.map +1 -0
- package/code-tool.d.ts +12 -0
- package/code-tool.d.ts.map +1 -0
- package/code-tool.js +157 -0
- package/code-tool.js.map +1 -0
- package/code-tool.mjs +121 -0
- package/code-tool.mjs.map +1 -0
- package/compat.d.mts +58 -0
- package/compat.d.mts.map +1 -0
- package/compat.d.ts +58 -0
- package/compat.d.ts.map +1 -0
- package/compat.js +387 -0
- package/compat.js.map +1 -0
- package/compat.mjs +378 -0
- package/compat.mjs.map +1 -0
- package/dynamic-tools.d.mts +12 -0
- package/dynamic-tools.d.mts.map +1 -0
- package/dynamic-tools.d.ts +12 -0
- package/dynamic-tools.d.ts.map +1 -0
- package/dynamic-tools.js +135 -0
- package/dynamic-tools.js.map +1 -0
- package/dynamic-tools.mjs +132 -0
- package/dynamic-tools.mjs.map +1 -0
- package/filtering.d.mts +2 -0
- package/filtering.d.mts.map +1 -0
- package/filtering.d.ts +2 -0
- package/filtering.d.ts.map +1 -0
- package/filtering.js +20 -0
- package/filtering.js.map +1 -0
- package/filtering.mjs +13 -0
- package/filtering.mjs.map +1 -0
- package/headers.d.mts +4 -0
- package/headers.d.mts.map +1 -0
- package/headers.d.ts +4 -0
- package/headers.d.ts.map +1 -0
- package/headers.js +22 -0
- package/headers.js.map +1 -0
- package/headers.mjs +18 -0
- package/headers.mjs.map +1 -0
- package/http.d.mts +9 -0
- package/http.d.mts.map +1 -0
- package/http.d.ts +9 -0
- package/http.d.ts.map +1 -0
- package/http.js +108 -0
- package/http.js.map +1 -0
- package/http.mjs +100 -0
- package/http.mjs.map +1 -0
- package/index.d.mts +3 -0
- package/index.d.mts.map +1 -0
- package/index.d.ts +3 -0
- package/index.d.ts.map +1 -0
- package/index.js +91 -0
- package/index.js.map +1 -0
- package/index.mjs +89 -0
- package/index.mjs.map +1 -0
- package/options.d.mts +19 -0
- package/options.d.mts.map +1 -0
- package/options.d.ts +19 -0
- package/options.d.ts.map +1 -0
- package/options.js +417 -0
- package/options.js.map +1 -0
- package/options.mjs +410 -0
- package/options.mjs.map +1 -0
- package/package.json +206 -0
- package/server.d.mts +35 -0
- package/server.d.mts.map +1 -0
- package/server.d.ts +35 -0
- package/server.d.ts.map +1 -0
- package/server.js +170 -0
- package/server.js.map +1 -0
- package/server.mjs +156 -0
- package/server.mjs.map +1 -0
- package/src/code-tool-paths.cts +3 -0
- package/src/code-tool-types.ts +14 -0
- package/src/code-tool-worker.ts +46 -0
- package/src/code-tool.ts +146 -0
- package/src/compat.ts +483 -0
- package/src/dynamic-tools.ts +159 -0
- package/src/filtering.ts +14 -0
- package/src/headers.ts +23 -0
- package/src/http.ts +127 -0
- package/src/index.ts +108 -0
- package/src/options.ts +456 -0
- package/src/server.ts +204 -0
- package/src/stdio.ts +13 -0
- package/src/tools/api-keys/create-api-keys.ts +56 -0
- package/src/tools/api-keys/delete-api-keys.ts +40 -0
- package/src/tools/api-keys/get-api-keys.ts +47 -0
- package/src/tools/api-keys/list-api-keys.ts +44 -0
- package/src/tools/api-keys/update-api-keys.ts +49 -0
- package/src/tools/compute/vms/availability/create-vms-compute-availability.ts +161 -0
- package/src/tools/compute/vms/availability/update-vms-compute-availability.ts +85 -0
- package/src/tools/compute/vms/create-compute-vms.ts +159 -0
- package/src/tools/compute/vms/delete-compute-vms.ts +47 -0
- package/src/tools/compute/vms/get-compute-vms.ts +47 -0
- package/src/tools/compute/vms/list-compute-vms.ts +44 -0
- package/src/tools/compute/vms/os-images/list-vms-compute-os-images.ts +44 -0
- package/src/tools/compute/vms/restart-compute-vms.ts +45 -0
- package/src/tools/compute/vms/update-compute-vms.ts +83 -0
- package/src/tools/compute/vms/volumes/list-vms-compute-volumes.ts +47 -0
- package/src/tools/compute/volumes/availability/create-volumes-compute-availability.ts +56 -0
- package/src/tools/compute/volumes/availability/update-volumes-compute-availability.ts +55 -0
- package/src/tools/compute/volumes/create-compute-volumes.ts +54 -0
- package/src/tools/compute/volumes/delete-compute-volumes.ts +47 -0
- package/src/tools/compute/volumes/get-compute-volumes.ts +47 -0
- package/src/tools/compute/volumes/list-compute-volumes.ts +44 -0
- package/src/tools/compute/volumes/update-compute-volumes.ts +55 -0
- package/src/tools/connect/flux/get-connect-flux.ts +47 -0
- package/src/tools/connect/flux/list-connect-flux.ts +44 -0
- package/src/tools/index.ts +257 -0
- package/src/tools/networking/firewall-rules/create-networking-firewall-rules.ts +71 -0
- package/src/tools/networking/firewall-rules/delete-networking-firewall-rules.ts +52 -0
- package/src/tools/networking/firewall-rules/get-networking-firewall-rules.ts +52 -0
- package/src/tools/networking/firewall-rules/list-networking-firewall-rules.ts +49 -0
- package/src/tools/networking/firewall-rules/update-networking-firewall-rules.ts +74 -0
- package/src/tools/networking/vpcs/availability/create-vpcs-networking-availability.ts +71 -0
- package/src/tools/networking/vpcs/availability/update-vpcs-networking-availability.ts +55 -0
- package/src/tools/networking/vpcs/create-networking-vpcs.ts +69 -0
- package/src/tools/networking/vpcs/delete-networking-vpcs.ts +47 -0
- package/src/tools/networking/vpcs/get-networking-vpcs.ts +47 -0
- package/src/tools/networking/vpcs/list-networking-vpcs.ts +44 -0
- package/src/tools/networking/vpcs/update-networking-vpcs.ts +53 -0
- package/src/tools/operations/get-operations.ts +47 -0
- package/src/tools/operations/list-operations.ts +44 -0
- package/src/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.ts +46 -0
- package/src/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.ts +47 -0
- package/src/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.ts +44 -0
- package/src/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.ts +44 -0
- package/src/tools/rpc-nodes/flex/get-rpc-nodes-flex.ts +47 -0
- package/src/tools/rpc-nodes/flex/list-rpc-nodes-flex.ts +44 -0
- package/src/tools/types.ts +103 -0
- package/src/tools/user/get-user.ts +44 -0
- package/src/tools/vektor/balances/list-historical-vektor-balances.ts +114 -0
- package/src/tools/vektor/balances/list-vektor-balances.ts +108 -0
- package/src/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.ts +105 -0
- package/src/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.ts +113 -0
- package/src/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.ts +81 -0
- package/src/tools/vektor/borrow/markets/list-borrow-vektor-markets.ts +141 -0
- package/src/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.ts +141 -0
- package/src/tools/vektor/borrow/positions/list-borrow-vektor-positions.ts +162 -0
- package/src/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.ts +162 -0
- package/src/tools/vektor/borrow/repay/create-borrow-vektor-repay.ts +73 -0
- package/src/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.ts +89 -0
- package/src/tools/vektor/buy/buy_/create-buy-vektor-buy.ts +89 -0
- package/src/tools/vektor/buy/quotes/list-buy-vektor-quotes.ts +89 -0
- package/src/tools/vektor/executions/get-vektor-executions.ts +39 -0
- package/src/tools/vektor/executions/list-vektor-executions.ts +34 -0
- package/src/tools/vektor/executions/steps/get-executions-vektor-steps.ts +42 -0
- package/src/tools/vektor/executions/steps/sign-executions-vektor-steps.ts +51 -0
- package/src/tools/vektor/incentivize/list-vektor-incentivize.ts +75 -0
- package/src/tools/vektor/lend/lend_/create-lend-vektor-lend.ts +81 -0
- package/src/tools/vektor/lend/markets/list-historical-lend-vektor-markets.ts +141 -0
- package/src/tools/vektor/lend/markets/list-lend-vektor-markets.ts +141 -0
- package/src/tools/vektor/lend/positions/list-historical-lend-vektor-positions.ts +162 -0
- package/src/tools/vektor/lend/positions/list-lend-vektor-positions.ts +162 -0
- package/src/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.ts +63 -0
- package/src/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.ts +73 -0
- package/src/tools/vektor/lock/markets/list-lock-vektor-markets.ts +78 -0
- package/src/tools/vektor/lock/positions/list-lock-vektor-positions.ts +91 -0
- package/src/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.ts +234 -0
- package/src/tools/vektor/lp/pools/list-historical-lp-vektor-pools.ts +138 -0
- package/src/tools/vektor/lp/pools/list-lp-vektor-pools.ts +138 -0
- package/src/tools/vektor/lp/positions/list-historical-lp-vektor-positions.ts +169 -0
- package/src/tools/vektor/lp/positions/list-lp-vektor-positions.ts +169 -0
- package/src/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.ts +188 -0
- package/src/tools/vektor/move/create-vektor-move.ts +71 -0
- package/src/tools/vektor/prices/list-historical-vektor-prices.ts +60 -0
- package/src/tools/vektor/prices/list-vektor-prices.ts +60 -0
- package/src/tools/vektor/registry/assets/list-registry-vektor-assets.ts +62 -0
- package/src/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.ts +54 -0
- package/src/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.ts +85 -0
- package/src/tools/vektor/registry/errors/list-registry-vektor-errors.ts +48 -0
- package/src/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.ts +85 -0
- package/src/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.ts +83 -0
- package/src/tools/vektor/registry/venues/list-registry-vektor-venues.ts +52 -0
- package/src/tools/vektor/sell/quotes/list-sell-vektor-quotes.ts +81 -0
- package/src/tools/vektor/sell/sell_/create-sell-vektor-sell.ts +89 -0
- package/src/tools/vektor/vote/markets/list-vote-vektor-markets.ts +75 -0
- package/src/tools/vektor/vote/rewards/list-vote-vektor-rewards.ts +88 -0
- package/src/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.ts +60 -0
- package/src/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.ts +60 -0
- package/src/tools.ts +1 -0
- package/src/tsconfig.json +11 -0
- package/stdio.d.mts +3 -0
- package/stdio.d.mts.map +1 -0
- package/stdio.d.ts +3 -0
- package/stdio.d.ts.map +1 -0
- package/stdio.js +14 -0
- package/stdio.js.map +1 -0
- package/stdio.mjs +10 -0
- package/stdio.mjs.map +1 -0
- package/tools/api-keys/create-api-keys.d.mts +45 -0
- package/tools/api-keys/create-api-keys.d.mts.map +1 -0
- package/tools/api-keys/create-api-keys.d.ts +45 -0
- package/tools/api-keys/create-api-keys.d.ts.map +1 -0
- package/tools/api-keys/create-api-keys.js +51 -0
- package/tools/api-keys/create-api-keys.js.map +1 -0
- package/tools/api-keys/create-api-keys.mjs +47 -0
- package/tools/api-keys/create-api-keys.mjs.map +1 -0
- package/tools/api-keys/delete-api-keys.d.mts +45 -0
- package/tools/api-keys/delete-api-keys.d.mts.map +1 -0
- package/tools/api-keys/delete-api-keys.d.ts +45 -0
- package/tools/api-keys/delete-api-keys.d.ts.map +1 -0
- package/tools/api-keys/delete-api-keys.js +37 -0
- package/tools/api-keys/delete-api-keys.js.map +1 -0
- package/tools/api-keys/delete-api-keys.mjs +33 -0
- package/tools/api-keys/delete-api-keys.mjs.map +1 -0
- package/tools/api-keys/get-api-keys.d.mts +45 -0
- package/tools/api-keys/get-api-keys.d.mts.map +1 -0
- package/tools/api-keys/get-api-keys.d.ts +45 -0
- package/tools/api-keys/get-api-keys.d.ts.map +1 -0
- package/tools/api-keys/get-api-keys.js +42 -0
- package/tools/api-keys/get-api-keys.js.map +1 -0
- package/tools/api-keys/get-api-keys.mjs +38 -0
- package/tools/api-keys/get-api-keys.mjs.map +1 -0
- package/tools/api-keys/list-api-keys.d.mts +45 -0
- package/tools/api-keys/list-api-keys.d.mts.map +1 -0
- package/tools/api-keys/list-api-keys.d.ts +45 -0
- package/tools/api-keys/list-api-keys.d.ts.map +1 -0
- package/tools/api-keys/list-api-keys.js +39 -0
- package/tools/api-keys/list-api-keys.js.map +1 -0
- package/tools/api-keys/list-api-keys.mjs +35 -0
- package/tools/api-keys/list-api-keys.mjs.map +1 -0
- package/tools/api-keys/update-api-keys.d.mts +45 -0
- package/tools/api-keys/update-api-keys.d.mts.map +1 -0
- package/tools/api-keys/update-api-keys.d.ts +45 -0
- package/tools/api-keys/update-api-keys.d.ts.map +1 -0
- package/tools/api-keys/update-api-keys.js +44 -0
- package/tools/api-keys/update-api-keys.js.map +1 -0
- package/tools/api-keys/update-api-keys.mjs +40 -0
- package/tools/api-keys/update-api-keys.mjs.map +1 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.d.mts +45 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.d.mts.map +1 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.d.ts +45 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.d.ts.map +1 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.js +154 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.js.map +1 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.mjs +150 -0
- package/tools/compute/vms/availability/create-vms-compute-availability.mjs.map +1 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.d.mts +45 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.d.mts.map +1 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.d.ts +45 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.d.ts.map +1 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.js +78 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.js.map +1 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.mjs +74 -0
- package/tools/compute/vms/availability/update-vms-compute-availability.mjs.map +1 -0
- package/tools/compute/vms/create-compute-vms.d.mts +45 -0
- package/tools/compute/vms/create-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/create-compute-vms.d.ts +45 -0
- package/tools/compute/vms/create-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/create-compute-vms.js +154 -0
- package/tools/compute/vms/create-compute-vms.js.map +1 -0
- package/tools/compute/vms/create-compute-vms.mjs +150 -0
- package/tools/compute/vms/create-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/delete-compute-vms.d.mts +45 -0
- package/tools/compute/vms/delete-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/delete-compute-vms.d.ts +45 -0
- package/tools/compute/vms/delete-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/delete-compute-vms.js +42 -0
- package/tools/compute/vms/delete-compute-vms.js.map +1 -0
- package/tools/compute/vms/delete-compute-vms.mjs +38 -0
- package/tools/compute/vms/delete-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/get-compute-vms.d.mts +45 -0
- package/tools/compute/vms/get-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/get-compute-vms.d.ts +45 -0
- package/tools/compute/vms/get-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/get-compute-vms.js +42 -0
- package/tools/compute/vms/get-compute-vms.js.map +1 -0
- package/tools/compute/vms/get-compute-vms.mjs +38 -0
- package/tools/compute/vms/get-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/list-compute-vms.d.mts +45 -0
- package/tools/compute/vms/list-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/list-compute-vms.d.ts +45 -0
- package/tools/compute/vms/list-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/list-compute-vms.js +39 -0
- package/tools/compute/vms/list-compute-vms.js.map +1 -0
- package/tools/compute/vms/list-compute-vms.mjs +35 -0
- package/tools/compute/vms/list-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.mts +45 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.mts.map +1 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.ts +45 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.d.ts.map +1 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.js +39 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.js.map +1 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs +35 -0
- package/tools/compute/vms/os-images/list-vms-compute-os-images.mjs.map +1 -0
- package/tools/compute/vms/restart-compute-vms.d.mts +45 -0
- package/tools/compute/vms/restart-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/restart-compute-vms.d.ts +45 -0
- package/tools/compute/vms/restart-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/restart-compute-vms.js +40 -0
- package/tools/compute/vms/restart-compute-vms.js.map +1 -0
- package/tools/compute/vms/restart-compute-vms.mjs +36 -0
- package/tools/compute/vms/restart-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/update-compute-vms.d.mts +45 -0
- package/tools/compute/vms/update-compute-vms.d.mts.map +1 -0
- package/tools/compute/vms/update-compute-vms.d.ts +45 -0
- package/tools/compute/vms/update-compute-vms.d.ts.map +1 -0
- package/tools/compute/vms/update-compute-vms.js +78 -0
- package/tools/compute/vms/update-compute-vms.js.map +1 -0
- package/tools/compute/vms/update-compute-vms.mjs +74 -0
- package/tools/compute/vms/update-compute-vms.mjs.map +1 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.d.mts +45 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.d.mts.map +1 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.d.ts +45 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.d.ts.map +1 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.js +42 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.js.map +1 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs +38 -0
- package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.mts +45 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.mts.map +1 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.ts +45 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.d.ts.map +1 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.js +49 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.js.map +1 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs +45 -0
- package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs.map +1 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.mts +45 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.mts.map +1 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.ts +45 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.d.ts.map +1 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.js +48 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.js.map +1 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs +44 -0
- package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs.map +1 -0
- package/tools/compute/volumes/create-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/create-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/create-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/create-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/create-compute-volumes.js +49 -0
- package/tools/compute/volumes/create-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/create-compute-volumes.mjs +45 -0
- package/tools/compute/volumes/create-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/delete-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/delete-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/delete-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/delete-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/delete-compute-volumes.js +42 -0
- package/tools/compute/volumes/delete-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/delete-compute-volumes.mjs +38 -0
- package/tools/compute/volumes/delete-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/get-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/get-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/get-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/get-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/get-compute-volumes.js +42 -0
- package/tools/compute/volumes/get-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/get-compute-volumes.mjs +38 -0
- package/tools/compute/volumes/get-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/list-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/list-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/list-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/list-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/list-compute-volumes.js +39 -0
- package/tools/compute/volumes/list-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/list-compute-volumes.mjs +35 -0
- package/tools/compute/volumes/list-compute-volumes.mjs.map +1 -0
- package/tools/compute/volumes/update-compute-volumes.d.mts +45 -0
- package/tools/compute/volumes/update-compute-volumes.d.mts.map +1 -0
- package/tools/compute/volumes/update-compute-volumes.d.ts +45 -0
- package/tools/compute/volumes/update-compute-volumes.d.ts.map +1 -0
- package/tools/compute/volumes/update-compute-volumes.js +48 -0
- package/tools/compute/volumes/update-compute-volumes.js.map +1 -0
- package/tools/compute/volumes/update-compute-volumes.mjs +44 -0
- package/tools/compute/volumes/update-compute-volumes.mjs.map +1 -0
- package/tools/connect/flux/get-connect-flux.d.mts +45 -0
- package/tools/connect/flux/get-connect-flux.d.mts.map +1 -0
- package/tools/connect/flux/get-connect-flux.d.ts +45 -0
- package/tools/connect/flux/get-connect-flux.d.ts.map +1 -0
- package/tools/connect/flux/get-connect-flux.js +42 -0
- package/tools/connect/flux/get-connect-flux.js.map +1 -0
- package/tools/connect/flux/get-connect-flux.mjs +38 -0
- package/tools/connect/flux/get-connect-flux.mjs.map +1 -0
- package/tools/connect/flux/list-connect-flux.d.mts +45 -0
- package/tools/connect/flux/list-connect-flux.d.mts.map +1 -0
- package/tools/connect/flux/list-connect-flux.d.ts +45 -0
- package/tools/connect/flux/list-connect-flux.d.ts.map +1 -0
- package/tools/connect/flux/list-connect-flux.js +39 -0
- package/tools/connect/flux/list-connect-flux.js.map +1 -0
- package/tools/connect/flux/list-connect-flux.mjs +35 -0
- package/tools/connect/flux/list-connect-flux.mjs.map +1 -0
- package/tools/index.d.mts +10 -0
- package/tools/index.d.mts.map +1 -0
- package/tools/index.d.ts +10 -0
- package/tools/index.d.ts.map +1 -0
- package/tools/index.js +241 -0
- package/tools/index.js.map +1 -0
- package/tools/index.mjs +234 -0
- package/tools/index.mjs.map +1 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.js +64 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs +60 -0
- package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.js +45 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.mjs +41 -0
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.js +45 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs +41 -0
- package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.js +42 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs +38 -0
- package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.mts +45 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.mts.map +1 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.ts +45 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.d.ts.map +1 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.js +67 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.js.map +1 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs +63 -0
- package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs.map +1 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.mts +45 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.mts.map +1 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.ts +45 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.d.ts.map +1 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js +64 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.js.map +1 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs +60 -0
- package/tools/networking/vpcs/availability/create-vpcs-networking-availability.mjs.map +1 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.mts +45 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.mts.map +1 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.ts +45 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.d.ts.map +1 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js +48 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.js.map +1 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs +44 -0
- package/tools/networking/vpcs/availability/update-vpcs-networking-availability.mjs.map +1 -0
- package/tools/networking/vpcs/create-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/create-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/create-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/create-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/create-networking-vpcs.js +64 -0
- package/tools/networking/vpcs/create-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/create-networking-vpcs.mjs +60 -0
- package/tools/networking/vpcs/create-networking-vpcs.mjs.map +1 -0
- package/tools/networking/vpcs/delete-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/delete-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/delete-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/delete-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/delete-networking-vpcs.js +42 -0
- package/tools/networking/vpcs/delete-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/delete-networking-vpcs.mjs +38 -0
- package/tools/networking/vpcs/delete-networking-vpcs.mjs.map +1 -0
- package/tools/networking/vpcs/get-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/get-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/get-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/get-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/get-networking-vpcs.js +42 -0
- package/tools/networking/vpcs/get-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/get-networking-vpcs.mjs +38 -0
- package/tools/networking/vpcs/get-networking-vpcs.mjs.map +1 -0
- package/tools/networking/vpcs/list-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/list-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/list-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/list-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/list-networking-vpcs.js +39 -0
- package/tools/networking/vpcs/list-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/list-networking-vpcs.mjs +35 -0
- package/tools/networking/vpcs/list-networking-vpcs.mjs.map +1 -0
- package/tools/networking/vpcs/update-networking-vpcs.d.mts +45 -0
- package/tools/networking/vpcs/update-networking-vpcs.d.mts.map +1 -0
- package/tools/networking/vpcs/update-networking-vpcs.d.ts +45 -0
- package/tools/networking/vpcs/update-networking-vpcs.d.ts.map +1 -0
- package/tools/networking/vpcs/update-networking-vpcs.js +48 -0
- package/tools/networking/vpcs/update-networking-vpcs.js.map +1 -0
- package/tools/networking/vpcs/update-networking-vpcs.mjs +44 -0
- package/tools/networking/vpcs/update-networking-vpcs.mjs.map +1 -0
- package/tools/operations/get-operations.d.mts +45 -0
- package/tools/operations/get-operations.d.mts.map +1 -0
- package/tools/operations/get-operations.d.ts +45 -0
- package/tools/operations/get-operations.d.ts.map +1 -0
- package/tools/operations/get-operations.js +42 -0
- package/tools/operations/get-operations.js.map +1 -0
- package/tools/operations/get-operations.mjs +38 -0
- package/tools/operations/get-operations.mjs.map +1 -0
- package/tools/operations/list-operations.d.mts +45 -0
- package/tools/operations/list-operations.d.mts.map +1 -0
- package/tools/operations/list-operations.d.ts +45 -0
- package/tools/operations/list-operations.d.ts.map +1 -0
- package/tools/operations/list-operations.js +39 -0
- package/tools/operations/list-operations.js.map +1 -0
- package/tools/operations/list-operations.mjs +35 -0
- package/tools/operations/list-operations.mjs.map +1 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.d.mts +45 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.d.mts.map +1 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.d.ts +45 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.d.ts.map +1 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js +39 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js.map +1 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs +35 -0
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs.map +1 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.d.mts +45 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.d.mts.map +1 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.d.ts +45 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.d.ts.map +1 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js +42 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js.map +1 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs +38 -0
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs.map +1 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.d.mts +45 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.d.mts.map +1 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.d.ts +45 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.d.ts.map +1 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js +39 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js.map +1 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs +35 -0
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs.map +1 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.d.mts +45 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.d.mts.map +1 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.d.ts +45 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.d.ts.map +1 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js +39 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js.map +1 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs +35 -0
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs.map +1 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.d.mts +45 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.d.mts.map +1 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.d.ts +45 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.d.ts.map +1 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js +42 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js.map +1 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs +38 -0
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs.map +1 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.d.mts +45 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.d.mts.map +1 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.d.ts +45 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.d.ts.map +1 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js +39 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js.map +1 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs +35 -0
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs.map +1 -0
- package/tools/types.d.mts +51 -0
- package/tools/types.d.mts.map +1 -0
- package/tools/types.d.ts +51 -0
- package/tools/types.d.ts.map +1 -0
- package/tools/types.js +46 -0
- package/tools/types.js.map +1 -0
- package/tools/types.mjs +42 -0
- package/tools/types.mjs.map +1 -0
- package/tools/user/get-user.d.mts +45 -0
- package/tools/user/get-user.d.mts.map +1 -0
- package/tools/user/get-user.d.ts +45 -0
- package/tools/user/get-user.d.ts.map +1 -0
- package/tools/user/get-user.js +39 -0
- package/tools/user/get-user.js.map +1 -0
- package/tools/user/get-user.mjs +35 -0
- package/tools/user/get-user.mjs.map +1 -0
- package/tools/vektor/balances/list-historical-vektor-balances.d.mts +45 -0
- package/tools/vektor/balances/list-historical-vektor-balances.d.mts.map +1 -0
- package/tools/vektor/balances/list-historical-vektor-balances.d.ts +45 -0
- package/tools/vektor/balances/list-historical-vektor-balances.d.ts.map +1 -0
- package/tools/vektor/balances/list-historical-vektor-balances.js +109 -0
- package/tools/vektor/balances/list-historical-vektor-balances.js.map +1 -0
- package/tools/vektor/balances/list-historical-vektor-balances.mjs +105 -0
- package/tools/vektor/balances/list-historical-vektor-balances.mjs.map +1 -0
- package/tools/vektor/balances/list-vektor-balances.d.mts +45 -0
- package/tools/vektor/balances/list-vektor-balances.d.mts.map +1 -0
- package/tools/vektor/balances/list-vektor-balances.d.ts +45 -0
- package/tools/vektor/balances/list-vektor-balances.d.ts.map +1 -0
- package/tools/vektor/balances/list-vektor-balances.js +103 -0
- package/tools/vektor/balances/list-vektor-balances.js.map +1 -0
- package/tools/vektor/balances/list-vektor-balances.mjs +99 -0
- package/tools/vektor/balances/list-vektor-balances.mjs.map +1 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.d.mts +45 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.d.mts.map +1 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.d.ts +45 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.d.ts.map +1 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js +100 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.js.map +1 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs +96 -0
- package/tools/vektor/borrow/accounts/list-borrow-vektor-accounts.mjs.map +1 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.d.mts +45 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.d.mts.map +1 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.d.ts +45 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.d.ts.map +1 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js +106 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.js.map +1 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs +102 -0
- package/tools/vektor/borrow/accounts/list-historical-borrow-vektor-accounts.mjs.map +1 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.d.mts +45 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.d.mts.map +1 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.d.ts +45 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.d.ts.map +1 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.js +78 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.js.map +1 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.mjs +74 -0
- package/tools/vektor/borrow/borrow_/create-borrow-vektor-borrow.mjs.map +1 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.d.mts +45 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.d.ts +45 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.js +138 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.js.map +1 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.mjs +134 -0
- package/tools/vektor/borrow/markets/list-borrow-vektor-markets.mjs.map +1 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.d.mts +45 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.d.ts +45 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.js +138 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.js.map +1 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.mjs +134 -0
- package/tools/vektor/borrow/markets/list-historical-borrow-vektor-markets.mjs.map +1 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.d.mts +45 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.d.ts +45 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.js +159 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.js.map +1 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.mjs +155 -0
- package/tools/vektor/borrow/positions/list-borrow-vektor-positions.mjs.map +1 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.d.mts +45 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.d.ts +45 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.js +159 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.js.map +1 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.mjs +155 -0
- package/tools/vektor/borrow/positions/list-historical-borrow-vektor-positions.mjs.map +1 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.d.mts +45 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.d.mts.map +1 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.d.ts +45 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.d.ts.map +1 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.js +70 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.js.map +1 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.mjs +66 -0
- package/tools/vektor/borrow/repay/create-borrow-vektor-repay.mjs.map +1 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.d.mts +45 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.d.mts.map +1 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.d.ts +45 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.d.ts.map +1 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js +84 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.js.map +1 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs +80 -0
- package/tools/vektor/bridge/quotes/list-bridge-vektor-quotes.mjs.map +1 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.d.mts +45 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.d.mts.map +1 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.d.ts +45 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.d.ts.map +1 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.js +86 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.js.map +1 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.mjs +82 -0
- package/tools/vektor/buy/buy_/create-buy-vektor-buy.mjs.map +1 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.d.mts +45 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.d.mts.map +1 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.d.ts +45 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.d.ts.map +1 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js +84 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.js.map +1 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs +80 -0
- package/tools/vektor/buy/quotes/list-buy-vektor-quotes.mjs.map +1 -0
- package/tools/vektor/executions/get-vektor-executions.d.mts +45 -0
- package/tools/vektor/executions/get-vektor-executions.d.mts.map +1 -0
- package/tools/vektor/executions/get-vektor-executions.d.ts +45 -0
- package/tools/vektor/executions/get-vektor-executions.d.ts.map +1 -0
- package/tools/vektor/executions/get-vektor-executions.js +36 -0
- package/tools/vektor/executions/get-vektor-executions.js.map +1 -0
- package/tools/vektor/executions/get-vektor-executions.mjs +32 -0
- package/tools/vektor/executions/get-vektor-executions.mjs.map +1 -0
- package/tools/vektor/executions/list-vektor-executions.d.mts +45 -0
- package/tools/vektor/executions/list-vektor-executions.d.mts.map +1 -0
- package/tools/vektor/executions/list-vektor-executions.d.ts +45 -0
- package/tools/vektor/executions/list-vektor-executions.d.ts.map +1 -0
- package/tools/vektor/executions/list-vektor-executions.js +31 -0
- package/tools/vektor/executions/list-vektor-executions.js.map +1 -0
- package/tools/vektor/executions/list-vektor-executions.mjs +27 -0
- package/tools/vektor/executions/list-vektor-executions.mjs.map +1 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.d.mts +45 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.d.mts.map +1 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.d.ts +45 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.d.ts.map +1 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.js +39 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.js.map +1 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.mjs +35 -0
- package/tools/vektor/executions/steps/get-executions-vektor-steps.mjs.map +1 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.d.mts +45 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.d.mts.map +1 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.d.ts +45 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.d.ts.map +1 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.js +48 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.js.map +1 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.mjs +44 -0
- package/tools/vektor/executions/steps/sign-executions-vektor-steps.mjs.map +1 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.d.mts +45 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.d.mts.map +1 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.d.ts +45 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.d.ts.map +1 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.js +72 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.js.map +1 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.mjs +68 -0
- package/tools/vektor/incentivize/list-vektor-incentivize.mjs.map +1 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.d.mts +45 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.d.mts.map +1 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.d.ts +45 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.d.ts.map +1 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.js +78 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.js.map +1 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.mjs +74 -0
- package/tools/vektor/lend/lend_/create-lend-vektor-lend.mjs.map +1 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.d.mts +45 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.d.ts +45 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.js +138 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.js.map +1 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.mjs +134 -0
- package/tools/vektor/lend/markets/list-historical-lend-vektor-markets.mjs.map +1 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.d.mts +45 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.d.ts +45 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.js +138 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.js.map +1 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.mjs +134 -0
- package/tools/vektor/lend/markets/list-lend-vektor-markets.mjs.map +1 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.d.mts +45 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.d.ts +45 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.js +159 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.js.map +1 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.mjs +155 -0
- package/tools/vektor/lend/positions/list-historical-lend-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.d.mts +45 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.d.ts +45 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.js +159 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.js.map +1 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.mjs +155 -0
- package/tools/vektor/lend/positions/list-lend-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.d.mts +45 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.d.mts.map +1 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.d.ts +45 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.d.ts.map +1 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.js +60 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.js.map +1 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.mjs +56 -0
- package/tools/vektor/lend/set-collateral/create-lend-vektor-set-collateral.mjs.map +1 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.d.mts +45 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.d.mts.map +1 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.d.ts +45 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.d.ts.map +1 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.js +70 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.js.map +1 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.mjs +66 -0
- package/tools/vektor/lend/withdraw/create-lend-vektor-withdraw.mjs.map +1 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.d.mts +45 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.d.ts +45 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.js +73 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.js.map +1 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs +69 -0
- package/tools/vektor/lock/markets/list-lock-vektor-markets.mjs.map +1 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.mts +45 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.ts +45 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.js +86 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.js.map +1 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs +82 -0
- package/tools/vektor/lock/positions/list-lock-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.d.mts +45 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.d.mts.map +1 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.d.ts +45 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.d.ts.map +1 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.js +229 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.js.map +1 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.mjs +225 -0
- package/tools/vektor/lp/deposit-quote/create-lp-vektor-deposit-quote.mjs.map +1 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.d.mts +45 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.d.mts.map +1 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.d.ts +45 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.d.ts.map +1 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.js +135 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.js.map +1 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.mjs +131 -0
- package/tools/vektor/lp/pools/list-historical-lp-vektor-pools.mjs.map +1 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.d.mts +45 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.d.mts.map +1 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.d.ts +45 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.d.ts.map +1 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.js +135 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.js.map +1 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.mjs +131 -0
- package/tools/vektor/lp/pools/list-lp-vektor-pools.mjs.map +1 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.d.mts +45 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.d.ts +45 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.js +166 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.js.map +1 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.mjs +162 -0
- package/tools/vektor/lp/positions/list-historical-lp-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.d.mts +45 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.d.mts.map +1 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.d.ts +45 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.d.ts.map +1 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.js +166 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.js.map +1 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.mjs +162 -0
- package/tools/vektor/lp/positions/list-lp-vektor-positions.mjs.map +1 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.d.mts +45 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.d.mts.map +1 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.d.ts +45 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.d.ts.map +1 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.js +185 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.js.map +1 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.mjs +181 -0
- package/tools/vektor/lp/withdraw-quote/create-lp-vektor-withdraw-quote.mjs.map +1 -0
- package/tools/vektor/move/create-vektor-move.d.mts +45 -0
- package/tools/vektor/move/create-vektor-move.d.mts.map +1 -0
- package/tools/vektor/move/create-vektor-move.d.ts +45 -0
- package/tools/vektor/move/create-vektor-move.d.ts.map +1 -0
- package/tools/vektor/move/create-vektor-move.js +68 -0
- package/tools/vektor/move/create-vektor-move.js.map +1 -0
- package/tools/vektor/move/create-vektor-move.mjs +64 -0
- package/tools/vektor/move/create-vektor-move.mjs.map +1 -0
- package/tools/vektor/prices/list-historical-vektor-prices.d.mts +45 -0
- package/tools/vektor/prices/list-historical-vektor-prices.d.mts.map +1 -0
- package/tools/vektor/prices/list-historical-vektor-prices.d.ts +45 -0
- package/tools/vektor/prices/list-historical-vektor-prices.d.ts.map +1 -0
- package/tools/vektor/prices/list-historical-vektor-prices.js +55 -0
- package/tools/vektor/prices/list-historical-vektor-prices.js.map +1 -0
- package/tools/vektor/prices/list-historical-vektor-prices.mjs +51 -0
- package/tools/vektor/prices/list-historical-vektor-prices.mjs.map +1 -0
- package/tools/vektor/prices/list-vektor-prices.d.mts +45 -0
- package/tools/vektor/prices/list-vektor-prices.d.mts.map +1 -0
- package/tools/vektor/prices/list-vektor-prices.d.ts +45 -0
- package/tools/vektor/prices/list-vektor-prices.d.ts.map +1 -0
- package/tools/vektor/prices/list-vektor-prices.js +55 -0
- package/tools/vektor/prices/list-vektor-prices.js.map +1 -0
- package/tools/vektor/prices/list-vektor-prices.mjs +51 -0
- package/tools/vektor/prices/list-vektor-prices.mjs.map +1 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.d.mts +45 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.d.mts.map +1 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.d.ts +45 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.d.ts.map +1 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.js +57 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.js.map +1 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs +53 -0
- package/tools/vektor/registry/assets/list-registry-vektor-assets.mjs.map +1 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.d.mts +45 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.d.mts.map +1 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.d.ts +45 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.d.ts.map +1 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js +47 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.js.map +1 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs +43 -0
- package/tools/vektor/registry/blockchains/list-registry-vektor-blockchains.mjs.map +1 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.d.mts +45 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.d.mts.map +1 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.d.ts +45 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.d.ts.map +1 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js +78 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.js.map +1 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs +74 -0
- package/tools/vektor/registry/borrow-markets/list-registry-vektor-borrow-markets.mjs.map +1 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.d.mts +45 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.d.mts.map +1 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.d.ts +45 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.d.ts.map +1 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.js +43 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.js.map +1 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.mjs +39 -0
- package/tools/vektor/registry/errors/list-registry-vektor-errors.mjs.map +1 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.d.mts +45 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.d.mts.map +1 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.d.ts +45 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.d.ts.map +1 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js +78 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.js.map +1 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs +74 -0
- package/tools/vektor/registry/lend-markets/list-registry-vektor-lend-markets.mjs.map +1 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.d.mts +45 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.d.mts.map +1 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.d.ts +45 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.d.ts.map +1 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js +78 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.js.map +1 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs +74 -0
- package/tools/vektor/registry/lp-pools/list-registry-vektor-lp-pools.mjs.map +1 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.d.mts +45 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.d.mts.map +1 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.d.ts +45 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.d.ts.map +1 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.js +47 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.js.map +1 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs +43 -0
- package/tools/vektor/registry/venues/list-registry-vektor-venues.mjs.map +1 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.d.mts +45 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.d.mts.map +1 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.d.ts +45 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.d.ts.map +1 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.js +78 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.js.map +1 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.mjs +74 -0
- package/tools/vektor/sell/quotes/list-sell-vektor-quotes.mjs.map +1 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.d.mts +45 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.d.mts.map +1 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.d.ts +45 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.d.ts.map +1 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.js +86 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.js.map +1 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.mjs +82 -0
- package/tools/vektor/sell/sell_/create-sell-vektor-sell.mjs.map +1 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.d.mts +45 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.d.mts.map +1 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.d.ts +45 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.d.ts.map +1 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.js +72 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.js.map +1 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.mjs +68 -0
- package/tools/vektor/vote/markets/list-vote-vektor-markets.mjs.map +1 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.d.mts +45 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.d.mts.map +1 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.d.ts +45 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.d.ts.map +1 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.js +85 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.js.map +1 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.mjs +81 -0
- package/tools/vektor/vote/rewards/list-vote-vektor-rewards.mjs.map +1 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.d.mts +45 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.d.mts.map +1 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.d.ts +45 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.d.ts.map +1 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.js +57 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.js.map +1 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.mjs +53 -0
- package/tools/vektor/wrap/unwrap/create-wrap-vektor-unwrap.mjs.map +1 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.d.mts +45 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.d.mts.map +1 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.d.ts +45 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.d.ts.map +1 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.js +57 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.js.map +1 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.mjs +53 -0
- package/tools/vektor/wrap/wrap_/create-wrap-vektor-wrap.mjs.map +1 -0
- package/tools.d.mts +2 -0
- package/tools.d.mts.map +1 -0
- package/tools.d.ts +2 -0
- package/tools.d.ts.map +1 -0
- package/tools.js +18 -0
- package/tools.js.map +1 -0
- package/tools.mjs +2 -0
- package/tools.mjs.map +1 -0
package/src/http.ts
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp';
|
|
4
|
+
import { StreamableHTTPServerTransport } from '@modelcontextprotocol/sdk/server/streamableHttp.js';
|
|
5
|
+
|
|
6
|
+
import express from 'express';
|
|
7
|
+
import { fromError } from 'zod-validation-error/v3';
|
|
8
|
+
import { McpOptions, parseQueryOptions } from './options';
|
|
9
|
+
import { ClientOptions, initMcpServer, newMcpServer } from './server';
|
|
10
|
+
import { parseAuthHeaders } from './headers';
|
|
11
|
+
|
|
12
|
+
const newServer = ({
|
|
13
|
+
clientOptions,
|
|
14
|
+
mcpOptions: defaultMcpOptions,
|
|
15
|
+
req,
|
|
16
|
+
res,
|
|
17
|
+
}: {
|
|
18
|
+
clientOptions: ClientOptions;
|
|
19
|
+
mcpOptions: McpOptions;
|
|
20
|
+
req: express.Request;
|
|
21
|
+
res: express.Response;
|
|
22
|
+
}): McpServer | null => {
|
|
23
|
+
const server = newMcpServer();
|
|
24
|
+
|
|
25
|
+
let mcpOptions: McpOptions;
|
|
26
|
+
try {
|
|
27
|
+
mcpOptions = parseQueryOptions(defaultMcpOptions, req.query);
|
|
28
|
+
} catch (error) {
|
|
29
|
+
res.status(400).json({
|
|
30
|
+
jsonrpc: '2.0',
|
|
31
|
+
error: {
|
|
32
|
+
code: -32000,
|
|
33
|
+
message: `Invalid request: ${fromError(error)}`,
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
try {
|
|
40
|
+
const authOptions = parseAuthHeaders(req);
|
|
41
|
+
initMcpServer({
|
|
42
|
+
server: server,
|
|
43
|
+
clientOptions: {
|
|
44
|
+
...clientOptions,
|
|
45
|
+
...authOptions,
|
|
46
|
+
},
|
|
47
|
+
mcpOptions,
|
|
48
|
+
});
|
|
49
|
+
} catch {
|
|
50
|
+
res.status(401).json({
|
|
51
|
+
jsonrpc: '2.0',
|
|
52
|
+
error: {
|
|
53
|
+
code: -32000,
|
|
54
|
+
message: 'Unauthorized',
|
|
55
|
+
},
|
|
56
|
+
});
|
|
57
|
+
return null;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return server;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const post =
|
|
64
|
+
(options: { clientOptions: ClientOptions; mcpOptions: McpOptions }) =>
|
|
65
|
+
async (req: express.Request, res: express.Response) => {
|
|
66
|
+
const server = newServer({ ...options, req, res });
|
|
67
|
+
// If we return null, we already set the authorization error.
|
|
68
|
+
if (server === null) return;
|
|
69
|
+
const transport = new StreamableHTTPServerTransport({
|
|
70
|
+
// Stateless server
|
|
71
|
+
sessionIdGenerator: undefined,
|
|
72
|
+
});
|
|
73
|
+
await server.connect(transport);
|
|
74
|
+
await transport.handleRequest(req, res, req.body);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
const get = async (req: express.Request, res: express.Response) => {
|
|
78
|
+
res.status(405).json({
|
|
79
|
+
jsonrpc: '2.0',
|
|
80
|
+
error: {
|
|
81
|
+
code: -32000,
|
|
82
|
+
message: 'Method not supported',
|
|
83
|
+
},
|
|
84
|
+
});
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
const del = async (req: express.Request, res: express.Response) => {
|
|
88
|
+
res.status(405).json({
|
|
89
|
+
jsonrpc: '2.0',
|
|
90
|
+
error: {
|
|
91
|
+
code: -32000,
|
|
92
|
+
message: 'Method not supported',
|
|
93
|
+
},
|
|
94
|
+
});
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
export const streamableHTTPApp = ({
|
|
98
|
+
clientOptions = {},
|
|
99
|
+
mcpOptions = {},
|
|
100
|
+
}: {
|
|
101
|
+
clientOptions?: ClientOptions;
|
|
102
|
+
mcpOptions?: McpOptions;
|
|
103
|
+
}): express.Express => {
|
|
104
|
+
const app = express();
|
|
105
|
+
app.set('query parser', 'extended');
|
|
106
|
+
app.use(express.json());
|
|
107
|
+
|
|
108
|
+
app.get('/', get);
|
|
109
|
+
app.post('/', post({ clientOptions, mcpOptions }));
|
|
110
|
+
app.delete('/', del);
|
|
111
|
+
|
|
112
|
+
return app;
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
export const launchStreamableHTTPServer = async (options: McpOptions, port: number | string | undefined) => {
|
|
116
|
+
const app = streamableHTTPApp({ mcpOptions: options });
|
|
117
|
+
const server = app.listen(port);
|
|
118
|
+
const address = server.address();
|
|
119
|
+
|
|
120
|
+
if (typeof address === 'string') {
|
|
121
|
+
console.error(`MCP Server running on streamable HTTP at ${address}`);
|
|
122
|
+
} else if (address !== null) {
|
|
123
|
+
console.error(`MCP Server running on streamable HTTP on port ${address.port}`);
|
|
124
|
+
} else {
|
|
125
|
+
console.error(`MCP Server running on streamable HTTP on port ${port}`);
|
|
126
|
+
}
|
|
127
|
+
};
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { selectTools } from './server';
|
|
4
|
+
import { Endpoint, endpoints } from './tools';
|
|
5
|
+
import { McpOptions, parseCLIOptions } from './options';
|
|
6
|
+
import { launchStdioServer } from './stdio';
|
|
7
|
+
import { launchStreamableHTTPServer } from './http';
|
|
8
|
+
|
|
9
|
+
async function main() {
|
|
10
|
+
const options = parseOptionsOrError();
|
|
11
|
+
|
|
12
|
+
if (options.list) {
|
|
13
|
+
listAllTools();
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const selectedTools = await selectToolsOrError(endpoints, options);
|
|
18
|
+
|
|
19
|
+
console.error(
|
|
20
|
+
`MCP Server starting with ${selectedTools.length} tools:`,
|
|
21
|
+
selectedTools.map((e) => e.tool.name),
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
switch (options.transport) {
|
|
25
|
+
case 'stdio':
|
|
26
|
+
await launchStdioServer(options);
|
|
27
|
+
break;
|
|
28
|
+
case 'http':
|
|
29
|
+
await launchStreamableHTTPServer(options, options.port ?? options.socket);
|
|
30
|
+
break;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (require.main === module) {
|
|
35
|
+
main().catch((error) => {
|
|
36
|
+
console.error('Fatal error in main():', error);
|
|
37
|
+
process.exit(1);
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function parseOptionsOrError() {
|
|
42
|
+
try {
|
|
43
|
+
return parseCLIOptions();
|
|
44
|
+
} catch (error) {
|
|
45
|
+
console.error('Error parsing options:', error);
|
|
46
|
+
process.exit(1);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
async function selectToolsOrError(endpoints: Endpoint[], options: McpOptions): Promise<Endpoint[]> {
|
|
51
|
+
try {
|
|
52
|
+
const includedTools = await selectTools(endpoints, options);
|
|
53
|
+
if (includedTools.length === 0) {
|
|
54
|
+
console.error('No tools match the provided filters.');
|
|
55
|
+
process.exit(1);
|
|
56
|
+
}
|
|
57
|
+
return includedTools;
|
|
58
|
+
} catch (error) {
|
|
59
|
+
if (error instanceof Error) {
|
|
60
|
+
console.error('Error filtering tools:', error.message);
|
|
61
|
+
} else {
|
|
62
|
+
console.error('Error filtering tools:', error);
|
|
63
|
+
}
|
|
64
|
+
process.exit(1);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function listAllTools() {
|
|
69
|
+
if (endpoints.length === 0) {
|
|
70
|
+
console.log('No tools available.');
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
console.log('Available tools:\n');
|
|
74
|
+
|
|
75
|
+
// Group endpoints by resource
|
|
76
|
+
const resourceGroups = new Map<string, typeof endpoints>();
|
|
77
|
+
|
|
78
|
+
for (const endpoint of endpoints) {
|
|
79
|
+
const resource = endpoint.metadata.resource;
|
|
80
|
+
if (!resourceGroups.has(resource)) {
|
|
81
|
+
resourceGroups.set(resource, []);
|
|
82
|
+
}
|
|
83
|
+
resourceGroups.get(resource)!.push(endpoint);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// Sort resources alphabetically
|
|
87
|
+
const sortedResources = Array.from(resourceGroups.keys()).sort();
|
|
88
|
+
|
|
89
|
+
// Display hierarchically by resource
|
|
90
|
+
for (const resource of sortedResources) {
|
|
91
|
+
console.log(`Resource: ${resource}`);
|
|
92
|
+
|
|
93
|
+
const resourceEndpoints = resourceGroups.get(resource)!;
|
|
94
|
+
// Sort endpoints by tool name
|
|
95
|
+
resourceEndpoints.sort((a, b) => a.tool.name.localeCompare(b.tool.name));
|
|
96
|
+
|
|
97
|
+
for (const endpoint of resourceEndpoints) {
|
|
98
|
+
const {
|
|
99
|
+
tool,
|
|
100
|
+
metadata: { operation, tags },
|
|
101
|
+
} = endpoint;
|
|
102
|
+
|
|
103
|
+
console.log(` - ${tool.name} (${operation}) ${tags.length > 0 ? `tags: ${tags.join(', ')}` : ''}`);
|
|
104
|
+
console.log(` Description: ${tool.description}`);
|
|
105
|
+
}
|
|
106
|
+
console.log('');
|
|
107
|
+
}
|
|
108
|
+
}
|
package/src/options.ts
ADDED
|
@@ -0,0 +1,456 @@
|
|
|
1
|
+
import qs from 'qs';
|
|
2
|
+
import yargs from 'yargs';
|
|
3
|
+
import { hideBin } from 'yargs/helpers';
|
|
4
|
+
import z from 'zod';
|
|
5
|
+
import { endpoints, Filter } from './tools';
|
|
6
|
+
import { ClientCapabilities, knownClients, ClientType } from './compat';
|
|
7
|
+
|
|
8
|
+
export type CLIOptions = McpOptions & {
|
|
9
|
+
list: boolean;
|
|
10
|
+
transport: 'stdio' | 'http';
|
|
11
|
+
port: number | undefined;
|
|
12
|
+
socket: string | undefined;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export type McpOptions = {
|
|
16
|
+
client?: ClientType | undefined;
|
|
17
|
+
includeDynamicTools?: boolean | undefined;
|
|
18
|
+
includeAllTools?: boolean | undefined;
|
|
19
|
+
includeCodeTools?: boolean | undefined;
|
|
20
|
+
filters?: Filter[] | undefined;
|
|
21
|
+
capabilities?: Partial<ClientCapabilities> | undefined;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
const CAPABILITY_CHOICES = [
|
|
25
|
+
'top-level-unions',
|
|
26
|
+
'valid-json',
|
|
27
|
+
'refs',
|
|
28
|
+
'unions',
|
|
29
|
+
'formats',
|
|
30
|
+
'tool-name-length',
|
|
31
|
+
] as const;
|
|
32
|
+
|
|
33
|
+
type Capability = (typeof CAPABILITY_CHOICES)[number];
|
|
34
|
+
|
|
35
|
+
function parseCapabilityValue(cap: string): { name: Capability; value?: number } {
|
|
36
|
+
if (cap.startsWith('tool-name-length=')) {
|
|
37
|
+
const parts = cap.split('=');
|
|
38
|
+
if (parts.length === 2) {
|
|
39
|
+
const length = parseInt(parts[1]!, 10);
|
|
40
|
+
if (!isNaN(length)) {
|
|
41
|
+
return { name: 'tool-name-length', value: length };
|
|
42
|
+
}
|
|
43
|
+
throw new Error(`Invalid tool-name-length value: ${parts[1]}. Expected a number.`);
|
|
44
|
+
}
|
|
45
|
+
throw new Error(`Invalid format for tool-name-length. Expected tool-name-length=N.`);
|
|
46
|
+
}
|
|
47
|
+
if (!CAPABILITY_CHOICES.includes(cap as Capability)) {
|
|
48
|
+
throw new Error(`Unknown capability: ${cap}. Valid capabilities are: ${CAPABILITY_CHOICES.join(', ')}`);
|
|
49
|
+
}
|
|
50
|
+
return { name: cap as Capability };
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function parseCLIOptions(): CLIOptions {
|
|
54
|
+
const opts = yargs(hideBin(process.argv))
|
|
55
|
+
.option('tools', {
|
|
56
|
+
type: 'string',
|
|
57
|
+
array: true,
|
|
58
|
+
choices: ['dynamic', 'all', 'code'],
|
|
59
|
+
description: 'Use dynamic tools or all tools',
|
|
60
|
+
})
|
|
61
|
+
.option('no-tools', {
|
|
62
|
+
type: 'string',
|
|
63
|
+
array: true,
|
|
64
|
+
choices: ['dynamic', 'all', 'code'],
|
|
65
|
+
description: 'Do not use any dynamic or all tools',
|
|
66
|
+
})
|
|
67
|
+
.option('tool', {
|
|
68
|
+
type: 'string',
|
|
69
|
+
array: true,
|
|
70
|
+
description: 'Include tools matching the specified names',
|
|
71
|
+
})
|
|
72
|
+
.option('resource', {
|
|
73
|
+
type: 'string',
|
|
74
|
+
array: true,
|
|
75
|
+
description: 'Include tools matching the specified resources',
|
|
76
|
+
})
|
|
77
|
+
.option('operation', {
|
|
78
|
+
type: 'string',
|
|
79
|
+
array: true,
|
|
80
|
+
choices: ['read', 'write'],
|
|
81
|
+
description: 'Include tools matching the specified operations',
|
|
82
|
+
})
|
|
83
|
+
.option('tag', {
|
|
84
|
+
type: 'string',
|
|
85
|
+
array: true,
|
|
86
|
+
description: 'Include tools with the specified tags',
|
|
87
|
+
})
|
|
88
|
+
.option('no-tool', {
|
|
89
|
+
type: 'string',
|
|
90
|
+
array: true,
|
|
91
|
+
description: 'Exclude tools matching the specified names',
|
|
92
|
+
})
|
|
93
|
+
.option('no-resource', {
|
|
94
|
+
type: 'string',
|
|
95
|
+
array: true,
|
|
96
|
+
description: 'Exclude tools matching the specified resources',
|
|
97
|
+
})
|
|
98
|
+
.option('no-operation', {
|
|
99
|
+
type: 'string',
|
|
100
|
+
array: true,
|
|
101
|
+
description: 'Exclude tools matching the specified operations',
|
|
102
|
+
})
|
|
103
|
+
.option('no-tag', {
|
|
104
|
+
type: 'string',
|
|
105
|
+
array: true,
|
|
106
|
+
description: 'Exclude tools with the specified tags',
|
|
107
|
+
})
|
|
108
|
+
.option('list', {
|
|
109
|
+
type: 'boolean',
|
|
110
|
+
description: 'List all tools and exit',
|
|
111
|
+
})
|
|
112
|
+
.option('client', {
|
|
113
|
+
type: 'string',
|
|
114
|
+
choices: Object.keys(knownClients),
|
|
115
|
+
description: 'Specify the MCP client being used',
|
|
116
|
+
})
|
|
117
|
+
.option('capability', {
|
|
118
|
+
type: 'string',
|
|
119
|
+
array: true,
|
|
120
|
+
description: 'Specify client capabilities',
|
|
121
|
+
coerce: (values: string[]) => {
|
|
122
|
+
return values.flatMap((v) => v.split(','));
|
|
123
|
+
},
|
|
124
|
+
})
|
|
125
|
+
.option('no-capability', {
|
|
126
|
+
type: 'string',
|
|
127
|
+
array: true,
|
|
128
|
+
description: 'Unset client capabilities',
|
|
129
|
+
choices: CAPABILITY_CHOICES,
|
|
130
|
+
coerce: (values: string[]) => {
|
|
131
|
+
return values.flatMap((v) => v.split(','));
|
|
132
|
+
},
|
|
133
|
+
})
|
|
134
|
+
.option('describe-capabilities', {
|
|
135
|
+
type: 'boolean',
|
|
136
|
+
description: 'Print detailed explanation of client capabilities and exit',
|
|
137
|
+
})
|
|
138
|
+
.option('transport', {
|
|
139
|
+
type: 'string',
|
|
140
|
+
choices: ['stdio', 'http'],
|
|
141
|
+
default: 'stdio',
|
|
142
|
+
description: 'What transport to use; stdio for local servers or http for remote servers',
|
|
143
|
+
})
|
|
144
|
+
.option('port', {
|
|
145
|
+
type: 'number',
|
|
146
|
+
description: 'Port to serve on if using http transport',
|
|
147
|
+
})
|
|
148
|
+
.option('socket', {
|
|
149
|
+
type: 'string',
|
|
150
|
+
description: 'Unix socket to serve on if using http transport',
|
|
151
|
+
})
|
|
152
|
+
.help();
|
|
153
|
+
|
|
154
|
+
for (const [command, desc] of examples()) {
|
|
155
|
+
opts.example(command, desc);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
const argv = opts.parseSync();
|
|
159
|
+
|
|
160
|
+
// Handle describe-capabilities flag
|
|
161
|
+
if (argv.describeCapabilities) {
|
|
162
|
+
console.log(getCapabilitiesExplanation());
|
|
163
|
+
process.exit(0);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
const filters: Filter[] = [];
|
|
167
|
+
|
|
168
|
+
// Helper function to support comma-separated values
|
|
169
|
+
const splitValues = (values: string[] | undefined): string[] => {
|
|
170
|
+
if (!values) return [];
|
|
171
|
+
return values.flatMap((v) => v.split(','));
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
for (const tag of splitValues(argv.tag)) {
|
|
175
|
+
filters.push({ type: 'tag', op: 'include', value: tag });
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
for (const tag of splitValues(argv.noTag)) {
|
|
179
|
+
filters.push({ type: 'tag', op: 'exclude', value: tag });
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
for (const resource of splitValues(argv.resource)) {
|
|
183
|
+
filters.push({ type: 'resource', op: 'include', value: resource });
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
for (const resource of splitValues(argv.noResource)) {
|
|
187
|
+
filters.push({ type: 'resource', op: 'exclude', value: resource });
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
for (const tool of splitValues(argv.tool)) {
|
|
191
|
+
filters.push({ type: 'tool', op: 'include', value: tool });
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
for (const tool of splitValues(argv.noTool)) {
|
|
195
|
+
filters.push({ type: 'tool', op: 'exclude', value: tool });
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
for (const operation of splitValues(argv.operation)) {
|
|
199
|
+
filters.push({ type: 'operation', op: 'include', value: operation });
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
for (const operation of splitValues(argv.noOperation)) {
|
|
203
|
+
filters.push({ type: 'operation', op: 'exclude', value: operation });
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
// Parse client capabilities
|
|
207
|
+
const clientCapabilities: Partial<ClientCapabilities> = {};
|
|
208
|
+
|
|
209
|
+
// Apply individual capability overrides
|
|
210
|
+
if (Array.isArray(argv.capability)) {
|
|
211
|
+
for (const cap of argv.capability) {
|
|
212
|
+
const parsedCap = parseCapabilityValue(cap);
|
|
213
|
+
if (parsedCap.name === 'top-level-unions') {
|
|
214
|
+
clientCapabilities.topLevelUnions = true;
|
|
215
|
+
} else if (parsedCap.name === 'valid-json') {
|
|
216
|
+
clientCapabilities.validJson = true;
|
|
217
|
+
} else if (parsedCap.name === 'refs') {
|
|
218
|
+
clientCapabilities.refs = true;
|
|
219
|
+
} else if (parsedCap.name === 'unions') {
|
|
220
|
+
clientCapabilities.unions = true;
|
|
221
|
+
} else if (parsedCap.name === 'formats') {
|
|
222
|
+
clientCapabilities.formats = true;
|
|
223
|
+
} else if (parsedCap.name === 'tool-name-length') {
|
|
224
|
+
clientCapabilities.toolNameLength = parsedCap.value;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
// Handle no-capability options to unset capabilities
|
|
230
|
+
if (Array.isArray(argv.noCapability)) {
|
|
231
|
+
for (const cap of argv.noCapability) {
|
|
232
|
+
if (cap === 'top-level-unions') {
|
|
233
|
+
clientCapabilities.topLevelUnions = false;
|
|
234
|
+
} else if (cap === 'valid-json') {
|
|
235
|
+
clientCapabilities.validJson = false;
|
|
236
|
+
} else if (cap === 'refs') {
|
|
237
|
+
clientCapabilities.refs = false;
|
|
238
|
+
} else if (cap === 'unions') {
|
|
239
|
+
clientCapabilities.unions = false;
|
|
240
|
+
} else if (cap === 'formats') {
|
|
241
|
+
clientCapabilities.formats = false;
|
|
242
|
+
} else if (cap === 'tool-name-length') {
|
|
243
|
+
clientCapabilities.toolNameLength = undefined;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
const shouldIncludeToolType = (toolType: 'dynamic' | 'all' | 'code') =>
|
|
249
|
+
explicitTools ? argv.tools?.includes(toolType) && !argv.noTools?.includes(toolType) : undefined;
|
|
250
|
+
|
|
251
|
+
const explicitTools = Boolean(argv.tools || argv.noTools);
|
|
252
|
+
const includeDynamicTools = shouldIncludeToolType('dynamic');
|
|
253
|
+
const includeAllTools = shouldIncludeToolType('all');
|
|
254
|
+
const includeCodeTools = shouldIncludeToolType('code');
|
|
255
|
+
|
|
256
|
+
const transport = argv.transport as 'stdio' | 'http';
|
|
257
|
+
|
|
258
|
+
const client = argv.client as ClientType;
|
|
259
|
+
return {
|
|
260
|
+
client: client && client !== 'infer' && knownClients[client] ? client : undefined,
|
|
261
|
+
includeDynamicTools,
|
|
262
|
+
includeAllTools,
|
|
263
|
+
includeCodeTools,
|
|
264
|
+
filters,
|
|
265
|
+
capabilities: clientCapabilities,
|
|
266
|
+
list: argv.list || false,
|
|
267
|
+
transport,
|
|
268
|
+
port: argv.port,
|
|
269
|
+
socket: argv.socket,
|
|
270
|
+
};
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
const coerceArray = <T extends z.ZodTypeAny>(zodType: T) =>
|
|
274
|
+
z.preprocess(
|
|
275
|
+
(val) =>
|
|
276
|
+
Array.isArray(val) ? val
|
|
277
|
+
: val ? [val]
|
|
278
|
+
: val,
|
|
279
|
+
z.array(zodType).optional(),
|
|
280
|
+
);
|
|
281
|
+
|
|
282
|
+
const QueryOptions = z.object({
|
|
283
|
+
tools: coerceArray(z.enum(['dynamic', 'all'])).describe('Use dynamic tools or all tools'),
|
|
284
|
+
no_tools: coerceArray(z.enum(['dynamic', 'all'])).describe('Do not use dynamic tools or all tools'),
|
|
285
|
+
tool: coerceArray(z.string()).describe('Include tools matching the specified names'),
|
|
286
|
+
resource: coerceArray(z.string()).describe('Include tools matching the specified resources'),
|
|
287
|
+
operation: coerceArray(z.enum(['read', 'write'])).describe(
|
|
288
|
+
'Include tools matching the specified operations',
|
|
289
|
+
),
|
|
290
|
+
tag: coerceArray(z.string()).describe('Include tools with the specified tags'),
|
|
291
|
+
no_tool: coerceArray(z.string()).describe('Exclude tools matching the specified names'),
|
|
292
|
+
no_resource: coerceArray(z.string()).describe('Exclude tools matching the specified resources'),
|
|
293
|
+
no_operation: coerceArray(z.enum(['read', 'write'])).describe(
|
|
294
|
+
'Exclude tools matching the specified operations',
|
|
295
|
+
),
|
|
296
|
+
no_tag: coerceArray(z.string()).describe('Exclude tools with the specified tags'),
|
|
297
|
+
client: ClientType.optional().describe('Specify the MCP client being used'),
|
|
298
|
+
capability: coerceArray(z.string()).describe('Specify client capabilities'),
|
|
299
|
+
no_capability: coerceArray(z.enum(CAPABILITY_CHOICES)).describe('Unset client capabilities'),
|
|
300
|
+
});
|
|
301
|
+
|
|
302
|
+
export function parseQueryOptions(defaultOptions: McpOptions, query: unknown): McpOptions {
|
|
303
|
+
const queryObject = typeof query === 'string' ? qs.parse(query) : query;
|
|
304
|
+
const queryOptions = QueryOptions.parse(queryObject);
|
|
305
|
+
|
|
306
|
+
const filters: Filter[] = [...(defaultOptions.filters ?? [])];
|
|
307
|
+
|
|
308
|
+
for (const resource of queryOptions.resource || []) {
|
|
309
|
+
filters.push({ type: 'resource', op: 'include', value: resource });
|
|
310
|
+
}
|
|
311
|
+
for (const operation of queryOptions.operation || []) {
|
|
312
|
+
filters.push({ type: 'operation', op: 'include', value: operation });
|
|
313
|
+
}
|
|
314
|
+
for (const tag of queryOptions.tag || []) {
|
|
315
|
+
filters.push({ type: 'tag', op: 'include', value: tag });
|
|
316
|
+
}
|
|
317
|
+
for (const tool of queryOptions.tool || []) {
|
|
318
|
+
filters.push({ type: 'tool', op: 'include', value: tool });
|
|
319
|
+
}
|
|
320
|
+
for (const resource of queryOptions.no_resource || []) {
|
|
321
|
+
filters.push({ type: 'resource', op: 'exclude', value: resource });
|
|
322
|
+
}
|
|
323
|
+
for (const operation of queryOptions.no_operation || []) {
|
|
324
|
+
filters.push({ type: 'operation', op: 'exclude', value: operation });
|
|
325
|
+
}
|
|
326
|
+
for (const tag of queryOptions.no_tag || []) {
|
|
327
|
+
filters.push({ type: 'tag', op: 'exclude', value: tag });
|
|
328
|
+
}
|
|
329
|
+
for (const tool of queryOptions.no_tool || []) {
|
|
330
|
+
filters.push({ type: 'tool', op: 'exclude', value: tool });
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// Parse client capabilities
|
|
334
|
+
const clientCapabilities: Partial<ClientCapabilities> = { ...defaultOptions.capabilities };
|
|
335
|
+
|
|
336
|
+
for (const cap of queryOptions.capability || []) {
|
|
337
|
+
const parsed = parseCapabilityValue(cap);
|
|
338
|
+
if (parsed.name === 'top-level-unions') {
|
|
339
|
+
clientCapabilities.topLevelUnions = true;
|
|
340
|
+
} else if (parsed.name === 'valid-json') {
|
|
341
|
+
clientCapabilities.validJson = true;
|
|
342
|
+
} else if (parsed.name === 'refs') {
|
|
343
|
+
clientCapabilities.refs = true;
|
|
344
|
+
} else if (parsed.name === 'unions') {
|
|
345
|
+
clientCapabilities.unions = true;
|
|
346
|
+
} else if (parsed.name === 'formats') {
|
|
347
|
+
clientCapabilities.formats = true;
|
|
348
|
+
} else if (parsed.name === 'tool-name-length') {
|
|
349
|
+
clientCapabilities.toolNameLength = parsed.value;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
for (const cap of queryOptions.no_capability || []) {
|
|
354
|
+
if (cap === 'top-level-unions') {
|
|
355
|
+
clientCapabilities.topLevelUnions = false;
|
|
356
|
+
} else if (cap === 'valid-json') {
|
|
357
|
+
clientCapabilities.validJson = false;
|
|
358
|
+
} else if (cap === 'refs') {
|
|
359
|
+
clientCapabilities.refs = false;
|
|
360
|
+
} else if (cap === 'unions') {
|
|
361
|
+
clientCapabilities.unions = false;
|
|
362
|
+
} else if (cap === 'formats') {
|
|
363
|
+
clientCapabilities.formats = false;
|
|
364
|
+
} else if (cap === 'tool-name-length') {
|
|
365
|
+
clientCapabilities.toolNameLength = undefined;
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
let dynamicTools: boolean | undefined =
|
|
370
|
+
queryOptions.no_tools && queryOptions.no_tools?.includes('dynamic') ? false
|
|
371
|
+
: queryOptions.tools?.includes('dynamic') ? true
|
|
372
|
+
: defaultOptions.includeDynamicTools;
|
|
373
|
+
|
|
374
|
+
let allTools: boolean | undefined =
|
|
375
|
+
queryOptions.no_tools && queryOptions.no_tools?.includes('all') ? false
|
|
376
|
+
: queryOptions.tools?.includes('all') ? true
|
|
377
|
+
: defaultOptions.includeAllTools;
|
|
378
|
+
|
|
379
|
+
return {
|
|
380
|
+
client: queryOptions.client ?? defaultOptions.client,
|
|
381
|
+
includeDynamicTools: dynamicTools,
|
|
382
|
+
includeAllTools: allTools,
|
|
383
|
+
includeCodeTools: undefined,
|
|
384
|
+
filters,
|
|
385
|
+
capabilities: clientCapabilities,
|
|
386
|
+
};
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
function getCapabilitiesExplanation(): string {
|
|
390
|
+
return `
|
|
391
|
+
Client Capabilities Explanation:
|
|
392
|
+
|
|
393
|
+
Different Language Models (LLMs) and the MCP clients that use them have varying limitations in how they handle tool schemas. Capability flags allow you to inform the MCP server about these limitations.
|
|
394
|
+
|
|
395
|
+
When a capability flag is set to false, the MCP server will automatically adjust the tool schemas to work around that limitation, ensuring broader compatibility.
|
|
396
|
+
|
|
397
|
+
Available Capabilities:
|
|
398
|
+
|
|
399
|
+
# top-level-unions
|
|
400
|
+
Some clients/LLMs do not support JSON schemas with a union type (anyOf) at the root level. If a client lacks this capability, the MCP server splits tools with top-level unions into multiple separate tools, one for each variant in the union.
|
|
401
|
+
|
|
402
|
+
# refs
|
|
403
|
+
Some clients/LLMs do not support $ref pointers for schema reuse. If a client lacks this capability, the MCP server automatically inlines all references ($defs) directly into the schema. Properties that would cause circular references are removed during this process.
|
|
404
|
+
|
|
405
|
+
# valid-json
|
|
406
|
+
Some clients/LLMs may incorrectly send arguments as a JSON-encoded string instead of a proper JSON object. If a client *has* this capability, the MCP server will attempt to parse string values as JSON if the initial validation against the schema fails.
|
|
407
|
+
|
|
408
|
+
# unions
|
|
409
|
+
Some clients/LLMs do not support union types (anyOf) in JSON schemas. If a client lacks this capability, the MCP server removes all anyOf fields and uses only the first variant as the schema.
|
|
410
|
+
|
|
411
|
+
# formats
|
|
412
|
+
Some clients/LLMs do not support the 'format' keyword in JSON Schema specifications. If a client lacks this capability, the MCP server removes all format fields and appends the format information to the field's description in parentheses.
|
|
413
|
+
|
|
414
|
+
# tool-name-length=N
|
|
415
|
+
Some clients/LLMs impose a maximum length on tool names. If this capability is set, the MCP server will automatically truncate tool names exceeding the specified length (N), ensuring uniqueness by appending numbers if necessary.
|
|
416
|
+
|
|
417
|
+
Client Presets (--client):
|
|
418
|
+
Presets like '--client=openai-agents' or '--client=cursor' automatically configure these capabilities based on current known limitations of those clients, simplifying setup.
|
|
419
|
+
|
|
420
|
+
Current presets:
|
|
421
|
+
${JSON.stringify(knownClients, null, 2)}
|
|
422
|
+
`;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
function examples(): [string, string][] {
|
|
426
|
+
const firstEndpoint = endpoints[0]!;
|
|
427
|
+
const secondEndpoint =
|
|
428
|
+
endpoints.find((e) => e.metadata.resource !== firstEndpoint.metadata.resource) || endpoints[1];
|
|
429
|
+
const tag = endpoints.find((e) => e.metadata.tags.length > 0)?.metadata.tags[0];
|
|
430
|
+
const otherEndpoint = secondEndpoint || firstEndpoint;
|
|
431
|
+
|
|
432
|
+
return [
|
|
433
|
+
[
|
|
434
|
+
`--tool="${firstEndpoint.tool.name}" ${secondEndpoint ? `--tool="${secondEndpoint.tool.name}"` : ''}`,
|
|
435
|
+
'Include tools by name',
|
|
436
|
+
],
|
|
437
|
+
[
|
|
438
|
+
`--resource="${firstEndpoint.metadata.resource}" --operation="read"`,
|
|
439
|
+
'Filter by resource and operation',
|
|
440
|
+
],
|
|
441
|
+
[
|
|
442
|
+
`--resource="${otherEndpoint.metadata.resource}*" --no-tool="${otherEndpoint.tool.name}"`,
|
|
443
|
+
'Use resource wildcards and exclusions',
|
|
444
|
+
],
|
|
445
|
+
[`--client="cursor"`, 'Adjust schemas to be more compatible with Cursor'],
|
|
446
|
+
[
|
|
447
|
+
`--capability="top-level-unions" --capability="tool-name-length=40"`,
|
|
448
|
+
'Specify individual client capabilities',
|
|
449
|
+
],
|
|
450
|
+
[
|
|
451
|
+
`--client="cursor" --no-capability="tool-name-length"`,
|
|
452
|
+
'Use cursor client preset but remove tool name length limit',
|
|
453
|
+
],
|
|
454
|
+
...(tag ? [[`--tag="${tag}"`, 'Filter based on tags'] as [string, string]] : []),
|
|
455
|
+
];
|
|
456
|
+
}
|