🚀 Conveyor Maven API

Professional conveyor engineering calculators accessible via RESTful API. Built for AI integration, automation, and enterprise applications.

API Endpoint:
https://3l0evu9ree.execute-api.us-east-1.amazonaws.com/prod
Get Started View Pricing Download OpenAPI Spec

Why Use Our API?

🤖 AI-Ready

MCP (Model Context Protocol) integration for Claude, OpenAI function calling support, and structured JSON I/O

⚡ Production-Tested

Battle-tested algorithms from real-world conveyor systems. Used by engineers worldwide.

📚 14+ Calculators

Belt feeders, chutes, pulleys, tonnage, power, tension, and more. All accessible via single endpoint.

🌍 Global Support

Multi-language documentation and support for international engineering standards.

📊 Usage Analytics

Track API usage, monitor performance, and optimize your integration.

🔒 Secure & Reliable

API key authentication, rate limiting, and 99.9% uptime SLA for enterprise customers.

Getting Started

cURL Example

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
    }
  }'

Python Example

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")

JavaScript Example

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`);
    });

Claude MCP Integration

Use our MCP server to give Claude access to all conveyor calculators:

⚠️ Prerequisites:
  • Get your FREE API key (Free tier includes 5 calculators)
  • Python 3.10+ installed
  • Claude Desktop app installed
# 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
✅ Tier-Based Access:
  • Free: 5 calculators (belt-speed, tonnage, power, safety-factor, lift)
  • Professional ($29/mo): All 14 calculators
  • Enterprise ($299/mo): Unlimited usage + priority support

After configuration, Claude can directly use commands like:

"Calculate the belt speed for a motor running at 1750 RPM with a 300mm pulley and 15:1 gear ratio"

Download MCP Server Get API Key

Available Calculators

belt-feeder

Calculate power and tonnage for belt feeders including shear resistance, skirt resistance, and material flow rates

belt-speed

Calculate belt speed from motor parameters including RPM, pulley diameter, and gear reduction

tonnage-calculator

Convert between tonnage rates and calculate material flow rates based on belt dimensions and speed

power

Calculate minimum power required for conveyor systems considering tonnage, lift, and friction

tension-estimate

Calculate belt tensions using the Euler-Eytelwein equation for drive pulley design

belt-safety-factor

Calculate belt safety factors to ensure safe operation under maximum tension

belt-revolution-time

Calculate time for one complete belt revolution for splice inspection planning

loop-spacing

Calculate optimal loop spacing for belt storage and handling

conveyor-lift

Calculate vertical lift from conveyor length and incline angle

plugged-chute

Calculate force required to clear a plugged chute

hub-outer-diameter

Calculate required pulley hub diameter based on shaft size and torque

stockpile-volume

Calculate stockpile volumes and tonnages for material storage planning

simple-winder

Calculate winding torque and safety factors for belt winder systems

flywheel

Calculate flywheel stress and energy storage capacity for drive systems

API Pricing

Free

$0/month
  • 100 calculations/month
  • 10 calculations/day
  • 20 AI knowledge base questions/month
  • All 14 calculators
  • Community support
  • API documentation
Get Free API Key

Enterprise

$299/month
  • Unlimited calculations
  • Unlimited AI knowledge base access
  • Priority support
  • SLA guarantees
  • Dedicated instances
  • Custom integrations
  • White-label option
Contact Sales

Need help? Email api@conveyormaven.com

Documentation | AWS Status | Contact Support