Skip to main content
Glama

Urantia Papers

Get Paragraph

paragraphs.get
Read-onlyIdempotent

Look up a specific paragraph by reference. Supports three formats: globalId ("1:2.0.1"), standardReferenceId ("2:0.1"), or paperSectionParagraphId ("2.0.1"). The format is auto-detected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refYesParagraph reference in any format. Examples: "1:2.0.1", "2:0.1", "2.0.1"
include_entitiesNoInclude entity mentions
include_bible_parallelsNoInclude the top-10 Bible verses semantically nearest to this paragraph (UB → Bible direction).
include_urantia_parallelsNoInclude the top-10 most-similar OTHER Urantia paragraphs ('see also' across the corpus).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
paragraphYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, covering the safety profile. The description adds non-obvious behavioral context: that the reference format is auto-detected, which helps the agent understand input flexibility without additional calls. It does not describe error handling for invalid references, but the annotation coverage lowers the bar, and this added detail is valuable.

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 two sentences, front-loaded with the primary action, and provides essential format details without redundancy. Every word earns its place, and the structure is clean.

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

Completeness4/5

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

Given the tool has an output schema and 100% schema coverage, the description needn't explain return values or every parameter. It covers the core purpose, the input format nuance (auto-detection), and the single-paragraph scope. It could mention when not to use it (e.g., for context or random access), but overall it is sufficiently complete for a simple lookup tool with strong schema and annotations.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds meaning beyond the schema by naming the three formats (globalId, standardReferenceId, paperSectionParagraphId) and explicitly stating auto-detection, which clarifies how the 'ref' parameter should be interpreted. This goes beyond simply restating schema info.

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 ('look up') and resource ('paragraph by reference'), clearly distinguishing it from sibling tools like paragraphs.random or paragraphs.context. The mention of 'specific paragraph' and the three reference formats leaves no doubt about what the tool does.

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 description clearly states the context of use ('specific paragraph by reference') which implies it is for targeted lookup, not random or contextual retrieval. It doesn't explicitly name alternatives or exclusions, but the context is clear enough for an agent to choose this tool when a reference is available.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action (e.g., audio.get vs bible.book vs entities.list). There is no overlap, and even similar tools like search.fulltext and search.semantic are clearly differentiated by mode.

Naming Consistency5/5

All tools follow a consistent 'domain.action' pattern using lowercase and dots. Underscores within domain names (e.g., urantia_parallels) are uniform. No mixing of camelCase or irregular verbs.

Tool Count5/5

19 tools is well-scoped for a server covering the Urantia Book and Bible integration. Each tool serves a distinct purpose without bloat or insufficiency.

Completeness5/5

The surface covers all core operations: browsing (list/get for papers, entities, paragraphs), searching (fulltext and semantic), structured navigation (toc.get, papers.sections), audio, and Bible parallels. No obvious gaps.