Borrowing it
Nothing to install: this file belongs to chrischall/evite-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/evite-mcp/main/CLAUDE.mdgit clone --depth 1 https://github.com/chrischall/evite-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/evite-mcp/claude-md)<a href="https://agentmods.dev/instructions/chrischall/evite-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/chrischall/evite-mcp/claude-md.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.03426 | $0.03426 |
| Opus 5 | $0.01713 | $0.01713 |
| Sonnet 5 | $0.00685 | $0.00685 |
| Haiku 4.5 | $0.00343 | $0.00343 |
Grade A, and why
evite-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 yesterday.
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 — 144 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 Evite event management — talks to evite.com's internal /services/ (and /ajax/, /tsunami/) API using the session cookies a signed-in browser holds (Evite has no public API). Cookie-session archetype.
6 read tools + 13 confirm-gated write tools (plus evite_healthcheck). Writes default to a dry-run preview and only mutate on confirm: true.
Three auth tiers, in priority order:
EVITE_EMAIL+EVITE_PASSWORD— headless form login (POST/ajax_login). Preferred / documented default.EVITE_SESSION_COOKIE— a rawcookie:header pasted from a signed-in evite.com tab (or set in CI). Used verbatim.- fetchproxy bootstrap — lifts the session out of the user's already-signed-in evite.com browser tab via a one-shot WebSocket bridge.
Auth resolution
src/auth.ts — resolveSession(): the three-path priority resolver (Pattern A, "browser-bootstrap + Node-direct"). It produces a ResolvedSession = { cookieHeader, csrfToken? }:
- Tier-1 (preferred): if both
EVITE_EMAILandEVITE_PASSWORDare set →loginWithPassword()(src/auth-login.ts). One env var alone falls through. - Tier-2:
EVITE_SESSION_COOKIE→ returned verbatim ascookieHeader(no CSRF token surfaced). - Tier-3 (fallback):
@fetchproxy/bootstrapopens a bridge to the signed-in tab, reads the declared cookies (x-evite-session,evtsession,x-evite-features,csrftoken— the declared key list is the security boundary), builds the cookie header in declaration order, and surfacescsrftokenas the CSRF token. Opt out withEVITE_DISABLE_FETCHPROXY=1. - Nothing resolves →
SessionNotAuthenticatedErrorwith a hint naming the env-var escape hatches.
src/auth-login.ts — loginWithPassword(): tier-1 form login. Evite's /ajax_login is Django CSRF-protected, so a real login is two requests: (1) a priming GET https://www.evite.com/ to obtain the csrftoken (+ anonymous) cookies, then (2) POST /ajax_login JSON { email, password } carrying the full priming jar back, the X-CSRFToken header, and an Origin/Referer. The login response's Set-Cookie (read via getSetCookie(), with a joined-header fallback) yields the authenticated jar. The password is never echoed in errors. fetchImpl is injectable for tests.
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.
- yesterday Changed · +2 lines · +315 tokens per session 78dbbfd70a4d
- 6d ago First seen · 142 lines · 3,111 tokens per session scan A 84651659e6e8
evite-mcp CLAUDE.md is an instructions file published in the GitHub repository chrischall/evite-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 3,426 tokens to every session, about $0.0171 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).
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.
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.