Skip to main content
Glama
angrysky56
by angrysky56

synapse_recall

Retrieve time-stamped facts about any entity, filtered by direction and validity date. Get current or historical knowledge from the graph.

Instructions

Look up time-stamped facts about an entity.

Args: entity: Name to look up. Matches subject, object, or both depending on direction. as_of: ISO date/datetime — if given, only facts valid at this point in time are returned. Omit for "currently true" facts. direction: "outgoing" (entity is the subject), "incoming" (entity is the object), or "both" (default).

Returns: Newline-separated list of facts with timestamps. Empty if none found.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
as_ofNo
entityYes
directionNoboth

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/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. It discloses that the tool returns a newline-separated list of facts with timestamps, and that an empty result means no facts were found, which covers normal behavior. It does not mention error cases, but the read-only nature is implied by 'look up' and 'returns.'

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 tightly organized into Args and Returns sections with no filler. Every sentence adds relevant detail about invocation or output.

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 description is sufficient to call the tool correctly for common cases: all parameters, defaults, and output format are specified. It lacks examples or error behavior, but those are not essential for this simple lookup tool.

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?

All three parameters are explicitly explained in the docstring: entity matches subject/object depending on direction, as_of is an ISO datetime filtering temporal validity, and direction defines outgoing/incoming/both with its default. This fully compensates for the empty schema descriptions.

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 description clearly states the tool looks up time-stamped facts about an entity, using a specific verb and resource. It is distinguishable from sibling tools like query_knowledge or synapse_timeline by focusing on entity-specific temporal facts, though it does not explicitly contrast itself with them.

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 on when to prefer this tool over alternatives such as query_knowledge, synapse_timeline, or explore_connections. The description explains mechanics but not use cases or when not to use it.

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