Research aws marketplace solutionAWS_MARKETPLACE_MCP_RESEARCH_AWS_MARKETPLACE_SOLUTION
Deep web research tool for AWS Marketplace solutions. Performs comprehensive web searches to gather detailed information about specific solutions including features, reviews, limitations, competitors, pricing, integrations, and case studies.
**Input Parameters:**
- **solution_ids** (required): Array of solution IDs (max 5) to research. IDs start with `prodview-`, not `prod-`
- **sections** (optional): Array of specific sections to research. Default: all sections.
**Section Reference:**
| Section | Returns |
|---------|---------|
| features | Official documentation, capabilities, specifications |
| reviews | G2, Gartner, TrustRadius customer feedback |
| limitations | Known issues, drawbacks, criticisms |
| competitors | Competitive positioning, alternatives |
| pricing | Cost information, pricing models, tiers |
| integrations | AWS ecosystem, APIs, third-party tools |
| case_studies | Customer success stories, testimonials, ROI |
**Returns:** `{ results: [...] }` - Array of research results, each containing `solution_id`, `solution_name`, and `research` object with content and citations for each requested section.
**Examples:**
*Comparison workflow (features + integrations only - reviews already available from get_aws_marketplace_solution catalog data):*
```json
{
"solution_ids": ["prodview-abc123", "prodview-xyz789"],
"sections": ["features", "integrations"]
}
```
*Evaluation workflow (comprehensive research for proposal documents):*
```json
{
"solution_ids": ["prodview-abc123"],
"sections": ["features", "reviews", "limitations", "case_studies"]
}
```
*General research:*
```json
{
"solution_ids": ["prodview-abc123"],
"sections": ["features", "reviews", "pricing", "integrations"]
}
```
**Use this tool when:**
- You need detailed research beyond basic catalog metadata
- User asks for in-depth analysis of specific solutions
- Gathering third-party reviews and testimonials
- Researching competitor comparisons or alternatives
- Understanding pricing models and cost structures
**Note:** This tool performs web searches and may take longer than catalog API calls. Results include citations linking to source materials.
**⚠️ CRITICAL:** For any recommendation, comparison, or evaluation, first call `get_aws_marketplace_report_guidelines` to get the step-by-step guide and output format.