Wayforth Quickstart

4,974 verified APIs in 60 seconds.

Step 1 of 3

Install the MCP server

uvx wayforth-mcp

Works with Claude Code, Cursor, Windsurf, and any MCP-compatible runtime. Or add explicitly: claude mcp add wayforth -- uvx wayforth-mcp

Step 2 of 3

Search the catalog

# 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.

Step 3 of 3

Pay with credits

# 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

WayforthQL — structured queries

For more control, use WayforthQL

POST /query
{
  "query": "fast inference for coding agents",
  "tier_min": 2,
  "sort_by": "wri",
  "price_max": 0.001,
  "limit": 5
}
Python SDK

Or use the Python SDK directly

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