Skip to main content
Glama
tobbaz

runeberg-mcp

by tobbaz

runeberg_search

Search full texts of digitized Nordic books and encyclopedias from Project Runeberg by keyword or phrase. Returns matching results with configurable limit.

Instructions

Full-text search across digitized books, encyclopedias, and literature in Project Runeberg (runeberg.org).

Args:
    query: Search keywords or phrases (e.g. "Abraham Brodersson", "Dödsdansen", or "Falun gruva").
    max_results: Maximum number of search results to return (default: 10).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes
max_resultsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral burden. It clearly states this is a full-text search operation, which implies a read-only, non-destructive action. However, it does not disclose details such as result behavior, pagination, authentication needs, or any search limitations.

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 compact and front-loaded: the first sentence states the core purpose, followed by a clean Args section. There is no redundant or filler content.

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?

The tool is simple, has only two parameters, and an output schema exists, so the return format does not need to be explained. The description covers purpose and all parameters well, though it could be slightly stronger by noting when to prefer this over sibling tools.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate. It fully does: query is explained with concrete examples ('Abraham Brodersson', 'Dödsdansen') and max_results is described with its default value, adding practical meaning beyond the bare schema.

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 states a specific verb and resource: 'Full-text search across digitized books, encyclopedias, and literature in Project Runeberg.' It clearly distinguishes this tool from siblings like runeberg_read_page and runeberg_get_work_info, which are about reading pages or fetching work metadata rather than searching.

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 guidance is given about when to use this tool versus the sibling tools. The description explains what the search does, but it does not mention exclusions, preferred use cases, or when a different tool would be more appropriate.

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