# Poultry Broiler House Capacity Planner AI Agent Connect

> Calculates bird stocking capacity, equipment needs, and annual production yields for broiler houses.

## Overview
- **Category:** agriculture
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_JXoNwAf1tQNUqJEroCS5BIZ6ylqilctyhRkYEJRe/ai-agent-connect
- **Tags:** poultry, broiler, capacity-planning, farming, livestock

## Description

This MCP server provides technical decision support for broiler poultry operations. It allows AI agents to calculate precise bird placement counts using `calculate_stocking_capacity`, determine infrastructure requirements with `calculate_equipment_needs`, and plan environmental controls via `calculate_environmental_systems`. Additionally, it can forecast yearly output using `estimate_annual_production`, accounting for mortality rates and seasonal performance variations.

## Tools

### calculate_environmental_systems
Determines the necessary capacity for ventilation and heating systems

### calculate_equipment_needs
Determines the quantity of essential feeding and watering infrastructure required

### calculate_stocking_capacity
Determines the maximum number of birds that can be placed in a house based on physical constraints and welfare standards

### estimate_annual_production
Predicts the yearly output of the house in terms of bird numbers and total meat weight

## Prompt Examples

**Prompt:** 
```
Calculate the stocking capacity for a house that is 12 meters wide and 100 meters long, with a target market weight of 2.5 kg and a density of 35 kg/m².
```

**Response:** 
```
The house can accommodate 1,400 birds with a total biomass at harvest of 3,500 kg.
```

**Prompt:** 
```
How many feeder lines do I need for 1,500 birds if I am using a pan_feeder system?
```

**Response:** 
```
For 1,500 birds using a pan_feeder system, you will need 4 feeder lines.
```

**Prompt:** 
```
Estimate the annual meat production for 2,000 birds per cycle, 5 cycles per year, a 5% mortality rate, and an FCR of 1.6.
```

**Response:** 
```
The estimated annual production is 15,200 kg of meat.
```

## Frequently Asked Questions

**How does the tool account for seasonal changes?**
The `calculate_environmental_systems` tool uses seasonal profiles to adjust ventilation and heating requirements, while `estimate_annual_production` applies a seasonal adjustment factor to the Feed Conversion Ratio (FCR).

**Can I calculate how many feeders I need?**
Yes, you can use `calculate_equipment_needs` to determine the exact number of feeder and drinker lines required based on your bird placement count and chosen equipment type.

**What determines the maximum number of birds in a house?**
The maximum capacity is determined by the house dimensions and the target stocking density (kg/m²), which is calculated using the `calculate_stocking_capacity` tool.
