Borrowing it
Nothing to install: this file belongs to chrischall/artsonia-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/chrischall/artsonia-mcp/main/CLAUDE.mdgit clone --depth 1 https://github.com/chrischall/artsonia-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/instructions/chrischall/artsonia-mcp/claude-md)<a href="https://agentmods.dev/instructions/chrischall/artsonia-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/chrischall/artsonia-mcp/claude-md/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/instructions/chrischall/artsonia-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/chrischall/artsonia-mcp/claude-md.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.04847 | $0.04847 |
| Opus 5 | $0.02423 | $0.02423 |
| Sonnet 5 | $0.00969 | $0.00969 |
| Haiku 4.5 | $0.00485 | $0.00485 |
Grade A, and why
artsonia-mcp CLAUDE.md 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 10d 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 — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
TL;DR
MCP server for Artsonia (artsonia.com — kids' artwork portfolios). Cookie-session archetype: there is no public API, so the server logs into the parent/fan website with a username + password, harvests the resulting HttpOnly session cookie, and scrapes/POSTs the member pages. 15 tools across students, portfolio/artwork, comments, fans, teacher feedback, awards, account profile, image downloads, and a small set of confirm-gated writes.
Two transport modes, selected by ARTSONIA_TRANSPORT:
fetch(default, direct) — Nodefetchagainst the site. The server owns the session:AuthManagerruns the username/password login (POST/members/login.asp), keeps the cookie jar, and re-logs-in once on expiry.fetchproxy(optional, browser-session) — requests ride the user's already-signed-in browser tab via@fetchproxy/server. The browser carries the session, so the server-side login is skipped entirely (usesBrowserSession = true). NoARTSONIA_USERNAME/PASSWORDneeded in this mode.
Auth resolution
src/auth.ts owns the username/password login and the cookie session. It delegates the single-flight login + invalidate/re-login + one-replay-on-expiry to the shared CookieSessionManager from @chrischall/mcp-utils/session, typed over ArtsoniaResponse so the custom transport's response flows through withSession() untouched.
- Env vars:
ARTSONIA_USERNAME+ARTSONIA_PASSWORD(required in direct mode),ARTSONIA_TRANSPORT(fetchdefault |fetchproxy),ARTSONIA_WS_PORT(fetchproxy WebSocket port override; default37149— a shared fleet port, do NOT change),ARTSONIA_INLINE_DOWNLOADS(1/true/yes/on⇒ inline image downloads; unset/false ⇒ disk — see "Download I/O" below),ARTSONIA_SESSION_CACHE(falsedisables the on-disk session cache; default on, direct mode only) andARTSONIA_SESSION_FILE(override the cache path; defaults to$MCP_DATA_DIR/.artsonia-mcp/session-<user>.json, one file PER USER socreateDirectClientcallers do not clobber each other). - Deferred config error: the
clientis a module singleton constructed insrc/client.ts(NOTindex.ts), so the server boots and answers the host's install-timetools/listprobe even with no creds. The missing-creds error is cached as a permanent error (CONFIG_ERROR_MARKER) and only surfaces on the first tool call — every laterensure()rethrows it rather than retrying a login that can never succeed. - Login success marker:
doLogin()POSTsUsername/Password/TargetUrl=/members//Action=loginwithredirect: 'manual'and treats a 301/302 whoseLocationis NOTlogin.asp(plus a non-empty cookie jar) as success. Magic-link-only accounts are unsupported. - Expiry heuristic (
looksUnauthenticated): Artsonia expires by redirecting/rendering back to the login page (NOT a 401). Detected from the final URL, login-page body markers (You need to log in/Parent (or Fan) Login), or a manual 3xxLocationpointing atlogin.asp.
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.
- 10d ago First seen · 162 lines · 4,847 tokens per session scan A f21745216162
artsonia-mcp CLAUDE.md is an instructions file published in the GitHub repository chrischall/artsonia-mcp (0 stars, last pushed today), licensed MIT. It adds 4,847 tokens to every session, about $0.0242 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 instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.