tamil-bible-mcp
Provides tools to access the Tamil Bible (verses, chapters, books) and daily devotional content (daily verse, Mass readings, saint of the day, promise box, quiz) stored in a Supabase database.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tamil-bible-mcpGet today's daily verse from the Tamil Bible"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Tamil Bible MCP Server
An MCP (Model Context Protocol) server that exposes the Tamil Roman Catholic Bible — plus daily-devotional content (daily verse, Mass readings, saint of the day, promise-box verses, a daily quiz) — as tools for AI assistants like Claude.
It talks to its client over stdio and to its data store over the network via Supabase (hosted Postgres + REST API). Each user runs their own instance against their own Supabase project — there is no shared public server and no bundled credentials.
Platform support
This server uses the MCP stdio transport, which works with local MCP clients: Claude Desktop, Claude Code, Cursor, Windsurf, and similar tools that spawn a local subprocess. It does not currently support ChatGPT connectors or other platforms that require a remote HTTP/SSE MCP endpoint — that would need a separate hosted deployment and is not implemented here.
Related MCP server: SolaGuard MCP Server
Tools
Tool | Description |
| List all 75 books with numbers, English/Tamil names, and chapter counts |
| Detailed info and introduction for one book |
| Fetch one verse by book/chapter/verse number |
| Fetch every verse in a chapter |
| Keyword search over verse text (Tamil script), optionally scoped to one book |
| The daily verse for a given date (defaults to today) |
| Catholic daily Mass readings — first/second reading, psalm, gospel |
| Saint of the day with a Tamil biography |
| A promise-box verse, random or filtered by category |
| List all promise-box categories |
| The daily quiz question, options, and explanation |
Quick start
1. Set up your own Supabase project
You need a Supabase project (the free tier is enough) with the schema this server expects. This repo includes everything needed to stand one up from scratch:
git clone https://github.com/vivekellappan-biit/tamil-bible-mcp.git
cd tamil-bible-mcp
npm install
cp .env.example .env # then fill in your Supabase project URL + service role keyCreate a project at supabase.com.
In the Supabase SQL editor, run
supabase/schema.sqlto create the tables.Get the project's Service Role key (Project Settings → API) — not the anon/public key — and put it in
.envalong with the project URL.Seed the tables with the bundled Tamil Bible + devotional data:
node scripts/seed.mjsThis loads
data/*.json(≈39k rows: the full Bible text plus daily verses, Mass readings, saints, promise-box entries, and quiz questions) into your project.
The service role key bypasses Row Level Security and has full read/write access to your project — treat it as a secret. Since this server only runs locally over stdio (never over the network), that's a reasonable trust boundary for a personal instance, but don't reuse this key anywhere network-facing.
2. Build
npm run build3. Register with your MCP client
Claude Code — add to .mcp.json in your project (already present in this repo, pointing at the local
build):
{
"mcpServers": {
"tamil-bible": {
"type": "stdio",
"command": "node",
"args": ["dist/index.js"],
"env": {}
}
}
}Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"tamil-bible": {
"command": "node",
"args": ["/absolute/path/to/tamil-bible-mcp/dist/index.js"]
}
}
}Or, once published, run it via npx without cloning:
{
"mcpServers": {
"tamil-bible": {
"command": "npx",
"args": ["-y", "tamil-bible-mcp"],
"env": {
"SUPABASE_URL": "https://your-project.supabase.co",
"SUPABASE_SERVICE_KEY": "your-service-role-key"
}
}
}
}Configuration
Variable | Required | Description |
| Yes | Your Supabase project URL |
| Yes | Your Supabase service role key (bypasses RLS) |
Read from .env at the project root, falling back to real environment variables if .env is absent.
Environment variables you set explicitly always take precedence over .env. The server exits immediately
if either variable is missing.
Development
npm run dev # tsc --watch
npm run build # compile + copy books.json + chmod +x
npm start # node dist/index.jsThere's no test suite or linter configured; tsc --strict is the only automated correctness check. See
CLAUDE.md for a deeper architecture walkthrough (verse addressing scheme, response
conventions, etc.) if you're extending this.
Data & content
The bundled data/*.json files are a full export of the Tamil Roman Catholic Bible translation and
associated devotional content (Mass readings, saint biographies, quiz questions) used by this project.
Redistribution rights for this specific translation and content have been confirmed by the maintainer.
If you plan to redistribute this data further, verify your own rights to do so first.
Contributing
Issues and PRs welcome. Since there's no CI test suite, please make sure npm run build passes cleanly
before submitting, and describe how you tested any behavioral change (this is a stdio MCP server, so
manual testing means driving it through an MCP client or raw JSON-RPC over stdio).
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vivekellappan-biit/tamil-bible-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server