get_collection
Retrieve detailed information about a stamp collection using its ID, optionally including stamps with pagination. Works with Stampchain MCP Server for querying Bitcoin Stamps data without authentication.
Instructions
Retrieve detailed information about a specific stamp collection by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | The ID of the collection to retrieve | |
include_stamps | No | Whether to include stamps in the collection | |
stamps_limit | No | Number of stamps per page | |
stamps_page | No | Page number for stamps if included |
Input Schema (JSON Schema)
{
"properties": {
"collection_id": {
"description": "The ID of the collection to retrieve",
"type": "string"
},
"include_stamps": {
"default": false,
"description": "Whether to include stamps in the collection",
"type": "boolean"
},
"stamps_limit": {
"default": 20,
"description": "Number of stamps per page",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"stamps_page": {
"default": 1,
"description": "Page number for stamps if included",
"minimum": 1,
"type": "number"
}
},
"required": [
"collection_id"
],
"type": "object"
}