Freight Rate Intelligence implements the Model Context Protocol (MCP), allowing AI agents to discover and call intelligence skills as native tools.
MCP is a protocol for AI agents to discover and invoke tools from external services. Freight Rate Intelligence exposes all 9 intelligence skills as MCP tools, enabling any MCP-compatible AI client to query freight data programmatically.
Available MCP tools:
fri_rate_lookup — Cost-basis rate for any U.S. lane (Explorer)fri_diesel_trend — PADD regional diesel price trends (Explorer)fri_fuel_surcharge — ATA/DOE fuel surcharge calculation (Explorer)fri_market_analysis — Macro freight market intelligence (Starter)fri_lane_comparison — Side-by-side lane comparison (Starter)fri_rate_alerts — Threshold monitoring with triggers (Starter)fri_carrier_capacity — Regional capacity pressure index (Starter)fri_audit_report — Receipt-chain provenance tracing (Professional)fri_rate_forecast — Forward rate projections (Professional)Configure Claude to use Freight Rate Intelligence as an MCP server with proper headers and authentication.
{
"mcpServers": {
"freight-rate-intelligence": {
"url": "https://freightrateintelligence.com/mcp",
"headers": {
"Authorization": "Bearer fri_YOUR_API_KEY"
}
}
}
}
Before invoking tools, agents can browse FRI resources:
GET /mcp/resources — List all available resourcesGET /mcp/resources/server-info — When to use FRIGET /mcp/resources/data-sources — Federal data with series IDsGET /mcp/resources/skills — Full skill catalog with pricingGET /mcp/resources/pricing — Tier and per-call costsGET /mcp/resources/confidence — How to interpret confidence gradesGET /mcp/resources/equipment — Supported equipment types{
"name": "FreightRateIntelligence.com",
"description": "Cost-basis freight rate intelligence and market data",
"mcp_endpoint": "https://freightrateintelligence.com/mcp",
"tools": [
"fri_rate_lookup",
"fri_diesel_trend",
"fri_fuel_surcharge",
"fri_market_analysis",
"fri_lane_comparison",
"fri_rate_alerts",
"fri_carrier_capacity",
"fri_audit_report",
"fri_rate_forecast"
],
"pricing": "per-call via API key (Starter $0.05, Professional $0.03, Enterprise $0.01)",
"auth": "Bearer token (fri_ prefix)",
"rail_compatible": true
}
Every MCP tool call returns a receipt_id — a constitutional record of the query for:
MCP tool calls can return errors. Handle these in your agent:
fri://pricing resource.resets_at time, then retry.fri://skills resource.Best practice: Before calling a skill, check /v1/agent/skills to verify your tier has access. This avoids unnecessary 403 errors.
| Tier | Per-Request Cost | Monthly Included |
|---|---|---|
| Explorer | Free (25/month) | 25 |
| Starter | $0.05 | 500 |
| Professional | $0.03 | 5,000 |
| Enterprise | $0.01 | Unlimited |