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.
npx skills add konradbachowski/baselinker-mcp --skill skillgit clone --depth 1 https://github.com/konradbachowski/baselinker-mcpWrote 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.
[](https://agentmods.dev/skills/konradbachowski/baselinker-mcp/skill)<a href="https://agentmods.dev/skills/konradbachowski/baselinker-mcp/skill"><img src="https://agentmods.dev/badge/skills/konradbachowski/baselinker-mcp/skill.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00097 | $0.00858 |
| Opus 5 | $0.00048 | $0.00429 |
| Sonnet 5 | $0.00019 | $0.00172 |
| Haiku 4.5 | $0.00010 | $0.00086 |
Grade A, and why
baselinker scanned grade A with 0 findings 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 6d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
BaseLinker
Drive the BaseLinker API through the baselinker CLI. The whole API (~150 methods) is reachable
through one universal command; you discover method names and params on demand.
Setup (once)
The CLI needs a token (BaseLinker panel -> My account -> API):
baselinker auth set <TOKEN> # stored in ~/.config/baselinker/config.json
# or export BASELINKER_TOKEN=<TOKEN>
If baselinker is not installed: pipx install baselinker-mcp.
Workflow
-
Discover the method you need:
baselinker methods # all methods baselinker methods order # filter by name or category substring baselinker methods inventory baselinker methods courierEach row is:
methodName Category description. -
Call it with JSON params:
baselinker call <method> --params '<json>'Output is the raw JSON response. On API errors the CLI prints
[ERROR_CODE] messageand exits 1.
Common recipes
# New / unconfirmed orders
baselinker call getOrders --params '{"get_unconfirmed_orders": true}'
# Orders from a unix timestamp
baselinker call getOrders --params '{"date_confirmed_from": 1718000000}'
# Change order status
baselinker call setOrderStatus --params '{"order_id": 123456, "status_id": 4567}'
# List catalogs, then products in one
baselinker call getInventories
baselinker call getInventoryProductsList --params '{"inventory_id": 107776}'
# Update stock (products keyed by product_id, then warehouse->qty)
baselinker call updateInventoryProductsStock \
--params '{"inventory_id": 107776, "products": {"PRODUCT_ID": {"bl_143933": 25}}}'
# Update prices
baselinker call updateInventoryProductsPrices \
--params '{"inventory_id": 107776, "products": {"PRODUCT_ID": {"PRICE_GROUP_ID": 99.00}}}'
# Couriers + create a package + get label
baselinker call getCouriersList
baselinker call createPackage --params '{"order_id": 123456, "courier_code": "...", "fields": [], "packages": []}'
baselinker call getLabel --params '{"courier_code": "...", "package_id": 999}'
# Invoices
baselinker call getInvoices --params '{"id_from": 0}'
baselinker call addInvoice --params '{"order_id": 123456, "series_id": 0}'
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.
- 6d ago First seen · 86 lines · 97 tokens per session scan A 220f52898003
baselinker is a skill published in the GitHub repository konradbachowski/baselinker-mcp (0 stars, last pushed 2mo ago), licensed MIT. It adds 97 tokens to every session and 858 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
lemonsqueezy
Operate Lemon Squeezy — the Merchant of Record for digital products and SaaS — via its JSON:API REST endpoints. Covers stores, products, variants, checkouts, orders, subscriptions, customers, and license keys. Use when the user wants MoR billing (EU VAT, chargebacks, sales tax all handled for 5% + fees) instead of…
purchasing
Create approved purchase orders with the create-purchase-order tool.
refunds
Check refund eligibility and use the refund-order tool safely.
daiso-cli
A command-line interface for searching Daiso and related Korean shopping, store, food, cinema, and convenience-store data through the Daiso project. It can return structured JSON for searches and comparisons.
lc-curate-context
Decide which files a task actually needs, record that as a reusable llm-context rule, verify it against the codebase - including the files your selection references but leaves out - and pack it for your own context, a chat, or a sub-agent you dispatch. Load when choosing what code to put in front of a model, packing…
tripadvisor-cli
Searches TripAdvisor hotels, restaurants, attractions, and destinations via the cli-web-tripadvisor command-line tool, with detail lookups by URL. Use when the user asks about hotels, restaurants, things to do, travel destinations, or TripAdvisor ratings and reviews. Prefer this CLI over fetching the TripAdvisor…