Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Fill Rite

БесплатноНе проверен

Enables AI agents to interact with a user's Fill-Rite fuel management system, with token refresh handling for continuous access.

GitHubEmbed

Описание

Enables AI agents to interact with a user's Fill-Rite fuel management system, with token refresh handling for continuous access.

README

This project is an MCP to allow agents to interact with a user's Fill-Rite.

Access Tokens

Fill-Rite access tokens go stale in 30 minutes, and refresh tokens go stale in 7 days. You must run the refresh_tokens() function at least once per week (before the 7 days are up!) otherwise you will need to add new tokens to your tokens.json file.

Tokens are checked for staleness at every tool call, and refreshed if needed, so as long as the MCP is used once per week you will be fine.

You could also set up a cron job to refresh your token every 3-4 days, or you could set a scheduled prompt on your AI agent that makes any tool call in this MCP at least once per week.

Setup

I have only tested this on macOS, and these setup steps assume you use macOS. In the future I plan to write an install script that will make setup simple.

Claude Code

  1. Navigate to the directory you want to run the MCP in and clone the repo:
   git clone https://github.com/ribeck18/fill-rite-mcp.git
  1. Register the MCP with Claude Code:
   claude mcp add fillrite -- uv run --directory {path_to_repo} main.py
  1. In the directory you just cloned, make a new file called tokens.json. Paste the following into it, replacing the placeholders with your API tokens from Fill-Rite:
   {
       "access_token": {
           "token": "{your_access_token}",
           "expires_at": ""
       },
       "refresh_token": {
           "token": "{your_refresh_token}"
       }
   }

Make sure your access token starts with "Bearer ". Leave expires_at blank for now.

  1. In the same directory, make a file called .env. Paste the following into it:
   BASE_URL=https://fmsapi.fillrite.com/rest/v1.0/

Your MCP should now function properly in Claude Code.

Claude Desktop

  1. Navigate to the directory you want to run the MCP in and clone the repo:
   git clone https://github.com/ribeck18/fill-rite-mcp.git
  1. In the directory you just cloned, make a new file called tokens.json. Paste the following into it, replacing the placeholders with your API tokens from Fill-Rite:
   {
       "access_token": {
           "token": "{your_access_token}",
           "expires_at": ""
       },
       "refresh_token": {
           "token": "{your_refresh_token}"
       }
   }

Make sure your access token starts with "Bearer ". Leave expires_at blank for now.

  1. In the same directory, make a file called .env. Paste the following into it:
   BASE_URL=https://fmsapi.fillrite.com/rest/v1.0/
  1. Navigate to your claude desktop config file. If it does not exist, create it.
    ~/Library/Application\ Support/Claude/claude_desktop_config.json
  1. Add the following to that file.
    {
        "mcpServers": {
            "Fill-Rite": {
                "command": "{path_to_uv}",
                "args": [
                    "run",
                    "--directory",
                    "{path_to_cloned_repo}",
                    "main.py"
                ]
            }
        }
    }

Your path to uv can be found with which uv.

  1. Restart your Claude Desktop app. After restart the MCP should function.

from github.com/ribeck18/fill-rite-mcp

Установка Fill Rite

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/ribeck18/fill-rite-mcp

FAQ

Fill Rite MCP бесплатный?

Да, Fill Rite MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Fill Rite?

Нет, Fill Rite работает без API-ключей и переменных окружения.

Fill Rite — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Fill Rite в Claude Desktop, Claude Code или Cursor?

Открой Fill Rite на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Fill Rite with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории ai