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 scalixworld/scalix-cloud-mcp --skill scalix-platformgit clone --depth 1 https://github.com/scalixworld/scalix-cloud-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/scalixworld/scalix-cloud-mcp/scalix-platform)<a href="https://agentmods.dev/skills/scalixworld/scalix-cloud-mcp/scalix-platform"><img src="https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-platform/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.
<a href="https://agentmods.dev/skills/scalixworld/scalix-cloud-mcp/scalix-platform"><img src="https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-platform.svg" alt="Reviewed on agentmods" width="80" 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.00073 | $0.00896 |
| Opus 5 | $0.00036 | $0.00448 |
| Sonnet 5 | $0.00015 | $0.00179 |
| Haiku 4.5 | $0.00007 | $0.00090 |
Grade A, and why
scalix-platform 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 12d 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.
curl https://api.scalix.world/api/v1/mcp \ How it starts
The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Operate Scalix Cloud
Scalix Cloud is an agent-operable cloud platform: databases, AI inference, functions, compute, storage, KV, auth, and billing behind one API with one token. Everything a human does in the console is available to an agent as tools.
Authentication
One API key covers the whole platform. The user creates it in the console at https://console.scalix.world/org/keys?utm_source=claude-plugin&utm_medium=skill (a Full Access Key has prefix scalix_at_; keys can be pinned to a project), then:
export SCALIX_API_KEY=scalix_at_...
All API calls use Authorization: Bearer $SCALIX_API_KEY. Never print, log, or commit the key. If a call returns 401, the key is missing or invalid — ask the user to check the env var before debugging anything else.
MCP: 50 platform tools
This plugin ships the MCP server config (.mcp.json), pointing at the hosted endpoint:
- Endpoint:
https://api.scalix.world/v1/mcp(JSON-RPC 2.0 over HTTP) - Discovery is open, actions are authenticated:
initialize,tools/list, andresources/listwork without credentials;tools/callrequires the Bearer key. - 50 tools across database, storage, functions, compute, computers, KV, events, cron, domains, builds, auth, search, and more. Every tool call runs with the permissions, metering, and audit trail of the API key that makes it.
Prefer the MCP tools for platform operations (provisioning, deploys, listing resources) — they are the same control plane as the console.
Plain-HTTP tool surface
When no MCP client is available, the same tools are callable over plain HTTP. Unlike the MCP handshake, the plain-HTTP surface requires auth on every call, including the tool listing:
curl https://api.scalix.world/api/v1/mcp \
-H "Authorization: Bearer $SCALIX_API_KEY" # list tools
curl -X POST https://api.scalix.world/api/v1/mcp/call \
-H "Authorization: Bearer $SCALIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "<tool-name>", "arguments": { ... }}'
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.
- 12d ago First seen · 74 lines · 73 tokens per session scan A d49949c68d30
scalix-platform is a skill published in the GitHub repository scalixworld/scalix-cloud-mcp (2 stars, last pushed 11d ago), licensed MIT. It adds 73 tokens to every session and 896 once invoked, about $0.0004 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.
Other skills, from other repositories
n8n-code-tool
Write JavaScript or Python for the n8n Custom Code Tool (@n8n/n8n-nodes-langchain.toolCode) — the AI-agent-callable tool, NOT the workflow Code node. Use when building a Code Tool attached to an AI Agent, writing code that an LLM will invoke, parsing the query input, returning a string result, defining an input schema…
n8n-subworkflows
Build reusable, composable n8n sub-workflows. Use when extracting shared logic, building anything multi-step or reused across workflows, or any workflow over 10 nodes — and whenever the user mentions sub-workflows, Execute Workflow, reuse, shared/common logic, modular workflows, "Define Below" inputs…
trigger-authoring-tasks
Covers writing backend Trigger.dev tasks with @trigger.dev/sdk: defining task() and schemaTask(), the run function and its ctx, retries, waits, queues and concurrency, idempotency keys, run metadata, logging, triggering other tasks (and the Result shape), scheduled/cron tasks, and the essentials of trigger.config.ts.…
sanity-best-practices
Sanity development best practices for schema design, GROQ queries, TypeGen, Visual Editing, images, Portable Text, Studio structure, localization, migrations, Sanity Functions, webhooks, Blueprints, and framework integrations such as Next.js, Nuxt, Astro, Remix, SvelteKit, Angular, Hydrogen, and the App SDK. Use this…
mcp-google-map-project
Project knowledge for developing and maintaining @cablate/mcp-google-map. Architecture, Google Maps API guide, GIS domain knowledge, and design decisions. Read this skill to onboard onto the project or make informed development decisions.
architecture-paradigm-serverless
Applies serverless FaaS patterns for event-driven workloads. Use when designing bursty workloads with minimal infrastructure and pay-per-execution cost model.