4,974 verified APIs in 60 seconds.
uvx wayforth-mcp
Works with Claude Code, Cursor, Windsurf, and any MCP-compatible runtime.
Or add explicitly: claude mcp add wayforth -- uvx wayforth-mcp
# In your agent — natural language, no API keys needed wayforth_search("translate text to Spanish") # Returns ranked results with WRI scores # → DeepL API WRI: 82 Tier 2 Verified $0.0000025/req # → LibreTranslate WRI: 71 Tier 2 Verified Free # → ModernMT WRI: 68 Tier 2 Verified $0.000003/req
WRI (Wayforth Reliability Index) is a 0–100 score based on uptime history, probe frequency, and real agent usage. Higher = more trustworthy.
# Deduct credits for a service call wayforth_pay( service_id="service_id_from_search", amount_usd=0.001 ) # 1 credit = $0.001 # Credits deducted instantly from your balance # Buy credits at wayforth.io/dashboard
POST /query
{
"query": "fast inference for coding agents",
"tier_min": 2,
"sort_by": "wri",
"price_max": 0.001,
"limit": 5
}
pip install wayforth-sdk from wayforth.client import WayforthClient client = WayforthClient() results = client.query( query="real-time stock data", tier_min=2, sort_by="wri" ) for r in results["results"]: print(r["name"], "WRI:", r["wri"])