Skip to main content
Glama
Clamepending

ottoauthMCP

by Clamepending

Ottoauth Create Account

ottoauth_create_account

Create a new Ottoauth agent account with a unique username and optional profile or callback URL, and receive credentials including the private key.

Instructions

Create a new Ottoauth account (agent) and return credentials, including the private key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
usernameYesAgent username to create (must be unique in Ottoauth).
descriptionNoOptional short profile description for the agent.
callback_urlNoOptional callback URL where Ottoauth can post account events.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It correctly states that this is a creation operation and that the response includes a private key, which is important context. However, it does not mention permission requirements, uniqueness failure behavior, or security handling of the returned private key.

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 one sentence with no filler. It front-loads the action, names the resource, and mentions the important output. Every word contributes useful information.

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?

For a simple create operation with no output schema and no annotations, the description is adequate but not rich. It states the core action and the critical output, but it omits return format details, error behavior, and any caveats about username uniqueness or private key handling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so each parameter is already documented in the input schema. The description adds no parameter-specific meaning beyond noting that credentials and a private key will be returned, so a baseline score of 3 is appropriate.

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 uses a specific verb ('Create'), names the exact resource ('new Ottoauth account (agent)'), and states the key output ('return credentials, including the private key'). This clearly differentiates it from the sibling webhook and HTTP request tools.

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

Usage Guidelines3/5

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

The description implies the tool's use case: creating a new account. However, it does not explicitly mention when to use this tool versus an alternative, nor does it state exclusions or prerequisites. The sibling tools are domains away, so the omission is not critical, but guidance is still minimal.

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