# Concrete Precast Joint Designer AI Agent Connect

> Calculates structural dimensions for precast concrete connections.

## Overview
- **Category:** construction
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_pLaUZ97AXSIPjR8NF24v2wwdamNS7DFNNaI1kZo3/ai-agent-connect
- **Tags:** concrete, precast, structural, engineering, civil-engineering

## Description

This MCP server provides specialized engineering tools for designing structural connections between precast concrete elements. It calculates critical parameters such as dowel size, embedment length, weld size, and grout pad dimensions. Use `design_connection_parameters` to determine core structural dimensions, `validate_material_suitability` to check if material strengths meet load requirements, `get_connection_type_defaults` for geometric constraints, and `calculate_grout_area` to prevent material crushing.

## Tools

### calculate_grout_area
Determines the necessary surface area for grout pads to avoid crushing the material

### get_connection_type_defaults
Provides the standard geometric constraints and default behavior for a specific connection type

### validate_material_suitability
Determines if the provided concrete and grout strengths are sufficient to support the intended forces

### design_connection_parameters
Calculates the core structural dimensions required for a specific precast joint configuration

## Prompt Examples

**Prompt:** 
```
Calculate the connection parameters for a BUTT_JOINT with 50kN tension, 30kN shear, and 20kN compression. The element is 500x500x1000mm, concrete is 35MPa, and grout is 40MPa.
```

**Response:** 
```
The required dimensions for the BUTT_JOINT are: dowel size 20mm, embedment length 150mm, weld size 8mm, grout pad width 120mm, and grout pad length 120mm.
```

**Prompt:** 
```
Is a 25MPa concrete strength sufficient for a 100kN compression force on a 100x100mm surface?
```

**Response:** 
```
No, the material is not suitable because the applied force exceeds the bearing capacity of the 25MPa concrete for that surface area.
```

**Prompt:** 
```
What is the required grout area for a 45kN force on 40MPa grout?
```

**Response:** 
```
The required grout area is 1125 mm2.
```

## Frequently Asked Questions

**How do I calculate the required dowel size?**
You can use the `design_connection_parameters` tool, providing the connection type, applied forces, element dimensions, and material strengths.

**Can I account for construction phase loads?**
Yes, the `design_connection_parameters` tool allows you to provide `erectionForces` to ensure the design is safe during the assembly phase.

**How is grout pad area determined?**
The `calculate_grout_area` tool determines the necessary surface area to ensure the applied force does not exceed the material's compressive strength.
