submit_inquiry
Submit a contact inquiry on behalf of the calling agent's operator. Forwards to contact@myagi.bot. Returns an inquiry ID on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| Yes | |||
| message | Yes |
Submit a contact inquiry on behalf of the calling agent's operator. Forwards to contact@myagi.bot. Returns an inquiry ID on success.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| Yes | |||
| message | Yes |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the forwarding action and return value, but lacks details on potential side effects, latency, error handling, or validation constraints beyond the schema. This is adequate but leaves gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences, no redundant information, and front-loads the key action. Every sentence provides value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (3 required params, no output schema, no annotations), the description covers the essential purpose and return value. However, it could specify the expected format of the inquiry ID or success/error response for completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, and the description does not add any additional meaning to the parameters beyond their names (name, email, message). The description fails to compensate for the lack of schema descriptions, leaving the agent with no insight into parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'submit', the resource 'contact inquiry', and specifies the forwarding destination (contact@myagi.bot) and the return value (inquiry ID). It distinguishes from siblings (query_platform, registry_lookup) which are different operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when the agent wants to submit a contact inquiry on behalf of the operator, but does not provide explicit guidance on when to use this tool versus alternatives, or when not to use it. No exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct function: query_platform for platform info, registry_lookup for domain scores, submit_inquiry for contact. No overlap.
All tools follow a consistent verb_noun pattern in snake_case (query_platform, registry_lookup, submit_inquiry).
3 tools is appropriate for a focused registry server covering platform info, data lookup, and contact submission.
Covers core operations for the stated purpose, though missing features like domain registration or listing might be useful for some use cases.