# Startup Feature Prioritization AI Agent Connect

> Prioritize product features using the RICE framework.

## Overview
- **Category:** product-management
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_4ocNOWMRq6J8tK9XifIxwhMJeXY1Ak2UKkofbRWA/ai-agent-connect
- **Tags:** rice, prioritization, roadmap, product, scoring

## Description

This MCP server provides tools to quantify and rank product features using the RICE (Reach, Impact, Confidence, Effort) framework. It allows product managers to calculate individual scores with `calculate_rice_score`, generate ranked lists via `get_feature_prioritization`, and build execution plans with `get_roadmap_recommendation`. You can also filter features using `search_features_by_metric` to find high-impact or low-effort opportunities.

## Tools

### calculate_rice_score
Calculates the individual RICE score for a specific feature

### get_feature_prioritization
You can optionally provide an alignment weight to boost strategic features.

Generates a ranked list of features based on their RICE scores and strategic alignment

### get_roadmap_recommendation
Optionally include dependencies to ensure prerequisites are scheduled first.

Provides a sequential execution plan that respects dependencies and priority

### search_features_by_metric
Filters and retrieves features based on specific performance or cost criteria

## Prompt Examples

**Prompt:** 
```
Calculate the RICE score for a feature with 500 reach, 3 impact, 0.8 confidence, and 2 months of effort.
```

**Response:** 
```
The RICE score for this feature is 600.
```

**Prompt:** 
```
Show me a ranked list of all features.
```

**Response:** 
```
1. Feature A (Score: 1200)
2. Feature B (Score: 850)
3. Feature C (Score: 400)
```

**Prompt:** 
```
Find features that require less than 3 person-months of effort.
```

**Response:** 
```
The following features meet your criteria: Feature B and Feature D.
```

## Frequently Asked Questions

**How is the RICE score calculated?**
The score is calculated by multiplying Reach, Impact, and Confidence, then dividing the result by Effort.

**Can I account for feature dependencies in the roadmap?**
Yes, when using `get_roadmap_recommendation`, you can set the dependency flag to ensure prerequisites are scheduled before the features that depend on them.

**How do I boost features that align with my business goals?**
You can use the `alignmentWeight` parameter in `get_feature_prioritization` to apply a multiplier to features that have high strategic relevance.
