Skip to main content
Glama
chrischall

OurFamilyWizard MCP

by chrischall

ofw_status

Check live status of drafts and messages in OurFamilyWizard. Returns state (draft/sent/received/deleted) for specified ids or full draft inventory.

Instructions

ONE live call that answers "where does everything stand?". This is the call that should back any status summary about drafts or specific messages — never session memory, and never a cached read alone. With no arguments it returns the FULL current draft inventory, verified against OurFamilyWizard. Pass ids and/or draftKeys to get each one's live lifecycle state ("draft" | "sent" | "received" | "deleted" | "unknown") with sentAt and viewedAt. A draftKey is the stable identity ofw_save_draft returns: editing a draft mints a new OFW id every time (create-then-delete), so the key is the only way to ask "what happened to the thing I was working on?" — it resolves to the chain's current id and keeps resolving after the draft is SENT (state:"sent" with sentMessageId). The top-level complete is true ONLY when every part of this snapshot was verified live; if it is false, do not state a draft count or a lifecycle claim from this payload.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsNoMessage/draft ids to resolve to a live state (combined with draftKeys, max 25 probes per call).
draftKeysNoStable draft keys (from ofw_save_draft / ofw_list_drafts) to resolve to their CURRENT id and state.
allowMarkReadNoDefault false. An id whose cached state cannot rule out an unread INBOX message can only be probed by fetching its detail, which marks it READ on OurFamilyWizard — irreversible and co-parent-visible. Those are skipped unless this is true. Cached drafts, sent messages and already-read messages are always probed. Capped by OFW_ALLOW_MARK_READ.
includeDraftInventoryNoReturn the full current draft list, verified against OurFamilyWizard first. Defaults to TRUE when neither ids nor draftKeys is given (so a bare ofw_status() is a complete status snapshot), otherwise false.
Behavior5/5

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

The description thoroughly discloses behavioral traits: it is a live call that may mutate state (marking messages as read via allowMarkRead, irreversible and co-parent-visible). It explains the verification logic and the meaning of the `complete` flag. This exceeds the annotation's false readOnlyHint by providing concrete details.

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

Conciseness4/5

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

The description is comprehensive and front-loaded with purpose, but it is relatively long. However, every sentence adds valuable information without redundancy, so its length is justified. Could be slightly more concise, but it remains efficient.

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?

Given no output schema, the description adequately explains return fields: state, sentAt, viewedAt, sentMessageId, and the top-level `complete` flag with its condition. It also clarifies edge cases (e.g., draftKeys resolving after sent). This covers all necessary behavioral context for an AI agent.

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 100%, and the description adds significant meaning beyond schema: it explains the stable identity of draftKeys, why they are needed (OFW creates new IDs on edit), and how they resolve to states. It also clarifies the default behavior of includeDraftInventory and the implications of allowMarkRead.

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's purpose: 'ONE live call that answers "where does everything stand?"' and specifies it returns the full current draft inventory verified against OurFamilyWizard, distinguishing it from session memory or cached reads. It also explains the behavior with optional parameters like ids and draftKeys.

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 provides clear usage context: 'This is the call that should back any status summary about drafts or specific messages — never session memory, and never a cached read alone.' It also explains when to use draftKeys and the allowMarkRead parameter. However, it does not explicitly contrast with sibling tools like ofw_list_drafts or ofw_get_message, which would strengthen the guidelines.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrischall/ofw-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server