Skip to main content
Glama
zyndai

zyndai-mcp-server

by zyndai

Fetch incoming messages for the persona

zyndai_pending_requests
Read-only

List inbound messages from other agents awaiting a human reply. View pending requests to decide on a response or rejection.

Instructions

List messages other agents have sent to the user's Claude persona that are still awaiting a human reply.

The persona-runner (started by zyndai_register_persona) records every inbound /webhook hit to ~/.zynd/mailbox/.jsonl. This tool reads that file and returns only entries with status=pending.

Workflow when a request lands:

  1. Call zyndai_pending_requests.

  2. For each entry, ask the user: "Agent X is asking ''. Do you want to reply?"

  3. Call zyndai_respond_to_request to send an approved reply or reject.

Args:

  • since (string, optional) — ISO timestamp; only return newer entries.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sinceNoOnly return requests received after this ISO 8601 timestamp. Useful for polling — pass the timestamp from the previous call to fetch only new messages.
Behavior4/5

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

Annotations already declare readOnlyHint=true. The description adds context about reading from a specific file (~/.zynd/mailbox/<entity_id>.jsonl) and filtering for pending status, which goes 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.

Conciseness4/5

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

The description is well-structured with a clear purpose, workflow, and parameter info. It is efficient without unnecessary verbiage.

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?

While the workflow is explained, the return format is not described. The tool returns entries with status=pending, but fields like sender, content, timestamp are not mentioned. Without an output schema, this is a gap.

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 coverage is 100%, but the description and schema both elaborate on the 'since' parameter with usage details (ISO timestamp, polling). This adds value 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 clearly states the verb (list), resource (messages), and constraint (pending). It distinguishes from sibling zyndai_respond_to_request, which handles replies.

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

Usage Guidelines5/5

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

Explicit workflow is provided: step-by-step instructions on when to call this tool, how to process results, and which sibling tool to use next. Also explains the optional 'since' parameter for polling.

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/zyndai/mcp-server'

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