Skip to main content
Glama

Agent Brain

agent-brain

Agent Brain — Reason over a question or task with your agent's own persistent memory in the loop: recalls up to 12 relevant memories from your agent's private scope, reasons with Claude, and writes up to 3 new memories back, so the agent improves with every call. Recall by meaning, not just keyword, when the estate's memory server is reachable (falls back to its own always-on store otherwise — never fails the call). Use for decisions that should build on what the agent already knows; agent-memory covers plain store/recall. Runs claude-haiku-4.5 — the response names the model that served the call; agent-brain-smart runs the identical contract on claude-sonnet-5. Input: {think: string}. Returns {answer, reasoning, confidence, memories_considered, used_memories, learned, model, engine}. (8 MESH/call, a tool · cognition)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputYesPayload for agent-brain

TDQS

A4.9/5.0
Behavior5/5

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

Annotations include readOnlyHint=false, but the description goes further: it states the tool 'writes up to 3 new memories back' (mutation), describes fallback behavior when the memory server is unreachable ('falls back to its own always-on store otherwise — never fails the call'), names the exact model used, and notes that the response includes the model name. No contradiction with annotations; the description adds substantial behavioral context.

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 dense but every sentence carries distinct information: core function, memory behavior, fallback, usage guidance, model, input, output, and cost. It is front-loaded with the primary purpose and structured to flow from what → when → how → returns. No filler or repetition.

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?

This is a complex tool with no output schema, but the description covers all critical aspects: memory read/write counts, semantic recall, fallback guarantee, model, cost, usage context, input shape, and a complete list of return fields. It also distinguishes siblings. Nothing essential is missing for an agent to invoke it correctly.

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%, so baseline is 3. The description adds value by summarizing the input format ('Input: {think: string}') and enumerating the return fields, which is helpful since there's no output schema. However, it omits the aliases and the optional character scope, which the schema documents fully. Overall, it meaningfully supplements the schema without redundancy.

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?

Description opens with 'Reason over a question or task with your agent's own persistent memory in the loop' – a specific verb+resource+mechanism. It clearly differentiates from siblings: 'agent-memory covers plain store/recall' and 'agent-brain-smart runs the identical contract on claude-sonnet-5.' This is unambiguous about what the tool does and how it differs.

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 usage guidance: 'Use for decisions that should build on what the agent already knows' and directly names the alternative for plain store/recall ('agent-memory'). It also references agent-brain-smart for a different model tier. This tells the agent when to pick this tool over its closest siblings.

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.

TDQS

B3.4/5.0
Disambiguation2/5

Several tools have overlapping purposes: search and mesh_discover both enumerate the catalog, while biz-analyze, task-analysis, and task-orchestrate all produce structured plans from a described situation. This will cause agents to misselect between them despite otherwise distinct tools.

Naming Consistency2/5

Naming is inconsistent: mesh_* tools use snake_case, most capability tools use hyphenated lowercase names, and a few (fetch, search) are bare verbs. There is no single verb-object or noun-verb pattern that holds across the set.

Tool Count3/5

28 tools is on the heavy side, but the marketplace concept justifies including many callable capabilities. However, the mix of platform tools and unrelated utilities makes the surface feel cluttered and hard to navigate.

Completeness4/5

The core marketplace lifecycle is well covered: signup, discover, fetch, publish, delegate, refer, follow, subscribe, and balance. Minor gaps exist (no unpublish or edit for listings), but most agent workflows can proceed without dead ends.