Professional conveyor engineering calculators accessible via RESTful API. Built for AI integration, automation, and enterprise applications.
https://3l0evu9ree.execute-api.us-east-1.amazonaws.com/prod
MCP (Model Context Protocol) integration for Claude, OpenAI function calling support, and structured JSON I/O
Battle-tested algorithms from real-world conveyor systems. Used by engineers worldwide.
Belt feeders, chutes, pulleys, tonnage, power, tension, and more. All accessible via single endpoint.
Multi-language documentation and support for international engineering standards.
Track API usage, monitor performance, and optimize your integration.
API key authentication, rate limiting, and 99.9% uptime SLA for enterprise customers.
curl -X POST "https://3l0evu9ree.execute-api.us-east-1.amazonaws.com/prod/v1/calculate" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"calculatorType": "belt-speed",
"input": {
"motorSpeed": 1750,
"motorPulleyDiameter": 300,
"gearRatio": 15
}
}'
import requests
API_URL = "https://3l0evu9ree.execute-api.us-east-1.amazonaws.com/prod"
API_KEY = "YOUR_API_KEY"
def calculate_belt_speed(motor_speed, pulley_diameter, gear_ratio):
response = requests.post(
f"{API_URL}/v1/calculate",
headers={
"X-API-Key": API_KEY,
"Content-Type": "application/json"
},
json={
"calculatorType": "belt-speed",
"input": {
"motorSpeed": motor_speed,
"motorPulleyDiameter": pulley_diameter,
"gearRatio": gear_ratio
}
}
)
result = response.json()
return result["output"]
# Example usage
result = calculate_belt_speed(1750, 300, 15)
print(f"Belt Speed: {result['beltSpeed']:.2f} m/min")
const API_URL = "https://3l0evu9ree.execute-api.us-east-1.amazonaws.com/prod";
const API_KEY = "YOUR_API_KEY";
async function calculateBeltSpeed(motorSpeed, pulleyDiameter, gearRatio) {
const response = await fetch(`${API_URL}/v1/calculate`, {
method: 'POST',
headers: {
'X-API-Key': API_KEY,
'Content-Type': 'application/json'
},
body: JSON.stringify({
calculatorType: 'belt-speed',
input: {
motorSpeed,
motorPulleyDiameter: pulleyDiameter,
gearRatio
}
})
});
const result = await response.json();
return result.output;
}
// Example usage
calculateBeltSpeed(1750, 300, 15)
.then(result => {
console.log(`Belt Speed: ${result.beltSpeed.toFixed(2)} m/min`);
});
Use our MCP server to give Claude access to all conveyor calculators:
# Step 1: Create directory and virtual environment
mkdir -p ~/conveyor-mcp
cd ~/conveyor-mcp
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Step 2: Install dependencies
pip install mcp httpx
# Step 3: Download MCP server
curl -O https://conveyormaven.com/mcp/conveyor-mcp-server.py
# Step 4: Add to Claude Desktop config
# Location: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"conveyor-maven": {
"command": "/Users/YOUR_USERNAME/conveyor-mcp/venv/bin/python",
"args": [
"/Users/YOUR_USERNAME/conveyor-mcp/conveyor-mcp-server.py"
],
"env": {
"CONVEYOR_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
# Step 5: Restart Claude Desktop
After configuration, Claude can directly use commands like:
Calculate power and tonnage for belt feeders including shear resistance, skirt resistance, and material flow rates
Calculate belt speed from motor parameters including RPM, pulley diameter, and gear reduction
Convert between tonnage rates and calculate material flow rates based on belt dimensions and speed
Calculate minimum power required for conveyor systems considering tonnage, lift, and friction
Calculate belt tensions using the Euler-Eytelwein equation for drive pulley design
Calculate belt safety factors to ensure safe operation under maximum tension
Calculate time for one complete belt revolution for splice inspection planning
Calculate optimal loop spacing for belt storage and handling
Calculate vertical lift from conveyor length and incline angle
Calculate force required to clear a plugged chute
Calculate required pulley hub diameter based on shaft size and torque
Calculate stockpile volumes and tonnages for material storage planning
Calculate winding torque and safety factors for belt winder systems
Calculate flywheel stress and energy storage capacity for drive systems
Need help? Email api@conveyormaven.com