nexusfeed-mcp
nexusfeed-mcp provides real-time LTL freight fuel surcharge data and US state ABC liquor license compliance records to AI agents via the Model Context Protocol.
LTL Freight Tools:
ltl_get_fuel_surcharge— Current weekly fuel surcharge percentages for major carriers (ODFL, Saia, Estes, ABF, R+L, TForce, XPO, SEFL, Averitt), including the DOE diesel price that triggered each rate and up to 5 years of historyltl_list_carriers— Metadata for all supported LTL carriers: SCAC codes, available data products, update schedules, and extraction methodsltl_get_accessorials(coming soon) — Accessorial fee schedules (liftgate, residential delivery, re-delivery, etc.) — not yet available
ABC Liquor License Tools:
abc_search_licenses— Search CA, TX, NY, and FL ABC license databases by trade name, owner name, or address; returns license type, status (ACTIVE/SUSPENDED/EXPIRED/REVOKED), expiration date, and suspension historyabc_lookup_license— Point-in-time lookup of a specific license by state-issued license numberabc_list_states— State coverage metadata: agency name, data freshness SLA, extraction method, and CAPTCHA requirements
Key Features:
Every response includes a
_verifiabilityblock with extraction timestamp, confidence score, source URL, and freshness TTL for data quality assessmentExtracts data from JS-rendered pages, PDFs, and CAPTCHA-protected portals inaccessible to raw LLM browsing
Built-in workflow prompts:
freight_audit_workflowfor LTL invoice auditing andlicense_compliance_checkfor multi-state compliance verificationResponse times <500ms for cached data; freemium access with 10 requests/day free tier
Provides API access via RapidAPI subscriptions for LTL fuel surcharge and ABC license compliance data, enabling integration with external systems through RapidAPI marketplace listings.
nexusfeed-mcp
Real-time LTL freight fuel surcharge rates and US state ABC liquor license compliance records — served as normalized, verifiable JSON for AI agents via the Model Context Protocol.
Data is extracted from carrier tariff pages and state ABC portals (JS-rendered, CAPTCHAs, session state) that are structurally inaccessible to raw LLM browsing. Every response includes a _verifiability block — extraction timestamp, confidence score, and source URL — so agents can assess data quality before acting.
Tools
Tool | Description |
| Weekly fuel surcharge % for ODFL, Saia, Estes, ABF, R+L, TForce, XPO, SEFL, Averitt — DOE diesel price and up to 5 years of history |
| Carrier coverage metadata (SCAC codes, update schedule, extraction method) |
| Search CA, TX, NY, FL license databases by trade name, owner, or address |
| Point-in-time license status by state-issued license number |
| State coverage, latency, and CAPTCHA requirements |
Related MCP server: us-legal-mcp
Workflow Prompts
Prompt | Description |
| Multi-step LTL invoice audit against published carrier tariffs |
| Compliance verification before distributor orders, insurance binding, or merchant onboarding |
Get API Access
Subscribe via RapidAPI to receive your X-API-Key. Freemium plans available (10 req/day free).
Product | RapidAPI Listing |
LTL Fuel Surcharge | |
ABC License Compliance |
Install
pip install nexusfeed-mcp
# or with uv/uvx (no install needed):
uvx nexusfeed-mcpConfigure
export MCP_API_BASE_URL=https://api.nexusfeed.dev
export MCP_API_KEY=sk_live_your_key_hereRun (stdio)
# LTL tools only — 3 tools, 1 prompt
nexusfeed-ltl
# ABC tools only — 3 tools, 1 prompt
nexusfeed-abc
# All tools — 5 tools, 2 prompts
nexusfeed-mcpClaude Desktop Configuration
LTL fuel surcharge only:
{
"mcpServers": {
"nexusfeed-ltl": {
"command": "uvx",
"args": ["--from", "nexusfeed-mcp", "nexusfeed-ltl"],
"env": {
"MCP_API_BASE_URL": "https://api.nexusfeed.dev",
"MCP_API_KEY": "sk_live_your_key_here"
}
}
}
}ABC license compliance only:
{
"mcpServers": {
"nexusfeed-abc": {
"command": "uvx",
"args": ["--from", "nexusfeed-mcp", "nexusfeed-abc"],
"env": {
"MCP_API_BASE_URL": "https://api.nexusfeed.dev",
"MCP_API_KEY": "sk_live_your_key_here"
}
}
}
}All tools:
{
"mcpServers": {
"nexusfeed-mcp": {
"command": "uvx",
"args": ["nexusfeed-mcp"],
"env": {
"MCP_API_BASE_URL": "https://api.nexusfeed.dev",
"MCP_API_KEY": "sk_live_your_key_here"
}
}
}
}Cline (VS Code) Configuration
Open Cline settings → MCP Servers → Add Server manually:
LTL only:
{
"nexusfeed-ltl": {
"command": "uvx",
"args": ["--from", "nexusfeed-mcp", "nexusfeed-ltl"],
"env": {
"MCP_API_BASE_URL": "https://api.nexusfeed.dev",
"MCP_API_KEY": "sk_live_your_key_here"
}
}
}ABC only:
{
"nexusfeed-abc": {
"command": "uvx",
"args": ["--from", "nexusfeed-mcp", "nexusfeed-abc"],
"env": {
"MCP_API_BASE_URL": "https://api.nexusfeed.dev",
"MCP_API_KEY": "sk_live_your_key_here"
}
}
}Streamable HTTP (Smithery / remote clients)
Server | URL |
LTL tools |
|
ABC tools |
|
Pass your X-API-Key header on every request. Server metadata (no auth):
https://api.nexusfeed.dev/.well-known/mcp/server-card-ltl.json
https://api.nexusfeed.dev/.well-known/mcp/server-card-abc.jsonVerifiability
Every tool response includes:
"_verifiability": {
"source_timestamp": "2026-04-05T09:00:00Z",
"extraction_confidence": 0.97,
"raw_data_evidence_url": "https://odfl.com/...",
"extraction_method": "api_mirror",
"data_freshness_ttl_seconds": 604800
}extraction_confidence >= 0.90is required before using data in compliance-critical decisionssource_timestampwithindata_freshness_ttl_secondsmeans data is fresh from cacheraw_data_evidence_urlis the canonical source — agents can independently verify
Example Usage
Audit an LTL freight invoice:
Use the freight_audit_workflow prompt with carrier="ODFL", invoice_date="2026-04-01",
invoiced_fuel_surcharge_pct="23.5" to check whether the billed rate matches the
published tariff.Verify a liquor license before a distributor transaction:
Use abc_search_licenses with state="CA" and trade_name="Total Wine" to check
current license status, then abc_lookup_license for the full record with suspension history.Troubleshooting
Symptom | Fix |
401 on every call |
|
"Could not reach API server" |
|
TX endpoints return 503 | TX TABC requires 2Captcha configured server-side; use CA, NY, or FL instead |
| Data quality degraded — verify independently via |
License
Client code (this repository): MIT. See LICENSE.
NexusFeed backend service (https://api.nexusfeed.dev): commercial. The MIT license above covers only the Python client wrapper in this repo. It does not grant rights to the data service, which requires a paid API key and is governed by a separate Terms of Service. Contact ops@nexusfeed.dev for enterprise SLA and licensing.
Maintenance
Related MCP Servers
- AlicenseBqualityCmaintenanceAn MCP server using the AviationStack API to fetch real-time flight data, including airline flights, airport schedules, future flights and aircraft types.Last updated1224MIT
- Alicense-qualityFmaintenanceAn MCP server that provides comprehensive US legislation.Last updated2334MIT
- AlicenseBqualityCmaintenanceQuery 20 structured datasets from AI agents — healthcare providers (9M NPI records), SEC EDGAR filings, PACER federal courts, USPTO patents and trademarks, OFAC sanctions screening, crypto whale wallets, DeFi liquidation signals, Polymarket smart money, economic indicators (FRED/BLS), federal contracts, NOAA weather, and OTC shell risk scoring. Pay per query, no subscriptionsLast updated751MIT
- AlicenseAqualityAmaintenanceAI agent access to 11 freight calculation and reference tools — LDM, CBM, chargeable weight, pallet fitting, ADR dangerous goods (2,939 entries), airline codes (6,352), HS codes (6,940), INCOTERMS, container specs, unit converter, and ADR 1.1.3.6 exemption calculator.Last updated2244404MIT
Related MCP Connectors
US public-records intelligence for AI agents — companies, SEC, courts, spending, licenses.
Neutral freight reference + validation layer for AI agents: ADR, HS, UN/LOCODE, freight math
Multi-carrier shipping for AI agents: compare rates, buy labels, track packages, validate addresses
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NexusFeed/nexusfeed-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server