MCP Tools Reference: paydeveloper.googleapis.com

Tool: list_pass_issuers

Retrieves a comprehensive list of all pass issuers registered in the Google Wallet business console associated with the authenticated user. This tool provides essential information for developers managing Wallet passes like loyalty cards, gift cards, or flights.

The following sample demonstrate how to use curl to invoke the list_pass_issuers MCP tool.

Curl Request
curl --location 'https://paydeveloper.googleapis.com/mcp' \
--header 'content-type: application/json' \
--header 'accept: application/json, text/event-stream' \
--data '{
  "method": "tools/call",
  "params": {
    "name": "list_pass_issuers",
    "arguments": {
      // provide these details according to the tool's MCP specification
    }
  },
  "jsonrpc": "2.0",
  "id": 1
}'
                

Input Schema

Request message for listing pass issuers that are shared with the authenticated user.

Output Schema

Response message for listing pass issuers that are shared with the authenticated user.

ListPassIssuersResponse

JSON representation
{
  "passIssuers": [
    {
      object (PassIssuer)
    }
  ]
}
Fields
passIssuers[]

object (PassIssuer)

The basic information of the pass issuers that is shared to the user.

PassIssuer

JSON representation
{
  "issuerId": string,
  "displayName": string
}
Fields
issuerId

string (int64 format)

Optional. The unique identifier of the pass issuer.

displayName

string

Optional. The display name of the pass issuer.

Tool Annotations

Destructive Hint: ❌ | Idempotent Hint: ✅ | Read Only Hint: ✅ | Open World Hint: ❌