# Rebar Splice Decision Support AI Agent Connect

> Evaluates rebar splicing methods based on structural, economic, and site constraints.

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

## Description

This MCP server provides a suite of engineering tools to compare rebar splicing alternatives. It calculates necessary lap splice lengths using `calculate_lap_splice_requirements`, estimates the financial impact via `estimate_mechanical_splice_cost`, and assesses site-specific viability with `evaluate_welded_splice_feasibility`. Finally, it uses `generate_splice_recommendation` to provide a data-driven decision between lap, mechanical, or welded splices based on congestion and cost.

## Tools

### evaluate_welded_splice_feasibility
Determines if welding is a viable option based on site constraints and congestion

### estimate_mechanical_splice_cost
Calculates the total financial impact of using mechanical couplers

### generate_splice_recommendation
Provides a final decision by comparing all calculated factors

### calculate_lap_splice_requirements
Determines the necessary overlap length for a lap splice based on structural geometry

## Prompt Examples

**Prompt:** 
```
Calculate the required lap splice length for a 25mm bar under tension at mid-span.
```

**Response:** 
```
The required lap splice length for a 25mm bar under tension at mid-span is 1250mm.
```

**Prompt:** 
```
Estimate the cost for 50 mechanical splices using 20mm diameter bars.
```

**Response:** 
```
The total estimated cost for 50 mechanical splices with 20mm bars is $450.00.
```

**Prompt:** 
```
Is welding feasible in a high congestion area with limited space?
```

**Response:** 
```
No, welding is not recommended in high congestion areas with limited space due to quality control risks.
```

## Frequently Asked Questions

**How does the tool determine the lap splice length?**
The `calculate_lap_splice_requirements` tool determines the length based on the bar diameter, the type of load (tension or compression), and the structural zone location.

**Can I use this to compare costs between methods?**
Yes. You can use `estimate_mechanical_splice_cost` to find the total cost of couplers and then use `generate_splice_recommendation` to compare that against other methods.

**What factors influence the final recommendation?**
The recommendation is driven by the calculated lap length, the total mechanical cost, the feasibility of welding, and the reinforcement congestion level.
