Skip to main content
Glama

Good Earth

Goodearth Calendar Dataset

goodearth_calendar_dataset

Compute this block's dated season as a dataset, and store it for publishing.

Every dated thing this block knows about: crop targets, pest stages, wildlife and husbandry dates, the frost record, and your tasks. Returned as structured rows — a calendar is one rendering of them, and a caller wanting a table or a notification wants the same data.

An iCalendar rendering is stored alongside under a feed token, which the Good Earth site serves at a subscribable URL. Point any iCal or Google Calendar client at it and the season appears next to the school run and the market stall, which is where a grower will actually see it.

This is the computed act: it reads the weather feeds and rebuilds everything. Pass the same token again to recompute in place — subscribers keep their subscription and the events update rather than duplicating.

Nothing is passed in but the block: what it grows, what it watches for and what is due are read from the record. That is what makes a refresh safe — while those collections travelled as arguments, nobody could recompute an existing feed without knowing what had been handed to it the first time, so a refresh silently published a smaller season than the one it replaced.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
npubNoRequired. Your Nostr public key (npub1...) for credit billing.
blockYesThe ground to answer for: a block you have saved — its id, its name, one of its aliases, or any part of its name that only one block has (e.g. "Meadow" for "Lower Meadow"). If several match, the error lists them with their ids. Blocks may overlap; each answers for its own ground. Save one with block_save first; geometry travels once, not on every call.
tokenNoPass an existing feed's token to REFRESH it in place; omit to create one.
seasonNoWhich season to publish. Defaults to this one.
dpop_tokenNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and discloses the important side effects: the dataset is stored, an iCalendar feed is published under a token, recomputation happens in place, and refreshes update events rather than duplicating them. It also explains why refresh is safe by tying the computation to the block record. It does not mention billing or authorization, but the core mutation and idempotency behavior is transparent.

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

Conciseness2/5

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

The core sentence is front-loaded, but the description becomes quite long and includes illustrative material like 'appears next to the school run and the market stall' and a historical rationale for why refresh is safe. These add color and rationale, but the prose is noticeably longer than needed for an agent to decide how to invoke the tool.

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?

For a compute-and-store tool with no annotations, it covers the operation, the structured-row output, the iCalendar feed artifact, and token lifecycle behavior. The input schema covers prerequisites like saving a block first, and an output schema exists, so the main missing piece is explicit routing to sibling calendar tools rather than invocation-critical context.

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

Parameters3/5

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

Schema description coverage is 80%, so the baseline applies and the schema already documents most parameter meaning. The description adds useful context for token and for what the block conceptually contributes, but it introduces a slightly confusing line: 'Nothing is passed in but the block,' which could be read as conflicting with the schema's real parameters like npub, season, and dpop_token.

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

Purpose4/5

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

The opening sentence names a specific operation and resource: 'Compute this block's dated season as a dataset, and store it for publishing.' Phrases like 'stored alongside', 'feed token', and 'recompute in place' make it clear this creates or refreshes a dataset rather than fetching or listing one. It does not explicitly name sibling alternatives, so an agent must infer the boundary with calendar_fetch/list/revoke.

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 gives a clear create-vs-refresh condition: pass an existing token to recompute in place, omit it to create. However, it never explicitly says when to use this tool over the calendar_fetch, calendar_list, or calendar_revoke siblings, so routing guidance is implied rather than stated.

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.