Skip to main content
Glama
Deconstruct2021

cryptopunks-mcp-server

get_top_collection_bids

Retrieve the highest CryptoPunks collection bids sorted by amount, with filtering options for bid status and blockchain network.

Instructions

Get the highest collection bids ordered by bid amount descending. Returns summarized bid metadata. Tip: try status 'pending' if default returns empty results.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
statusNoFilter by status. Try 'pending' for active bids.
chain_idNo

Implementation Reference

  • The handler for `get_top_collection_bids` tool, which fetches top bids from the API using `api.getTopBids`.
    case "get_top_collection_bids": {
      // Bug 6 fix: default to "pending" status since unfiltered may return empty
      const raw = await api.getTopBids({
        limit: args.limit ?? 10,
        status: args.status ?? "pending",
        chainId: args.chain_id ?? 1,
      });
      return ok(summarizeBidsResponse(raw));
    }
  • The registration and input schema definition for `get_top_collection_bids`.
    get_top_collection_bids: {
      description:
        "Get the highest collection bids ordered by bid amount descending. Returns summarized bid metadata. Tip: try status 'pending' if default returns empty results.",
      inputSchema: z.object({
        limit: z.number().int().min(1).max(100).optional().default(10),
        status: bidStatus.optional().describe("Filter by status. Try 'pending' for active bids."),
        chain_id: z.number().int().optional().default(1),
      }),
    },

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/Deconstruct2021/cryptopunks-mcp-server'

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