Server data from the Official MCP Registry
Manage a FLUF resale account from an AI agent: inventory, crosslisting and unified orders.
Manage a FLUF resale account from an AI agent: inventory, crosslisting and unified orders.
This MCP server demonstrates solid security practices with proper authentication via environment variables, no dangerous code patterns, and permissions well-matched to its purpose. Minor code quality observations around error handling breadth and hardcoded support inbox ID do not significantly impact the security posture. The codebase is clean, well-structured, and appropriate for the developer tools category. Supply chain analysis found 1 known vulnerability in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
7 files analyzed · 5 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: FLUF_API_TOKEN
Environment variable: FLUF_BASE_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-fluf-mcp": {
"env": {
"FLUF_BASE_URL": "your-fluf-base-url-here",
"FLUF_API_TOKEN": "your-fluf-api-token-here"
},
"args": [
"-y",
"fluf-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol server that lets an AI agent (Claude, Cursor, Windsurf, Cline, and anything else that speaks MCP) work a FLUF Connect account: read inventory, list items across marketplaces, read orders, and raise a support ticket.
One account, one token, every marketplace you've connected — the agent never has to learn a per-marketplace API, and never handles your marketplace credentials.
| Tool | What it does |
|---|---|
list_channels | Which marketplaces this account has connected, and which it can list to. |
list_products | Your products, with the channels each one is already live on. |
crosslist | List one or more products on one or more marketplaces. |
get_orders | Your orders across every connected marketplace, in one shape. |
report_bug | Raise a bug with FLUF support on your behalf. |
npm install -g fluf-mcp
Create a token at https://fluf.io/connect/settings/?section=developer. It's shown once — store it like a password. Revoke it there any time.
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"fluf": {
"command": "npx",
"args": ["-y", "fluf-mcp"],
"env": { "FLUF_API_TOKEN": "fluf_pat_..." }
}
}
}
claude mcp add fluf --env FLUF_API_TOKEN=fluf_pat_... -- npx -y fluf-mcp
~/.cursor/mcp.json (or a per-project .cursor/mcp.json):
{
"mcpServers": {
"fluf": {
"command": "npx",
"args": ["-y", "fluf-mcp"],
"env": { "FLUF_API_TOKEN": "fluf_pat_..." }
}
}
}
| Var | Required | Default | Notes |
|---|---|---|---|
FLUF_API_TOKEN | yes | — | Your personal access token. |
FLUF_BASE_URL | no | https://fluf.io | Override for staging. |
Ask in plain language — the agent picks the tools:
"What have I got in stock that isn't on eBay yet? List the ten cheapest."
"Show me everything that sold last week and which channel it sold on."
Two things worth knowing:
list_channels first. The available marketplaces differ per
account and change over time; don't hardcode a list.crosslist is not always instant. Some channels are handed to your own
browser session to complete, so the response may say queued rather than
listed. Read the per-channel status; don't assume success.npm install
npm run build
FLUF_API_TOKEN=... node dist/index.js
Smoke-test without an MCP client:
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' \
| FLUF_API_TOKEN=... node dist/index.js
Proprietary — © FLUF.io. Requires a FLUF Connect account on an active plan.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.