Skip to main content
Glama

AutEng MCP - Markdown Publishing & Document Share Links

auteng_docs_list

List documents in the agent's workspace.

Requires EIP-191 wallet signature auth. See auteng_docs_create for auth details.

Args: wallet_address: 0x... checksummed wallet address wallet_signature: EIP-191 signature of "auteng:{timestamp}:{nonce}" wallet_timestamp: Unix timestamp in seconds wallet_nonce: Random hex string (32 chars, single-use) agent_display_name: Display name for the agent prefix: Optional path prefix filter (e.g. "reports/")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
prefixNo
wallet_nonceYes
wallet_addressYes
wallet_signatureYes
wallet_timestampYes
agent_display_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.5/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It explicitly requires EIP-191 wallet signature auth, a critical non-obvious behavior, and lists all auth-related parameters. It does not explicitly state read-only, but 'list' implies a non-destructive operation. The prefix filter behavior is also disclosed.

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 compact and front-loaded with the primary purpose, followed by the auth requirement and a straightforward Args list. No redundant or filler text. Every sentence adds value, and the structure is scannable.

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?

Given the presence of an output schema, the description need not explain return values. It covers the tool's core purpose, auth requirements, and all parameters. It does not mention limitations like pagination or ordering, but for a straightforward list tool, the description is sufficiently complete for an agent to select and invoke it correctly.

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 0%, so the description must compensate. It does so fully by explaining each parameter: wallet_address format, wallet_signature structure, wallet_timestamp unit, wallet_nonce uniqueness constraint, agent_display_name purpose, and prefix filter with an example. This adds significant meaning 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 tool's action: 'List documents in the agent's workspace.' This specifies a verb (List) and a resource (documents in the agent's workspace), distinguishing it from siblings like auteng_docs_recent (which likely lists recent documents) and other mutation tools. The scope is unambiguous.

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 context: it lists documents in the workspace, and the optional prefix filter hints at usage for organizing or filtering. It does not explicitly name alternatives or exclusions, but the list action is self-evident. It also cross-references auteng_docs_create for auth details, which indirectly aids usage.

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

A3.8/5.0
Disambiguation4/5

CRUD operations (create/update/delete/list) are clearly distinct, and share/recent have clear purposes. However, 'recent' could be confused with 'list' (workspace vs public feed), and 'publish_markdown' overlaps with create+share. Descriptions help clarify these boundaries, so most tools are unambiguous.

Naming Consistency3/5

The auteng_docs_* pattern holds for create/delete/list/share/update, but 'auteng_docs_recent' uses an adjective instead of a verb, and 'auteng_publish_markdown' breaks the pattern by using verb-first naming and omitting 'docs'. The mixed conventions are still readable but not fully consistent.

Tool Count5/5

Seven tools is well-scoped for a markdown publishing and document sharing server. Each tool earns its place covering CRUD, sharing, a public feed, and a publish shortcut, without redundancy or bloat.

Completeness4/5

The toolset covers the core lifecycle (create, update, delete, list) and sharing, but lacks a single-document get tool to retrieve content by path. This is a minor gap since list provides paths and update can be done with full content, so agents can work around it.

Resources