get_deal_details
Retrieve detailed information about a specific deal using its ID, with optional source specification, from the Bargainer MCP Server for accurate deal comparison and insights.
Instructions
Get detailed information about a specific deal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dealId | Yes | The ID of the deal to get details for | |
source | No | The source of the deal (optional) |
Input Schema (JSON Schema)
{
"properties": {
"dealId": {
"description": "The ID of the deal to get details for",
"type": "string"
},
"source": {
"description": "The source of the deal (optional)",
"type": "string"
}
},
"required": [
"dealId"
],
"type": "object"
}