easytable-fpx

easytable-fpx is a skill for Claude Code from chrischall/easytable-mcp. It costs 103 tokens per session (1,222 once invoked), scanned A, original, MIT.

A command-line helper for easyTable restaurant bookings that sends requests through an already signed-in browser tab.

In plain words
What is it for?
It lists booking areas, dates, and times, looks up bookings by phone number, and cancels bookings using a restaurant's widget ID.
Why use it?
It works around easyTable's browser security check, which can reject ordinary command-line requests.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the easytable-mcp plugin — 2 skills, 2 MCP servers shipped together

Good fit It lists booking areas, dates, and times, looks up bookings by phone number, and cancels bookings using a restaurant's widget ID.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chrischall/easytable-mcp/easytable-fpx
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add chrischall/easytable-mcp --skill easytable-fpx
Clone the repo
git clone --depth 1 https://github.com/chrischall/easytable-mcp

Made for: Claude Code.

Or install easytable-mcp, the plugin that ships this one along with the rest of its 2 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for easytable-fpx

README.md
[![agentmods](https://agentmods.dev/badge/skills/chrischall/easytable-mcp/easytable-fpx/github.svg)](https://agentmods.dev/skills/chrischall/easytable-mcp/easytable-fpx)
Your own site
<a href="https://agentmods.dev/skills/chrischall/easytable-mcp/easytable-fpx"><img src="https://agentmods.dev/badge/skills/chrischall/easytable-mcp/easytable-fpx/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for easytable-fpx

Your own site · 80×15
<a href="https://agentmods.dev/skills/chrischall/easytable-mcp/easytable-fpx"><img src="https://agentmods.dev/badge/skills/chrischall/easytable-mcp/easytable-fpx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,222 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00103 $0.01222
Opus 5 $0.00051 $0.00611
Sonnet 5 $0.00021 $0.00244
Haiku 4.5 $0.00010 $0.00122

Measured 8d ago against content hash dc7b83fe822e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

easytable-fpx scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

— with a Cloudflare check that 403s any plain `curl`/Node request. `fpx`
skills/easytable-fpx/SKILL.md · 107 lines

How it starts

The opening of the file, as written. The whole thing — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.

easyTable via fpx (no MCP)

easyTable fronts every book.easytable.com endpoint — reads and writes alike — with a Cloudflare check that 403s any plain curl/Node request. fpx routes the request through the user's own signed-in browser tab (the Transporter extension), which has already cleared the challenge, so the same requests succeed. There's no easyTable login: a restaurant is identified only by its id (a.k.a. place) from its widget URL https://book.easytable.com/book/?id=<placeId>.

This is the same data/actions the easytable_* MCP tools use, reached with one-shot CLI calls instead of a running server.

One-time setup

npm install -g @fetchproxy/cli               # provides `fpx`
fpx profile add easytable --domain easytable.com
fpx pair -p easytable                        # prints a pair code → approve in Transporter

Requirements: the Transporter extension installed, with an open https://book.easytable.com/book/?id=<placeId> tab left to finish loading (its Turnstile check solves itself), and Chrome Site access allowing easytable.com. Pairing persists after the first approval.

Core call

Reads are GET requests that return HTML fragments (not JSON) — the widget loads them into a container div. Send the X-Requested-With header the widget sends, and pipe the fragment to grep/sed rather than jq:

fpx get 'https://book.easytable.com/book/ajax/types.asp?id=1fdfc&lang=en' \
  -p easytable -H 'X-Requested-With: XMLHttpRequest'

Ready-to-run URLs + extraction recipes for every read, plus the cancel write and the create/modify payload shape, are in references/easytable-requests.md. Exhaustive parsing lives in the repo at src/parse.ts / docs/EASYTABLE-API.md — the recipes here are compact greps against the same markup those parsers target.

The one rule: resolve the type first

Dates and times are scoped to a booking area. Always list types first, take the type id, then feed it to dates/times:

fpx get 'https://book.easytable.com/book/ajax/types.asp?id=1fdfc&lang=en' \
  -p easytable -H 'X-Requested-With: XMLHttpRequest' \
  | grep -oE '<a[^>]*type=[0-9]+[^>]*>[^<]*</a>'
# <a href="#type=13991">Boka Inne</a>

Read the full file on GitHub · 107 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 107 lines · 103 tokens per session scan A dc7b83fe822e

Subscribe to this mod's changes

easytable-fpx is a skill published in the GitHub repository chrischall/easytable-mcp (0 stars, last pushed today), licensed MIT. It adds 103 tokens to every session and 1,222 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

opik-diagnose

Surface the Opik traces worth a developer's attention, ranked by signal — Diagnostics issues first, then errors, failed tool calls, latency, regressions, and low online-eval scores. With the Opik MCP connected it lists the project's agentinsightsissue entities, then fills the gaps with list (filters, sort, a time…

comet-ml/opik-mcp · 174 tokens

client-scripts

Write ServiceNow client scripts (onLoad/onChange/onSubmit/onCellEdit) using gform, guser, GlideAjax, field visibility/mandatory toggles, and validation with debounced server calls.

serac-labs/serac · 45 tokens

agoragentic-transaction-assurance

Prepare, evaluate, and reconcile autonomous agent transactions without self-granting payment or owner authority. Use when an agent must bind principal authority, seller terms, payment evidence, execution, delivered outcome, and reconciliation; handle paid retries safely; or prepare an authority request for owner…

rhein1/agoragentic-integrations · 65 tokens

agreement-setup

Set up a bKash tokenized agreement for repeat charges and check its status.

theYahia/WWmcp · 20 tokens

planfix-api

A Planfix CRM integration for managing tasks and contacts. A CRM is a system for organizing customer and business relationships.

theYahia/WWmcp · 16 tokens

maya-shot-export

Pipeline stage — shot-level export: frame ranges, cameras, FBX / Alembic packaging for editorial. Use when packaging shot data for downstream departments. Not for full pipeline publish (maya-pipeline) or scene assembly (maya-scene-assembly).

dcc-mcp/dcc-mcp-maya · 60 tokens