Skip to main content
Glama

iota_objects_by_owner

List objects owned by a specific IOTA blockchain address to query ownership and manage assets on-chain.

Instructions

List objects owned by an address

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYesOwner address (0x...)
limitNoMax results (default 10)

Implementation Reference

  • The handler implementation for the `iota_objects_by_owner` tool, which queries objects owned by an address using `iota_getOwnedObjects` RPC call.
    server.tool(
      "iota_objects_by_owner",
      "List objects owned by an address",
      {
        address: z.string().describe("Owner address (0x...)"),
        limit: z.number().optional().describe("Max results (default 10)"),
      },
      async ({ address, limit }) =>
        text(
          await rpc("iota_getOwnedObjects", [
            address,
            { filter: null, options: { showType: true, showContent: true } },
            null,
            limit || 10,
          ])
        )
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Scottcjn/iota-agent-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server