get_chapter
Pack: bhagavad-gita · Endpoint: https://gateway.pipeworx.io/bhagavad-gita/mcp
Get one chapter of the Bhagavad Gita (Vedic scripture) by number. Returns the Sanskrit name, transliteration, English meaning, summary, and verse count.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chapter | number | yes | Chapter number, 1-18. |
Example call
Arguments
{
"chapter": 1
}
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_chapter","arguments":{"chapter":1}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_chapter', {
"chapter": 1
});
More examples
{
"chapter": 6
}
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.