baselinker

baselinker is a skill for Claude Code, Codex from konradbachowski/baselinker-mcp. It costs 97 tokens per session (858 once invoked), scanned A, original, MIT.

A connection between an agent and BaseLinker, an e-commerce management service for orders, products, stock, shipping, invoices, returns, and customers.

In plain words
What is it for?
Reading or updating orders, inventory, prices, courier labels, invoices, receipts, returns, customer records, and external storage data.
Why use it?
It avoids having to handle BaseLinker’s large API directly by providing one command-line way to discover and call its operations.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Reading or updating orders, inventory, prices, courier labels, invoices, receipts, returns, customer…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/konradbachowski/baselinker-mcp/skill
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 konradbachowski/baselinker-mcp --skill skill
Clone the repo
git clone --depth 1 https://github.com/konradbachowski/baselinker-mcp

Made for: Claude Code, Codex.

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 baselinker

README.md
[![agentmods](https://agentmods.dev/badge/skills/konradbachowski/baselinker-mcp/skill.svg)](https://agentmods.dev/skills/konradbachowski/baselinker-mcp/skill)
Your own site
<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>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 858 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00097 $0.00858
Opus 5 $0.00048 $0.00429
Sonnet 5 $0.00019 $0.00172
Haiku 4.5 $0.00010 $0.00086

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

Security

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.

skill/SKILL.md · 86 lines

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

  1. Discover the method you need:

    baselinker methods              # all methods
    baselinker methods order        # filter by name or category substring
    baselinker methods inventory
    baselinker methods courier
    

    Each row is: methodName Category description.

  2. Call it with JSON params:

    baselinker call <method> --params '<json>'
    

    Output is the raw JSON response. On API errors the CLI prints [ERROR_CODE] message and 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}'

Read the full file on GitHub · 86 lines

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. 6d ago First seen · 86 lines · 97 tokens per session scan A 220f52898003

Subscribe to this mod's changes

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.

Related

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…

mnlt/teleport · 84 tokens

purchasing

Create approved purchase orders with the create-purchase-order tool.

mcp-use/mcp-use · 15 tokens

refunds

Check refund eligibility and use the refund-order tool safely.

mcp-use/mcp-use · 13 tokens

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.

hmmhmmhm/daiso-mcp · 135 tokens

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…

cyberchitta/llm-context.py · 90 tokens

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…

ItamarZand88/CLI-Anything-WEB · 71 tokens