random_verse

Pack: bible · Endpoint: https://gateway.pipeworx.io/bible/mcp

Get a random Bible verse. Returns the reference, full text, and translation used.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/bible/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"random_verse","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('random_verse', {});

Response shape

Always returns: reference, translation, translation_name, text, verses

FieldTypeDescription
referencestringBible reference string
translationstringTranslation ID code
translation_namestringFull name of the translation
textstringFull verse text
versesarrayArray of verse objects with book, chapter, verse, and text
Full JSON Schema
{
  "type": "object",
  "properties": {
    "reference": {
      "type": "string",
      "description": "Bible reference string"
    },
    "translation": {
      "type": "string",
      "description": "Translation ID code"
    },
    "translation_name": {
      "type": "string",
      "description": "Full name of the translation"
    },
    "text": {
      "type": "string",
      "description": "Full verse text"
    },
    "verses": {
      "type": "array",
      "description": "Array of verse objects with book, chapter, verse, and text",
      "items": {
        "type": "object",
        "properties": {
          "book": {
            "type": "string",
            "description": "Book name"
          },
          "chapter": {
            "type": "number",
            "description": "Chapter number"
          },
          "verse": {
            "type": "number",
            "description": "Verse number"
          },
          "text": {
            "type": "string",
            "description": "Verse text"
          }
        },
        "required": [
          "book",
          "chapter",
          "verse",
          "text"
        ]
      }
    }
  },
  "required": [
    "reference",
    "translation",
    "translation_name",
    "text",
    "verses"
  ]
}

Connect

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

{
  "mcpServers": {
    "bible": {
      "url": "https://gateway.pipeworx.io/bible/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026