get_product_details
Retrieve full metadata, including README, for any product by providing account and product IDs.
Instructions
Get comprehensive metadata for a specific product. Always includes README content if found in the product root directory.
Args: account_id: Account ID (e.g., "harvard-lil") product_id: Product ID (e.g., "gov-data")
Returns: Full product metadata including account info, storage config, roles, tags Always includes 'readme' field with content and metadata (if README exists)
Example: >>> await get_product_details("harvard-lil", "gov-data") { "title": "Archive of data.gov", "description": "...", "account": {"name": "Harvard Library Innovation Lab", ...}, "readme": { "found": true, "content": "# Archive of data.gov...", "size": 5344, "path": "harvard-lil/gov-data/README.md" }, ... }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account_id | Yes | ||
| product_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||