list_resources
Retrieve a list of specific resource types, such as cards, accounts, or transactions, using the Lithic MCP Server’s API. Ideal for accessing structured banking and card services data.
Instructions
List resources of a specific type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
resourceType | Yes | Type of resource to list (cards, accounts, transactions, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"resourceType": {
"description": "Type of resource to list (cards, accounts, transactions, etc.)",
"type": "string"
}
},
"required": [
"resourceType"
],
"type": "object"
}