Skip to main content
Glama

nexusfeed-mcp

PyPI version Python 3.12+ License: MIT

实时 LTL(零担)货运燃油附加费费率和美国各州 ABC 酒类许可证合规记录——通过模型上下文协议 (MCP) 为 AI 代理提供标准化、可验证的 JSON 数据。

数据提取自承运商费率页面和各州 ABC 门户网站(涉及 JS 渲染、验证码、会话状态),这些页面对于原始 LLM 浏览而言在结构上是不可访问的。每项响应均包含一个 _verifiability 区块——包含提取时间戳、置信度分数和源 URL——以便代理在采取行动前评估数据质量。

工具

工具

描述

ltl_get_fuel_surcharge

ODFL、Saia、Estes、ABF、R+L、TForce、XPO、SEFL、Averitt 的每周燃油附加费百分比——包含 DOE 柴油价格及长达 5 年的历史数据

ltl_list_carriers

承运商覆盖范围元数据(SCAC 代码、更新计划、提取方法)

abc_search_licenses

按商号、所有者或地址搜索加利福尼亚州、得克萨斯州、纽约州、佛罗里达州的许可证数据库

abc_lookup_license

按州颁发的许可证编号查询特定时间点的许可证状态

abc_list_states

州覆盖范围、延迟和验证码要求

Related MCP server: us-legal-mcp

工作流提示词

提示词

描述

freight_audit_workflow

针对已发布承运商费率的多步骤 LTL 发票审计

license_compliance_check

在分销商订单、保险绑定或商户入驻前的合规性验证

获取 API 访问权限

通过 RapidAPI 订阅以获取您的 X-API-Key。提供免费增值计划(每天免费 10 次请求)。

安装

pip install nexusfeed-mcp
# or with uv/uvx (no install needed):
uvx nexusfeed-mcp

配置

export MCP_API_BASE_URL=https://api.nexusfeed.dev
export MCP_API_KEY=sk_live_your_key_here

运行 (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-mcp

Claude Desktop 配置

仅限 LTL 燃油附加费:

{
  "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 许可证合规性:

{
  "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"
      }
    }
  }
}

所有工具:

{
  "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) 配置

打开 Cline 设置 → MCP Servers → 手动添加服务器:

仅限 LTL:

{
  "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:

{
  "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"
    }
  }
}

可流式传输 HTTP (Smithery / 远程客户端)

服务器

URL

LTL 工具

https://api.nexusfeed.dev/mcp-ltl/

ABC 工具

https://api.nexusfeed.dev/mcp-abc/

在每次请求时传递您的 X-API-Key 请求头。服务器元数据(无需身份验证):

https://api.nexusfeed.dev/.well-known/mcp/server-card-ltl.json
https://api.nexusfeed.dev/.well-known/mcp/server-card-abc.json

可验证性

每个工具的响应均包含:

"_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.90

  • source_timestampdata_freshness_ttl_seconds 范围内意味着数据是从缓存中获取的最新数据

  • raw_data_evidence_url 是权威来源——代理可以独立验证

使用示例

审计 LTL 货运发票:

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.

在分销商交易前验证酒类许可证:

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.

故障排除

症状

修复

每次调用均返回 401

MCP_API_KEY 未设置或无效

"Could not reach API server"

MCP_API_BASE_URL 未设置——应为 https://api.nexusfeed.dev

TX 端点返回 503

TX TABC 要求在服务器端配置 2Captcha;请改用 CA、NY 或 FL

extraction_confidence < 0.90

数据质量下降——请通过 raw_data_evidence_url 独立验证

许可证

客户端代码(本仓库):MIT。 请参阅 LICENSE

NexusFeed 后端服务 (https://api.nexusfeed.dev):商业用途。 上述 MIT 许可证仅涵盖本仓库中的 Python 客户端封装。它不授予数据服务的使用权,该服务需要付费 API 密钥,并受单独的服务条款约束。如需企业级 SLA 和许可,请联系 ops@nexusfeed.dev

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - A tier

Latest Blog Posts

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