Non-custodial Solana toolkit: rug-checks, swaps, portfolios, token minting, multisig, Arweave.
Inferred from the transports this listing declares (streamable-http). A client not listed here hasn’t been ruled out — it just isn’t something Forge can confirm.
Verification confirms publisher identity (repo ownership), not code safety. The security scan covers known CVEs and suspicious install scripts.
Read from a real MCP initialize → tools/list handshake against the declared endpoint. No tool was ever invoked — tools/list is the read-only introspection call the protocol defines for this. It reflects what the server advertised at that moment; a hosted endpoint is not pinned to any version and can change without notice.
https://solknife.xyz/api/mcp55 tools · 1777mssolknife_check_scanRug-check a Solana token: freeze authority, sellability, holders, liquidity. Returns the same ReportResult shape as GET /api/check.Rug-check a Solana token: freeze authority, sellability, holders, liquidity. Returns the same ReportResult shape as GET /api/check.
| Parameter | Type | Description |
|---|---|---|
| mint* | string | A Solana address in base58, 32-44 chars. |
solknife_token_metaFetch token metadata (name, symbol, decimals, image) for a mint.Fetch token metadata (name, symbol, decimals, image) for a mint.
| Parameter | Type | Description |
|---|---|---|
| mint* | string | A Solana address in base58, 32-44 chars. |
solknife_portfolio_holdingsList a wallet's priced token holdings.List a wallet's priced token holdings.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_portfolio_compose_planPlan a USD-valued portfolio rebalance from target mint percentages. `targets[].bps` must total 10000.Plan a USD-valued portfolio rebalance from target mint percentages. `targets[].bps` must total 10000.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| targets* | array | The desired portfolio: each mint and its share in basis points, summing to 10000. |
| slippageBps | integer | — |
solknife_pool_checkRead one Meteora DLMM pool: depth, volume, fee yield, token safety summary.Read one Meteora DLMM pool: depth, volume, fee yield, token safety summary.
| Parameter | Type | Description |
|---|---|---|
| address* | string | A Solana address in base58, 32-44 chars. |
solknife_pool_compareCompare every Meteora DLMM pool for a token side by side.Compare every Meteora DLMM pool for a token side by side.
| Parameter | Type | Description |
|---|---|---|
| mint* | string | A Solana address in base58, 32-44 chars. |
solknife_positions_listList a wallet's open Meteora DLMM positions with PnL.List a wallet's open Meteora DLMM positions with PnL.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_mint_supply_readRead a mint's authority state plus whether `owner` is its mint authority (prerequisite for mint-to).Read a mint's authority state plus whether `owner` is its mint authority (prerequisite for mint-to).
| Parameter | Type | Description |
|---|---|---|
| mint* | string | A Solana address in base58, 32-44 chars. |
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_revoke_authority_readRead a mint's current mint + freeze authorities and whether `owner` holds either.Read a mint's current mint + freeze authorities and whether `owner` holds either.
| Parameter | Type | Description |
|---|---|---|
| mint* | string | A Solana address in base58, 32-44 chars. |
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_change_authority_readRead a mint's current mint + freeze authorities and whether `owner` holds either (before transferring one).Read a mint's current mint + freeze authorities and whether `owner` holds either (before transferring one).
| Parameter | Type | Description |
|---|---|---|
| mint* | string | A Solana address in base58, 32-44 chars. |
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_token_metadata_readRead a mint's current on-chain Metaplex metadata and whether `owner` can update it.Read a mint's current on-chain Metaplex metadata and whether `owner` can update it.
| Parameter | Type | Description |
|---|---|---|
| mint* | string | A Solana address in base58, 32-44 chars. |
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_burn_nft_listList a wallet's NFT assets (DAS).List a wallet's NFT assets (DAS).
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_reclaim_rent_listList a wallet's reclaimable empty token accounts.List a wallet's reclaimable empty token accounts.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_ct_stateRead confidential-transfer state for owner + mint (mint extension flags, account configured, balance ciphertexts).Read confidential-transfer state for owner + mint (mint extension flags, account configured, balance ciphertexts).
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
solknife_ct_orphans_listList a wallet's orphan ZK Proof context-state accounts (left by partial Withdraw or Transfer sagas).List a wallet's orphan ZK Proof context-state accounts (left by partial Withdraw or Transfer sagas).
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
solknife_create_mint_buildBuild an unsigned create-mint tx. Returns the base64 v0 transaction + lastValidBlockHeight + derived mint address.Build an unsigned create-mint tx. Returns the base64 v0 transaction + lastValidBlockHeight + derived mint address.
| Parameter | Type | Description |
|---|---|---|
| payer* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| program* | string | — |
| decimals* | integer | Decimal places for the new mint. 9 matches SOL, 6 matches USDC. |
| freezeAuthority* | boolean | Whether the new mint gets a freeze authority. False makes accounts unfreezable forever. |
| extensions | object | Token-2022 extensions to enable. Omit entirely for program: spl-token. |
solknife_mint_supply_buildBuild an unsigned mint-to tx. `amount` is a whole-token decimal string; the builder parses it against the mint's decimals.Build an unsigned mint-to tx. `amount` is a whole-token decimal string; the builder parses it against the mint's decimals.
| Parameter | Type | Description |
|---|---|---|
| payer* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| recipient* | string | A Solana address in base58, 32-44 chars. |
| amount* | string | Amount to mint, in base units (not decimal). Multiply by 10^decimals yourself. |
solknife_revoke_authority_buildBuild an unsigned revoke-authority tx (mint and/or freeze). Permanent on-chain.Build an unsigned revoke-authority tx (mint and/or freeze). Permanent on-chain.
| Parameter | Type | Description |
|---|---|---|
| payer* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| revokeMint* | boolean | Permanently revoke the mint authority. Irreversible: no new supply can ever be minted. |
| revokeFreeze* | boolean | Permanently revoke the freeze authority. Irreversible: accounts can never be frozen. |
solknife_change_authority_buildBuild an unsigned change-authority tx: transfer the mint and/or freeze authority to newAuthority. The new authority is pinned in the tx the client verifies before signing.Build an unsigned change-authority tx: transfer the mint and/or freeze authority to newAuthority. The new authority is pinned in the tx the client verifies before signing.
| Parameter | Type | Description |
|---|---|---|
| payer* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| newAuthority* | string | A Solana address in base58, 32-44 chars. |
| changeMint* | boolean | Transfer the mint authority to newAuthority. |
| changeFreeze* | boolean | Transfer the freeze authority to newAuthority. |
solknife_token_metadata_buildBuild an unsigned set/update Metaplex metadata tx. `lock` makes the metadata immutable (irreversible).Build an unsigned set/update Metaplex metadata tx. `lock` makes the metadata immutable (irreversible).
| Parameter | Type | Description |
|---|---|---|
| payer* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| name* | string | On-chain token name, e.g. "Wrapped SOL". |
| symbol* | string | On-chain ticker, e.g. "WSOL". |
| uri* | string | URL of the off-chain metadata JSON (image, description). Often an Arweave or IPFS link. |
| lock* | boolean | Permanently freeze the metadata after this update. Irreversible. |
solknife_create_account_buildBuild an unsigned ATA-create tx (idempotent) for one or more mints.Build an unsigned ATA-create tx (idempotent) for one or more mints.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| payer* | string | A Solana address in base58, 32-44 chars. |
| mints* | array | — |
solknife_reclaim_rent_buildBuild chunked close-batch tx(s) for the wallet's empty token accounts. Up to MAX_RECLAIM_ACCOUNTS addresses.Build chunked close-batch tx(s) for the wallet's empty token accounts. Up to MAX_RECLAIM_ACCOUNTS addresses.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| accounts* | array | — |
solknife_burn_nft_buildBuild chunked burn tx(s) for selected NFTs (pNFTs supported).Build chunked burn tx(s) for selected NFTs (pNFTs supported).
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| mints* | array | — |
solknife_swap_orderJupiter quote + unsigned swap tx. `amount` in input-mint base units. Returns the unsigned tx + lastValidBlockHeight + quote details.Jupiter quote + unsigned swap tx. `amount` in input-mint base units. Returns the unsigned tx + lastValidBlockHeight + quote details.
| Parameter | Type | Description |
|---|---|---|
| inputMint* | string | A Solana address in base58, 32-44 chars. |
| outputMint* | string | A Solana address in base58, 32-44 chars. |
| amount* | string | Amount in base units as a decimal string (not a float). For a 6-decimal mint, "1000000" is 1 token. |
| taker* | string | A Solana address in base58, 32-44 chars. |
| slippageBps | integer | — |
solknife_portfolio_compose_buildBuild a best-effort single auto-compose transaction for a target portfolio. Charges the configured compose fee when SOLKNIFE_FEE_ACCOUNT is set.Build a best-effort single auto-compose transaction for a target portfolio. Charges the configured compose fee when SOLKNIFE_FEE_ACCOUNT is set.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| targets* | array | The desired portfolio: each mint and its share in basis points, summing to 10000. |
| slippageBps | integer | — |
solknife_ct_configure_buildBuild the Configure tx. Needs an agent-generated PubkeyValidity proof (96 B base64) + decryptable-zero AES ciphertext (36 B base64).Build the Configure tx. Needs an agent-generated PubkeyValidity proof (96 B base64) + decryptable-zero AES ciphertext (36 B base64).
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| pubkeyValidityProof* | string | Base64 of the 96-byte pubkey-validity proof from your ZK worker. |
| decryptableZeroBalance* | string | Base64 of the 36-byte AES-encrypted zero balance your worker computed. |
solknife_ct_deposit_buildBuild the Deposit tx (public → confidential pending). `amount` in base units (u64 string).Build the Deposit tx (public → confidential pending). `amount` in base units (u64 string).
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| amount* | string | Amount in base units as a decimal string (not a float). For a 6-decimal mint, "1000000" is 1 token. |
| decimals* | integer | The mint's decimals. Must match the mint exactly or the transfer fails on-chain. |
solknife_ct_apply_pending_buildBuild the ApplyPending tx. The agent-supplied `newDecryptableAvailable` (36 B AES base64) is what the worker computed.Build the ApplyPending tx. The agent-supplied `newDecryptableAvailable` (36 B AES base64) is what the worker computed.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| expectedPendingCounter* | string | — |
| newDecryptableAvailable* | string | Base64 of the 36-byte AES-encrypted new available balance your worker computed. |
solknife_ct_empty_and_close_buildBuild the combined EmptyAccount + CloseAccount tx. Agent provides the 96 B base64 zero-ciphertext proof.Build the combined EmptyAccount + CloseAccount tx. Agent provides the 96 B base64 zero-ciphertext proof.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| zeroCiphertextProof* | string | Base64 of the 96-byte zero-ciphertext proof from your ZK worker. |
solknife_ct_withdraw_buildBuild the 5-tx Withdraw saga. Agent supplies equality (320 B) + range U64 (936 B) proofs + new AES decryptable (36 B), plus the two ephemeral ctx-state pubkeys.Build the 5-tx Withdraw saga. Agent supplies equality (320 B) + range U64 (936 B) proofs + new AES decryptable (36 B), plus the two ephemeral ctx-state pubkeys.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| amount* | string | Amount in base units as a decimal string (not a float). For a 6-decimal mint, "1000000" is 1 token. |
| decimals* | integer | The mint's decimals. Must match the mint exactly. |
| equalityContextAccount* | string | A Solana address in base58, 32-44 chars. |
| rangeContextAccount* | string | A Solana address in base58, 32-44 chars. |
| equalityProof* | string | Base64 of the ciphertext-commitment equality proof from your ZK worker. |
| rangeProof* | string | Base64 of the range proof from your ZK worker. |
| newDecryptableAvailable* | string | Base64 of the 36-byte AES-encrypted new available balance your worker computed. |
solknife_ct_transfer_buildBuild the 5-tx Transfer saga. Agent supplies equality (320 B) + validity-3H (544 B) + range U128 (1000 B) proofs + auditor lo/hi ciphertexts (64 B each) + new AES decryptable (36 B), plus the three ephemeral ctx-state pubkeys.Build the 5-tx Transfer saga. Agent supplies equality (320 B) + validity-3H (544 B) + range U128 (1000 B) proofs + auditor lo/hi ciphertexts (64 B each) + new AES decryptable (36 B), plus the three ephemeral ctx-state pubkeys.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| mint* | string | A Solana address in base58, 32-44 chars. |
| destinationTokenAccount* | string | A Solana address in base58, 32-44 chars. |
| equalityContextAccount* | string | A Solana address in base58, 32-44 chars. |
| validityContextAccount* | string | A Solana address in base58, 32-44 chars. |
| rangeContextAccount* | string | A Solana address in base58, 32-44 chars. |
| equalityProof* | string | Base64 of the ciphertext-commitment equality proof from your ZK worker. |
| validityProof* | string | Base64 of the batched ciphertext-validity proof from your ZK worker. |
| rangeProof* | string | Base64 of the range proof from your ZK worker. |
| newSourceDecryptableAvailable* | string | Base64 of the 36-byte AES-encrypted post-transfer source balance your worker computed. |
| auditorCiphertextLo* | string | Base64 of the low 32 bytes of the auditor ElGamal ciphertext. |
| auditorCiphertextHi* | string | Base64 of the high 32 bytes of the auditor ElGamal ciphertext. |
solknife_ct_orphans_buildBuild chunked CloseContextState tx(s) to reclaim orphan ZK ctx rent.Build chunked CloseContextState tx(s) to reclaim orphan ZK ctx rent.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| addresses* | array | — |
solknife_swap_executeSubmit a wallet-signed swap transaction. Returns the ExecuteOutcome (confirmed/failed/expired/unknown).Submit a wallet-signed swap transaction. Returns the ExecuteOutcome (confirmed/failed/expired/unknown).
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_portfolio_compose_executeSubmit a wallet-signed portfolio compose transaction after top-level program allowlist verification.Submit a wallet-signed portfolio compose transaction after top-level program allowlist verification.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_create_mint_executeSubmit a wallet-signed create-mint tx. Structural re-verifier pins the mint creation ix + fee.Submit a wallet-signed create-mint tx. Structural re-verifier pins the mint creation ix + fee.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_mint_supply_executeSubmit a wallet-signed mint-to tx. Structural re-verifier pins the mint-to ix + fee.Submit a wallet-signed mint-to tx. Structural re-verifier pins the mint-to ix + fee.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_create_account_executeSubmit a wallet-signed ATA-create tx. Structural re-verifier pins the ATA creation ix(s) + allowlist.Submit a wallet-signed ATA-create tx. Structural re-verifier pins the ATA creation ix(s) + allowlist.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_revoke_authority_executeSubmit a wallet-signed revoke-authority tx. Structural re-verifier pins the revoke ix(s) + fee.Submit a wallet-signed revoke-authority tx. Structural re-verifier pins the revoke ix(s) + fee.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_change_authority_executeSubmit a wallet-signed change-authority tx. Structural re-verifier pins the reassign ix(s) + fee.Submit a wallet-signed change-authority tx. Structural re-verifier pins the reassign ix(s) + fee.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_token_metadata_executeSubmit a wallet-signed Metaplex metadata tx. Structural re-verifier pins the metadata ix + fee.Submit a wallet-signed Metaplex metadata tx. Structural re-verifier pins the metadata ix + fee.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_reclaim_rent_executeSubmit reclaim-rent close-batch tx(s) (signed). Each is re-verified against fresh on-chain state for the wallet's reclaimable accounts. Returns per-tx outcomes.Submit reclaim-rent close-batch tx(s) (signed). Each is re-verified against fresh on-chain state for the wallet's reclaimable accounts. Returns per-tx outcomes.
| Parameter | Type | Description |
|---|---|---|
| owner* | string | A Solana address in base58, 32-44 chars. |
| signedTransactions* | array | The signed base64 transactions from /build, in the order /build returned them. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_burn_nft_executeSubmit burn-nft tx(s) (signed). Structural re-verifier pins the burn ixs + fee per tx. Returns per-tx outcomes.Submit burn-nft tx(s) (signed). Structural re-verifier pins the burn ixs + fee per tx. Returns per-tx outcomes.
| Parameter | Type | Description |
|---|---|---|
| signedTransactions* | array | The signed base64 transactions from /build, in the order /build returned them. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_ct_submitSubmit a CT signed tx (single-tx ops) or saga (multi-tx ops). `op` discriminates. For saga ops (withdraw, transfer, reclaim-orphans) supply `signedTransactions` (an array); otherwise supply `signedTransaction`. The server re-verifies the saga shape + fee per op before relaying.Submit a CT signed tx (single-tx ops) or saga (multi-tx ops). `op` discriminates. For saga ops (withdraw, transfer, reclaim-orphans) supply `signedTransactions` (an array); otherwise supply `signedTransaction`. The server re-verifies the saga shape + fee per op before relaying.
| Parameter | Type | Description |
|---|---|---|
| op* | string | — |
| signedTransaction | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| signedTransactions | array | The signed base64 transactions from /build, in the order /build returned them. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_arweave_upload_relayprivilegedUpload a base64-encoded file to Arweave via SolKnife's funded Irys account. JSON-only — for agents without a wallet-adapter integration. Allowed contentType: image/png, image/jpeg, image/gif, image/webp, application/json. Max 2 MiB. Returns { arweaveTxId, arweaveUrl }.Upload a base64-encoded file to Arweave via SolKnife's funded Irys account. JSON-only — for agents without a wallet-adapter integration. Allowed contentType: image/png, image/jpeg, image/gif, image/webp, application/json. Max 2 MiB. Returns { arweaveTxId, arweaveUrl }.
| Parameter | Type | Description |
|---|---|---|
| fileBase64* | string | Base64 of the file bytes. Max 2 MiB decoded. |
| contentType* | string | — |
solknife_multisig_create_buildBuild an unsigned create-multisig tx. createKey is a fresh random pubkey the agent generates; it must co-sign the tx (two signers: creator + createKey). Returns the derived multisig + vault addresses, base64 v0 tx, and lastValidBlockHeight.Build an unsigned create-multisig tx. createKey is a fresh random pubkey the agent generates; it must co-sign the tx (two signers: creator + createKey). Returns the derived multisig + vault addresses, base64 v0 tx, and lastValidBlockHeight.
| Parameter | Type | Description |
|---|---|---|
| creator* | string | A Solana address in base58, 32-44 chars. |
| createKey* | string | A Solana address in base58, 32-44 chars. |
| members* | array | The multisig members. Omit permissions to grant all three. |
| threshold* | integer | Approvals required to execute a proposal. Must not exceed the member count. |
| timeLock | integer | — |
solknife_multisig_create_executeSubmit the signed create-multisig tx (signed by both the creator wallet and the createKey).Submit the signed create-multisig tx (signed by both the creator wallet and the createKey).
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_multisig_propose_buildBuild an unsigned propose tx. kind=sol-transfer needs recipient+lamports; token-transfer needs mint+recipient+amount (base units); instructions takes raw inner instructions ({programId, accounts, data:base64}) whose payer is the vault PDA. The proposer auto-approves if they can vote.Build an unsigned propose tx. kind=sol-transfer needs recipient+lamports; token-transfer needs mint+recipient+amount (base units); instructions takes raw inner instructions ({programId, accounts, data:base64}) whose payer is the vault PDA. The proposer auto-approves if they can vote.
| Parameter | Type | Description |
|---|---|---|
| multisig* | string | A Solana address in base58, 32-44 chars. |
| proposer* | string | A Solana address in base58, 32-44 chars. |
| memo | string | — |
| kind* | string | — |
| recipient | string | A Solana address in base58, 32-44 chars. |
| lamports | integer | — |
| mint | string | A Solana address in base58, 32-44 chars. |
| amount | string | — |
| instructions | array | — |
| ephemeralSigners | integer | — |
solknife_multisig_propose_executeSubmit the signed propose-transaction tx.Submit the signed propose-transaction tx.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_multisig_config_buildBuild an unsigned config-change proposal. op=add-member needs member (+optional permissions); remove-member needs member; change-threshold needs threshold. Only works on m-of-n multisigs (no single config authority).Build an unsigned config-change proposal. op=add-member needs member (+optional permissions); remove-member needs member; change-threshold needs threshold. Only works on m-of-n multisigs (no single config authority).
| Parameter | Type | Description |
|---|---|---|
| multisig* | string | A Solana address in base58, 32-44 chars. |
| proposer* | string | A Solana address in base58, 32-44 chars. |
| memo | string | — |
| op* | string | — |
| member | string | A Solana address in base58, 32-44 chars. |
| permissions | object | What this member is allowed to do. All three are independent. |
| threshold | integer | — |
solknife_multisig_config_executeSubmit the signed config-change proposal tx.Submit the signed config-change proposal tx.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
solknife_multisig_stateRead a Squads v4 multisig by address: members + permissions, threshold, vault balance, and pending proposals (vote tallies, who has voted, whether it can be executed). Returns null if the address is not a multisig.Read a Squads v4 multisig by address: members + permissions, threshold, vault balance, and pending proposals (vote tallies, who has voted, whether it can be executed). Returns null if the address is not a multisig.
| Parameter | Type | Description |
|---|---|---|
| address* | string | A Solana address in base58, 32-44 chars. |
solknife_multisig_approve_buildBuild an unsigned vote tx: approve or reject the proposal at transactionIndex.Build an unsigned vote tx: approve or reject the proposal at transactionIndex.
| Parameter | Type | Description |
|---|---|---|
| multisig* | string | A Solana address in base58, 32-44 chars. |
| member* | string | A Solana address in base58, 32-44 chars. |
| transactionIndex* | integer | The proposal index, as returned by /api/multisig/state. |
| vote* | string | — |
solknife_multisig_approve_executeSubmit the signed vote tx. Pass the same vote value used in the build.Submit the signed vote tx. Pass the same vote value used in the build.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
| vote* | string | — |
solknife_multisig_execute_buildBuild an unsigned execute tx for an APPROVED proposal at transactionIndex. The server detects vault vs config and returns executeKind; pass it to execute.execute. computeUnitLimit optionally raises the CU cap for heavy inner transactions.Build an unsigned execute tx for an APPROVED proposal at transactionIndex. The server detects vault vs config and returns executeKind; pass it to execute.execute. computeUnitLimit optionally raises the CU cap for heavy inner transactions.
| Parameter | Type | Description |
|---|---|---|
| multisig* | string | A Solana address in base58, 32-44 chars. |
| member* | string | A Solana address in base58, 32-44 chars. |
| transactionIndex* | integer | The proposal index, as returned by /api/multisig/state. |
| computeUnitLimit | integer | — |
solknife_multisig_execute_executeSubmit the signed execute-proposal tx. Pass the executeKind returned by execute.build.Submit the signed execute-proposal tx. Pass the executeKind returned by execute.build.
| Parameter | Type | Description |
|---|---|---|
| signedTransaction* | string | The base64 VersionedTransaction returned by the matching /build call, signed with your key. Do not submit it yourself; this endpoint submits it. |
| lastValidBlockHeight* | integer | The `lastValidBlockHeight` returned alongside the unsigned tx by /build. Past this block height the tx can no longer land. |
| executeKind* | string | — |
55 of 55 tools published a description.
Tool names and descriptions are written by the publisher and shown verbatim as inert text. They are the strings an MCP client passes to a model, so Forge scans them for prompt-injection patterns — any finding appears with the security scan above. “Privileged” is a keyword match on the tool name, not an audit of what the tool does: a benign-sounding name can still do anything.
Non-custodial Solana toolkit: rug-checks, swaps, portfolios, token minting, multisig, Arweave.
+ 15 more observed on this entry.
Linked names open Forge’s index of every entry observed exposing that tool. Browse all indexed tools.
This entry publishes no npm package, so Forge has no dependency tree for it. That is a gap in coverage — not a statement that it has no dependencies.