1. Conduid
  2. Commerce
  3. Frisco
MCP server · Commerce

Frisco

CLI & MCP server for Frisco.pl grocery delivery API — browse products, manage cart, place orders, check delivery slots

34Low

Scored 5 months ago · breakdown

About Frisco

Frisco is an MCP server in the Commerce category: cLI & MCP server for Frisco.pl grocery delivery API — browse products, manage cart, place orders, check delivery slots. It has been installed 0 times through Conduid.

Install

Clone
git clone https://github.com/rrudol/frisco

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Frisco

Powered by Claude · Grounded in docs

I know everything about Frisco. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

Frisco CLI

Unofficial CLI & MCP server for the Frisco.pl grocery delivery API.

Disclaimer: This is an independent, community project — not affiliated with Frisco. Use at your own risk.

Features

  • Interactive cart TUI (Bubble Tea)
  • Product search with category filtering and nutrition info
  • Delivery slot reservation
  • Order history
  • Batch cart additions from JSON shopping lists
  • MCP server for AI assistant integration
  • Session management (cURL import, browser login)

Requirements

  • Go 1.26+ (per go.mod)
  • For frisco session login: a locally installed browser supported by chromedp (e.g. Chrome/Chromium)

Installation

go install github.com/rrudol/frisco/cmd/frisco@latest

Local build:

make build
./bin/frisco --help

Quick start

  1. Log in via browser (recommended):
frisco session login
  1. Or save session from a cURL command:
frisco session from-curl --curl "curl 'https://www.frisco.pl/app/commerce/api/v1/users/123/cart' -H 'authorization: Bearer ...' -H 'cookie: ...'"
  1. Verify your session works:
frisco session verify

Commands

frisco cart                    # Interactive TUI (list, +/-, remove, refresh)
frisco cart show
frisco cart add --product-id <id> --quantity 1
frisco cart add-batch --file list.json        # --dry-run for parse-only
frisco products search --search banana
frisco products search --search apple --category-id 18707
frisco products nutrition --product-id 4094
frisco reservation slots --days 2
frisco reservation reserve --date 2026-03-25 --from-time 06:00 --to-time 07:00
frisco reservation cancel
frisco account show
frisco account orders list --all-pages
frisco session login               # Interactive browser login
frisco session refresh-token       # Refresh access token
frisco mcp                         # Start MCP server (stdio)

Batch cart from a shopping list

  1. frisco session verify — make sure your session is valid.
  2. Search for products: frisco products search --search "phrase" — optionally add --category-id to narrow results. Use --format json and pipe to jq to extract product IDs.
  3. Build a JSON file: an array of { "product_id": "…", "quantity": n } objects or {"items":[…]}. Template: examples/cart-add-batch.example.json.
  4. frisco cart add-batch --file list.json — displays a cart summary after adding. Use --dry-run to validate the file without calling the API.

Category IDs

Using --category-id with products search / products pick narrows results and dramatically improves relevance. Full category tree: categories.md.

Output format

By default the CLI outputs human-readable tables. Use --format json for machine-readable output:

frisco account orders list --all-pages
frisco account orders list --all-pages --format json

MCP server — AI assistant integration

frisco mcp starts an MCP server over stdio, exposing cart, products, orders, reservations, and session tools to any compatible AI client.

Claude Desktop

Download the latest .mcpb bundle for your platform from Releases, then in Claude Desktop go to Extensions → Advanced Settings → Install Extensions and select the downloaded file.

Login: Ask Claude to log you in to Frisco (e.g. "zaloguj mnie do Frisco"). A Chrome window will open — log in on frisco.pl and navigate to your cart or account page. The session is captured automatically and saved for future use. Requires Chrome/Chromium.

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "frisco": {
      "command": "frisco",
      "args": ["mcp"]
    }
  }
}

If frisco is not in your PATH, use the absolute path to the binary (e.g. "/Users/you/go/bin/frisco").

Cursor

Install MCP Server

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "frisco": {
      "command": "frisco",
      "args": ["mcp"]
    }
  }
}

Claude Code

claude mcp add frisco -- frisco mcp

Any client supporting stdio transport works:

frisco mcp

The server exposes tools for: product search, cart management, order history, delivery reservation, account info, and session management.

Session data

Session is stored locally at ~/.frisco-cli/session.json.

Security notes:

  • The file may contain tokens and session headers (Authorization, Cookie).
  • Access to this file grants API access in your account's context.
  • Do not run frisco mcp in untrusted or shared environments.

If an access token expires, the CLI will automatically attempt to refresh it. If refresh fails, re-import your session with frisco session from-curl or frisco session login.

Example payloads

License

MIT

README mirrored from the source repository 5 months ago. The original is authoritative.

Questions

About Frisco

How do I install Frisco?

Run git clone https://github.com/rrudol/frisco, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Frisco safe to use with an AI agent?

Its trust score is 34 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Frisco still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.