Wraps the Bible API in a streamable HTTP endpoint, giving Claude direct access to biblical text without authentication. Part of the Pipeworx gateway ecosystem, which aggregates 673+ data sources behind a single MCP interface. You can wire it up standalone for scripture lookups or use the full Pipeworx gateway and query it conversationally through ask_pipeworx. The source documentation doesn't list specific tools, but given the API wrapper nature, expect verse retrieval, passage search, and translation access. Useful if you're building study tools, reference assistants, or anything that needs programmatic access to biblical content without managing API keys.
Bible MCP — wraps the Bible API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"bible": {
"url": "https://gateway.pipeworx.io/bible/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Bible data" })
The gateway picks the right tool and fills the arguments automatically.
MIT