w3_delegation_ls
List delegated storage permissions within the storacha.network using JSON-formatted output for clear and structured data retrieval in the MCP IPFS environment.
Instructions
Tool for w3_delegation_ls operation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| json | No | Format output as newline delimited JSON (default: true). |
Implementation Reference
- src/tool_handlers.ts:288-309 (handler)Main handler function for the w3_delegation_ls tool. Parses arguments using the schema, executes the 'delegation ls' command (with optional JSON flag), processes output using parseNdJson if JSON, and returns formatted content.const handleW3DelegationLs: ToolHandler = async (args) => { const parsed = Schemas.W3DelegationLsArgsSchema.safeParse(args); if (!parsed.success) throw new Error( `Invalid arguments for w3_delegation_ls: ${parsed.error.message}` ); const { json } = parsed.data; const command = json ? "delegation ls --json" : "delegation ls"; const { stdout } = await runW3Command(command); if (json) { const delegations = parseNdJson(stdout); return { content: [{ type: "text", text: JSON.stringify({ delegations }) }], }; } else { return { content: [ { type: "text", text: JSON.stringify({ output: stdout.trim() }) }, ], }; } };
- src/schemas.ts:127-133 (schema)Zod schema for input arguments of w3_delegation_ls, defining optional 'json' boolean flag defaulting to true.export const W3DelegationLsArgsSchema = z.object({ json: z .boolean() .optional() .default(true) .describe("Format output as newline delimited JSON (default: true)."), });
- src/tool_handlers.ts:944-980 (registration)Registration of the w3_delegation_ls handler in the toolHandlers map, which is likely exported and used for tool registration in the MCP system.export const toolHandlers: Record<string, ToolHandler> = { w3_login: handleW3Login, w3_space_ls: handleW3SpaceLs, w3_space_use: handleW3SpaceUse, w3_space_create: handleW3SpaceCreate, w3_up: handleW3Up, w3_ls: handleW3Ls, w3_rm: handleW3Rm, w3_open: handleW3Open, w3_space_info: handleW3SpaceInfo, w3_space_add: handleW3SpaceAdd, w3_delegation_create: handleW3DelegationCreate, w3_delegation_ls: handleW3DelegationLs, w3_delegation_revoke: handleW3DelegationRevoke, w3_proof_add: handleW3ProofAdd, w3_proof_ls: handleW3ProofLs, w3_key_create: handleW3KeyCreate, w3_bridge_generate_tokens: handleW3BridgeGenerateTokens, w3_can_blob_add: handleW3CanBlobAdd, w3_can_blob_ls: handleW3CanBlobLs, w3_can_blob_rm: handleW3CanBlobRm, w3_can_index_add: handleW3CanIndexAdd, w3_can_upload_add: handleW3CanUploadAdd, w3_can_upload_ls: handleW3CanUploadLs, w3_can_upload_rm: handleW3CanUploadRm, w3_plan_get: handleW3PlanGet, w3_account_ls: handleW3AccountLs, w3_space_provision: handleW3SpaceProvision, w3_coupon_create: handleW3CouponCreate, w3_usage_report: handleW3UsageReport, w3_can_access_claim: handleW3CanAccessClaim, w3_can_store_add: handleW3CanStoreAdd, w3_can_store_ls: handleW3CanStoreLs, w3_can_store_rm: handleW3CanStoreRm, w3_can_filecoin_info: handleW3CanFilecoinInfo, w3_reset: handleW3Reset, };