Verifreta Carrier Lookup
Carrier first-look for freight brokers: DOT, MC/MX/FF, and name. SAFER/L&I stay source of truth.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"carrier-lookup": {
"url": "https://www.verifreta.com/api/mcp"
}
}
}Remote endpoints
https://www.verifreta.com/api/mcpstreamable-httpWhat it can do
Tool inventory
Tools (4)
🟢get_quota
Remaining free MCP lookups for this client (IP or signed-in account). One shared pool for USDOT, MC/MX/FF, and name search.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "http://json-schema.org/draft-07/schema#"
}⚪lookup_dot(query)
Free USDOT / DOT carrier first look — same FMCSA QCMobile path and census fields as verifreta.com/tools/dot-lookup (legal name, allowed-to-operate, fleet, dockets, cargo, authority). Counts 1 toward the shared 5-lookup MCP trial.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 24,
"description": "USDOT number (digits only, optional \"DOT\" prefix stripped)."
}
},
"required": [
"query"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}⚪lookup_mc(query)
Free MC, MX, or FF docket carrier first look — same path as verifreta.com/tools/mc-number-lookup. Accepts MC-123456 or prefixed docket input. Counts 1 toward the shared 5-lookup MCP trial.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 24,
"description": "Docket number with MC, MX, or FF prefix (e.g. MC-123456)."
}
},
"required": [
"query"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢lookup_name(query)
Free legal or DBA name search — same FMCSA census name endpoint as verifreta.com/tools/carrier-name-search. Returns up to 10 matches to pick from; empty results do not use a credit. Counts 1 toward the shared 5-lookup MCP trial when matches are returned.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 2,
"maxLength": 64,
"description": "Legal or DBA name fragment (at least 2 characters)."
}
},
"required": [
"query"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}Community
Evidence