tamil-bible-mcp: Instructions file for Claude Code

CLAUDE.md

tamil-bible-mcp CLAUDE.md is an instructions file for Claude Code from vivekellappan-biit/tamil-bible-mcp. It costs 1,022 tokens per session, scanned A, original, MIT.

Project instructions for developing a Tamil Bible MCP server, including its commands, configuration, and single-file TypeScript architecture.

In plain words
What is it for?
Use them when editing the repository, building its compiled server, configuring Supabase access, or connecting it to an MCP client for testing.
Why use it?
They tell an agent how to build and run the project and identify the required Supabase database settings and available correctness check.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

This is vivekellappan-biit/tamil-bible-mcp's own configuration. It tells Claude Code how to work on tamil-bible-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything tamil-bible-mcp configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/vivekellappan-biit/tamil-bible-mcp/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/vivekellappan-biit/tamil-bible-mcp

Made for: Claude Code.

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 tamil-bible-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/vivekellappan-biit/tamil-bible-mcp/claude-md/github.svg)](https://agentmods.dev/instructions/vivekellappan-biit/tamil-bible-mcp/claude-md)
Your own site
<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.

agentmods 80×15 button for tamil-bible-mcp CLAUDE.md

Your own site · 80×15
<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>
Per session 1,022 This file is loaded in full into every session.
When invoked 1,022 The same file — it is already loaded in full.
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.01022 $0.01022
Opus 5 $0.00511 $0.00511
Sonnet 5 $0.00204 $0.00204
Haiku 4.5 $0.00102 $0.00102

Measured 11d ago against content hash d46a296b8b84, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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.

CLAUDE.md · 35 lines

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 to dist/ 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 a BOOKS map keyed by the zero-padded book number string. Book numbers 1–48 are Old Testament, 49+ are New Testament (see the testament field logic in list_books).
  • Verse data lives only in Supabase, in a bible table 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: field1 is BBCCCVVV — 2-digit book number + 3-digit chapter + 3-digit verse, all zero-padded (see bookIdToCode/parseVerseCode/bookChapterPrefix/bookPrefix). Chapter/whole-book queries use LIKE '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(...) }] }, with isError: true added for not-found/error cases instead of throwing. Follow this shape for any new tool.
  • formatVerseRow is the shared shape for anything returning verse data (get_verse, get_chapter, search_verses): it decodes field1 back into book/chapter/verse and enriches with both English and Tamil book names/references via the BOOKS map.
  • Date format is inconsistent across toolsget_daily_verse's date param and the daily_verses table use DD-MM-YYYY (see todayDateDDMMYYYY), while get_mass_readings, get_daily_saint, and get_daily_quiz all use YYYY-MM-DD (see todayDate) matching their respective tables' date columns. 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.sql creates the tables, scripts/seed.mjs loads the bundled data/*.json dumps into them. data/bible.json (raw verse rows) is the seed source for the bible table and is distinct from src/books.json (static book metadata, loaded directly by the server at runtime).

Read the full file on GitHub · 35 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. 11d ago First seen · 35 lines · 1,022 tokens per session scan A d46a296b8b84

Subscribe to this mod's changes

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.

Related

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.

github/spec-kit · 7,126 tokens

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.

vercel/next.js · 7,296 tokens

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.

openai/codex · 5,153 tokens

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).

microsoft/vscode · 6,785 tokens

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.

langchain-ai/langchain · 4,469 tokens

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).

microsoft/vscode · 5,001 tokens