Skip to main content
Glama

Server Details

Bible translations, books, chapters, verses, and search

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.6/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: listing translations, listing books, retrieving a chapter, retrieving a single verse, and searching. No two tools overlap in function, so an agent can easily select the right one.

Naming Consistency5/5

All tool names follow a consistent bible_<resource> pattern (bible_books, bible_chapter, bible_search, bible_translations, bible_verse). The convention is uniform and predictable, with no mixed styles.

Tool Count5/5

Five tools is a well-scoped size for a Bible API, covering navigation (books, chapter, verse) and discovery (translations, search). Each tool serves a necessary role without redundancy or bloat.

Completeness5/5

The API covers the core lifecycle of retrieving scriptural content: list available translations, get the structure of books, read a chapter, read a specific verse, and search for passages. There are no obvious dead ends or missing operations for its stated purpose.

Available Tools

5 tools
bible_booksList books in a translationB
Read-onlyIdempotent
Inspect

Return books and chapter counts for a translation.

ParametersJSON Schema
NameRequiredDescriptionDefault
translationYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds the return content (books and chapter counts) but does not address edge cases like invalid translation codes or return ordering. This is a minimal but non-contradictory addition.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no redundant words. It efficiently states the core functionality.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema, so the description carries the burden of explaining return values. It mentions 'books and chapter counts' but does not specify the structure (e.g., array of objects with names and counts, ordering). For a simple listing tool this may suffice, but it leaves room for ambiguity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero description coverage for the 'translation' parameter. The description only indirectly clarifies that the parameter identifies a translation, without specifying expected format (e.g., code like 'KJV') or giving examples. With low schema coverage, the description should compensate more.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns books and chapter counts for a translation. This distinguishes it from sibling tools like bible_chapter or bible_verse, which focus on specific content.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance is provided on when to use this tool versus alternatives. The phrase 'for a translation' implies usage context, but there is no mention of when not to use it or which sibling tool to choose for different needs.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

bible_chapterFetch a chapterA
Read-onlyIdempotent
Inspect

Return all verses, groupings, and red letter data for a chapter.

ParametersJSON Schema
NameRequiredDescriptionDefault
bookYes
chapterYes
translationYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds the behavioral detail that the response includes all verses, groupings, and red letter data, which is useful context. The annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. No additional behavioral traits like error handling or format specifics are disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence ('Return all verses...') that directly states the tool's function without wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of an output schema, the description does explain the main contents of the return value, but 'groupings' and 'red letter data' are vague, and there is no guidance on formatting of parameters or error handling. It is minimally adequate but not rich.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 3 parameters (book, chapter, translation) with 0% description coverage, and the description does not explain any parameter meaning or format. It only mentions 'chapter' generically, leaving book and translation completely ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Return' and clearly identifies the resource as a Bible chapter, including the scope of what is returned (all verses, groupings, red letter data). This distinguishes it from sibling tools like bible_verse (single verse) and bible_search (search).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool is used when you need a full chapter's data, but it does not explicitly state when to use it versus bible_verse or other siblings, nor provide any exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

bible_translationsList Bible translationsA
Read-onlyIdempotent
Inspect

Return all available Bible translations.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the 'all available' scope, implying no filtering, which is slightly useful. However, it does not disclose return format, ordering, or any other behavioral traits beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that states exactly what the tool does with no fluff. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple, read-only list tool with no parameters and good annotations, the description is fully sufficient. It conveys the purpose clearly, and no output schema exists, but the return value (list of translations) is implicit in the tool's name and description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, and the schema covers 100% of them (none). With no parameters to explain, the baseline is 4. The description adds no parameter information, but none is needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Return all available Bible translations' uses a specific verb ('Return') and resource ('all available Bible translations'), clearly distinguishing it from sibling tools like bible_books, bible_chapter, bible_search, and bible_verse.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance on when to use this tool versus alternatives. It does not mention any exclusions, prerequisites, or refer to sibling tools, leaving the agent without context for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

bible_verseFetch a verseA
Read-onlyIdempotent
Inspect

Return a specific verse, with red letter data if available.

ParametersJSON Schema
NameRequiredDescriptionDefault
bookYes
verseYes
chapterYes
translationYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds valuable output detail ('with red letter data if available'), which is not covered by annotations. No contradictions exist.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one concise sentence, front-loaded with the core action and outcome. Every word earns its place, with no fluff or repetition of tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, but with no output schema and no parameter descriptions, the description only partially covers what an agent needs to know (e.g., return structure, parameter conventions). Annotations cover safety, but the description does not fully compensate for missing schema info, though it is adequate for basic use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description provides no parameter-level guidance. Parameter names are somewhat self-explanatory, but no format or constraint details (e.g., book name abbreviations, translation codes) are given, leaving the agent to rely on schema types alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Return') and resource ('a specific verse'), clearly distinguishing it from sibling tools like bible_chapter (whole chapter) or bible_search. The mention of 'red letter data' adds specificity without ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'specific verse' sets clear context for when to use this tool (single verse retrieval). However, it does not explicitly mention alternatives or exclusion scenarios, though the sibling tool names provide implicit contrast.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources