fsastore-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., "@fsastore-mcpSearch fsastore for sunscreen and add the cheapest one to my cart."
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.
fsastore-mcp
An MCP server that lets an AI agent (Claude or Codex) search FSA‑eligible products on fsastore.com and add them to your shopping cart, then place the order only when you explicitly confirm the total.
Runs with one
uvxcommand — no clone, no manual install.No password is ever stored. You paste a short‑lived access token from your browser via a one‑click bookmarklet.
Search → cart is verified against the live store API.
1. Add it to your agent
You need uv installed (brew install uv). uvx
then builds and runs the server straight from the repo.
This repo is private, so
uvxclones it with your Git credentials. Rungh auth login(or have SSH set up) first. If you use SSH, swap the URL forgit+ssh://git@github.com/darrengruber/fsastore-mcp.
Claude Code (CLI)
claude mcp add fsastore -- \
uvx --from git+https://github.com/darrengruber/fsastore-mcp fsastore-mcpClaude Desktop
Add to claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"fsastore": {
"command": "uvx",
"args": ["--from", "git+https://github.com/darrengruber/fsastore-mcp", "fsastore-mcp"]
}
}
}OpenAI Codex CLI
Add to ~/.codex/config.toml:
[mcp_servers.fsastore]
command = "uvx"
args = ["--from", "git+https://github.com/darrengruber/fsastore-mcp", "fsastore-mcp"]Restart the agent after editing config. To grab the latest code later, add
--refresh to the uvx args (e.g. ["--refresh", "--from", "git+...", "fsastore-mcp"]).
Related MCP server: Instacart MCP Server
2. Install the token bookmarklet (one minute, one time)
The store sits behind bot protection, so the server can't log in for you. Instead you hand it a fresh token with one click. Set this up once:
Copy this entire line (it starts with
javascript:):javascript:(function(){var m=document.cookie.match(/scapi_access_token=([^;]+)/);if(!m){alert('No token yet — open your Cart once, then click again.');return;}var t=decodeURIComponent(m[1]);navigator.clipboard.writeText(t).then(function(){alert('FSA token copied ('+t.length+' chars). Paste it to your agent.');},function(){window.prompt('Copy this token:',t);});})();Create a bookmark and paste that line as its URL:
Chrome / Edge: ⭐ in the address bar → Edit → set Name to
FSA tokenand replace the URL with the copied line → Save. (Or: menu → Bookmarks → Bookmark Manager → ⋮ → Add new bookmark.)Firefox: Bookmarks menu → Manage Bookmarks → right‑click a folder → Add Bookmark → Name
FSA token, Location = the copied line.Safari: add any bookmark, then Edit Bookmarks and paste the line as its address.
That's it — you now have an FSA token button.
3. Use it
Log in at https://www.fsastore.com in your browser.
Click your FSA token bookmark. It copies a token to your clipboard. (If it says "No token yet", open your Cart page once and click again.)
In Claude/Codex, tell the agent to set the access token, and paste it:
Use
set_access_tokenwith:eyJ...(your copied token)Now just ask, e.g.:
Search fsastore for sunscreen and add two of the cheapest eligible one to my cart.
When the token expires (~30 min), any tool replies login_required — just click
the bookmark and set_access_token again.
Tip: ask the agent to run
auth_status. It reports whether your token is for your account or a Guest session. If it says Guest, log in first, then re‑run the bookmark — otherwise you'll be editing a guest cart.
Tools the agent can call
Tool | Purpose |
| Cache a token copied by the bookmarklet |
| Whether a valid token is cached, who it's for, time left |
| Search; FSA‑eligible only by default, each tier‑labeled |
| Add a product (master products auto‑resolve to a buyable variant) |
| Show cart contents and total |
| Show the total to confirm |
| Place the order — only if the live total matches the one you pass |
The server never places an order except through confirm_order with a matching
total.
Run it directly (optional)
# from a clone
uvx --from . fsastore-mcp
# or
uv run fsastore-mcpRun as an HTTP server / container (optional)
For local use the stdio transport above is all you need. To run it persistently
behind an MCP gateway, set FSASTORE_MCP_TRANSPORT=http (host/port via
FSASTORE_MCP_HOST / FSASTORE_MCP_PORT). A Dockerfile is included:
docker build -t fsastore-mcp .
docker run --rm -p 9130:9130 -v fsastore-state:/state fsastore-mcpState (the cached token, active basket id) lives in the process, so serve HTTP
with a single replica. The token is written under XDG_STATE_HOME
(/state in the image) — mount a writable volume there.
Develop
uv sync
uv run pytest # tests
uv run ruff check . # lint
uv run ty check src # typesDesign notes and decisions: CONTEXT.md and docs/adr/.
Status
Verified against the live store API: product search + FSA‑eligibility, cart reuse,
master→variant resolution, add‑to‑cart. Checkout submission (confirm_order)
is wired and gated but not yet exercised end‑to‑end — a saved shipping/payment
method may need to be applied to the cart first. The Confirm Gate prevents
accidental orders regardless.
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
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/darrengruber/fsastore-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server