Borrowing it
Nothing to install: this file belongs to vivekellappan-biit/tamil-bible-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/vivekellappan-biit/tamil-bible-mcp/main/CLAUDE.mdgit clone --depth 1 https://github.com/vivekellappan-biit/tamil-bible-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/vivekellappan-biit/tamil-bible-mcp/claude-md)<a href="https://agentmods.dev/instructions/vivekellappan-biit/tamil-bible-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/vivekellappan-biit/tamil-bible-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/vivekellappan-biit/tamil-bible-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/vivekellappan-biit/tamil-bible-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.01022 | $0.01022 |
| Opus 5 | $0.00511 | $0.00511 |
| Sonnet 5 | $0.00204 | $0.00204 |
| Haiku 4.5 | $0.00102 | $0.00102 |
Grade A, and why
tamil-bible-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 11d 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 — 35 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.
What this is
An MCP (Model Context Protocol) stdio server exposing the Tamil Roman Catholic Bible (and related daily-devotional content) as tools, backed by a Supabase Postgres database. Single file implementation: src/index.ts.
Commands
npm run build # tsc compile to dist/ + copy src/books.json -> dist/books.json
npm run dev # tsc --watch
npm start # node dist/index.js (runs the compiled server)
There is no test suite or linter configured. After editing src/index.ts, run npm run build to verify it type-checks (project uses strict: true) — this is the only available correctness check.
The server is invoked as an MCP stdio server, not run directly for manual testing; .mcp.json registers it as tamil-bible pointing at dist/index.js. To exercise a tool end-to-end, build first, then connect an MCP client (e.g. Claude Desktop/Code with .mcp.json) to the stdio process.
Configuration
Requires SUPABASE_URL and SUPABASE_SERVICE_KEY (see .env.example). src/index.ts hand-parses ../.env relative to the built dist/index.js at startup (no dotenv dependency) and falls back to real environment variables if the file is missing. The server exits immediately if either var is unset.
Architecture
- Book metadata (
src/books.json, copied verbatim todist/on build) is static, in-memory data for all 75 books: numbers"01"–"75"as zero-padded strings, English/Tamil names, chapter counts, and an HTML introduction blurb. It is loaded once at startup into aBOOKSmap keyed by the zero-padded book number string. Book numbers 1–48 are Old Testament, 49+ are New Testament (see thetestamentfield logic inlist_books). - Verse data lives only in Supabase, in a
bibletable with three flat columns:field1(an 8-digit verse code),field2(verse text),field3(row type,"V"for actual verses vs. other annotation rows). There is no.env-independent local copy of verse text — all verse/chapter/search tools require live Supabase access. - Verse code scheme:
field1isBBCCCVVV— 2-digit book number + 3-digit chapter + 3-digit verse, all zero-padded (seebookIdToCode/parseVerseCode/bookChapterPrefix/bookPrefix). Chapter/whole-book queries useLIKE 'prefix%'on this same string column rather than separate indexed columns, so any change to the code width/format must stay consistent across all four helper functions. - Other Supabase tables used by individual tools, each with its own schema (not modeled as TS interfaces, just passed through as raw JSON):
daily_verses,mass_readings,daily_saints,bible_promise_box,daily_quiz. - Tool response convention: every tool returns
{ content: [{ type: "text", text: JSON.stringify(...) }] }, withisError: trueadded for not-found/error cases instead of throwing. Follow this shape for any new tool. formatVerseRowis the shared shape for anything returning verse data (get_verse,get_chapter,search_verses): it decodesfield1back into book/chapter/verse and enriches with both English and Tamil book names/references via theBOOKSmap.- Date format is inconsistent across tools —
get_daily_verse'sdateparam and thedaily_versestable useDD-MM-YYYY(seetodayDateDDMMYYYY), whileget_mass_readings,get_daily_saint, andget_daily_quizall useYYYY-MM-DD(seetodayDate) matching their respective tables'datecolumns. Match the existing convention for whichever table you're touching; don't unify them without a migration. - DB setup path (separate from the runtime code in
src/index.ts):supabase/schema.sqlcreates the tables,scripts/seed.mjsloads the bundleddata/*.jsondumps into them.data/bible.json(raw verse rows) is the seed source for thebibletable and is distinct fromsrc/books.json(static book metadata, loaded directly by the server at runtime).
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.
- 11d ago First seen · 35 lines · 1,022 tokens per session scan A d46a296b8b84
tamil-bible-mcp CLAUDE.md is an instructions file published in the GitHub repository vivekellappan-biit/tamil-bible-mcp (0 stars, last pushed 2mo ago), licensed MIT. It adds 1,022 tokens to every session, about $0.0051 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
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.
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).
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.
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).