get_verse

Pack: bhagavad-gita · Endpoint: https://gateway.pipeworx.io/bhagavad-gita/mcp

Get a single verse (sloka) of the Bhagavad Gita by chapter and verse number. Returns the Sanskrit verse in Devanagari, its transliteration, and English translations from multiple commentators (Sivananda, Purohit, Gambirananda, Adidevananda) plus commentary.

Parameters

NameTypeRequiredDescription
chapternumberyesChapter number, 1-18.
versenumberyesVerse (sloka) number within the chapter.

Example call

Arguments

{
  "chapter": 2,
  "verse": 47
}

curl

curl -X POST https://gateway.pipeworx.io/bhagavad-gita/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_verse","arguments":{"chapter":2,"verse":47}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_verse', {
  "chapter": 2,
  "verse": 47
});

More examples

{
  "chapter": 12,
  "verse": 8
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "bhagavad-gita": {
      "url": "https://gateway.pipeworx.io/bhagavad-gita/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 6, 2026