PrivateDAO search_agents
search_agentsPrivateDAO search_agents
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Free-text registry search. | |
| limit | No | ||
| network | No | Canonical network or accepted alias. | |
| capability | No |
search_agentsPrivateDAO search_agents
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Free-text registry search. | |
| limit | No | ||
| network | No | Canonical network or accepted alias. | |
| capability | No |
Changes observed during successful MCP inspections.
Input schema / propertiesAdded value: +{
+ "capability": {
+ "maxLength": 120,
+ "type": "string"
+ },
+ "limit": {
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "network": {
+ "description": "Canonical network or accepted alias.",
+ "type": "string"
+ },
+ "q": {
+ "description": "Free-text registry search.",
+ "maxLength": 200,
+ "type": "string"
+ }
+}Input schema / propertiesRemoved value: -{
- "capability": {
- "maxLength": 120,
- "type": "string"
- },
- "limit": {
- "maximum": 100,
- "minimum": 1,
- "type": "integer"
- },
- "network": {
- "description": "Canonical network or accepted alias.",
- "type": "string"
- },
- "q": {
- "description": "Free-text registry search.",
- "maxLength": 200,
- "type": "string"
- }
-}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. However, the description itself adds no behavioral context—no return format, search semantics, rate limits, or edge cases—so it contributes nothing beyond structured fields.
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?
While extremely short, this is under-specification rather than concise writing. The phrase adds no information beyond the name, and there is no structure (front-loaded purpose, examples, or scoping).
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?
There is no output schema, and the description gives no indication of return values, result ordering, or how the search behaves. Despite favorable annotations, an agent cannot tell what a successful call returns or how to interpret results, so the description is incomplete for a 4-parameter tool.
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 description coverage is only 50% (q and network have descriptions; limit and capability do not). The description provides no parameter semantics at all, leaving two parameters completely undocumented and the other two without additional meaning.
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?
Tautological: description restates name/title.
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?
No guidance is provided about when to use this tool versus alternatives. The description contains no context, no examples, no conditions, and no exclusions, so an agent has no basis for selecting it over sibling tools.
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.