PluginBench
MCP Server
Maintained
MIT

io.github.NexusFeed/nexusfeed-ltl MCP Server

io.github.NexusFeed/nexusfeed-ltl

What is the io.github.NexusFeed/nexusfeed-ltl MCP server?

Real-time LTL fuel surcharge rates for 10 US carriers with verifiable provenance.

How to install io.github.NexusFeed/nexusfeed-ltl

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • MCP_API_BASE_URL

    NexusFeed API base URL

  • MCP_API_KEY
    required
    secret

    NexusFeed API key. Get one via RapidAPI: rapidapi.com/ladourv/api/ltl-fuel-surcharge-api

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "nexusfeed-ltl": {
      "command": "uvx",
      "args": [
        "nexusfeed-mcp",
        "--from",
        "nexusfeed-mcp",
        "nexusfeed-ltl"
      ],
      "env": {
        "MCP_API_BASE_URL": "<YOUR_MCP_API_BASE_URL>",
        "MCP_API_KEY": "<YOUR_MCP_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "nexusfeed-ltl": {
      "command": "uvx",
      "args": [
        "nexusfeed-mcp",
        "--from",
        "nexusfeed-mcp",
        "nexusfeed-ltl"
      ],
      "env": {
        "MCP_API_BASE_URL": "<YOUR_MCP_API_BASE_URL>",
        "MCP_API_KEY": "<YOUR_MCP_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "nexusfeed-ltl": {
      "command": "uvx",
      "args": [
        "nexusfeed-mcp",
        "--from",
        "nexusfeed-mcp",
        "nexusfeed-ltl"
      ],
      "env": {
        "MCP_API_BASE_URL": "<YOUR_MCP_API_BASE_URL>",
        "MCP_API_KEY": "<YOUR_MCP_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "nexusfeed-ltl": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "nexusfeed-mcp",
        "--from",
        "nexusfeed-mcp",
        "nexusfeed-ltl"
      ],
      "env": {
        "MCP_API_BASE_URL": "<YOUR_MCP_API_BASE_URL>",
        "MCP_API_KEY": "<YOUR_MCP_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add nexusfeed-ltl --env MCP_API_BASE_URL=<YOUR_MCP_API_BASE_URL> --env MCP_API_KEY=<YOUR_MCP_API_KEY> -- uvx nexusfeed-mcp --from nexusfeed-mcp nexusfeed-ltl

Related MCP servers

US liquor license compliance records (CA, TX, NY, FL, IL) with verifiable provenance.

0
Python
MIT
View repository →