Fill-Rite MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Fill-Rite MCPshow my current fuel tank levels"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Fill-Rite MCP
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.
Related MCP server: OHIP MCP Server
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
Navigate to the directory you want to run the MCP in and clone the repo:
git clone https://github.com/ribeck18/fill-rite-mcp.gitRegister the MCP with Claude Code:
claude mcp add fillrite -- uv run --directory {path_to_repo} main.pyIn 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.
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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/ribeck18/fill-rite-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server