get_connector
Fetch one saved connector by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| connector_id | Yes |
Fetch one saved connector by id.
| Name | Required | Description | Default |
|---|---|---|---|
| connector_id | Yes |
Changes observed during successful MCP inspections.
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 only states 'Fetch', implying a read operation, but doesn't disclose what happens if the connector_id doesn't exist, whether authentication is required, or any rate limits. Minimal behavioral disclosure.
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?
Single sentence with no fluff. Efficiently conveys the core purpose. However, it is under-specified and could include more details without being verbose, so not a perfect 5.
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?
The tool is simple (one param, no output schema), but the description omits what the returned connector object contains. Given no output schema, the description should hint at the response structure. Also lacks context about what a 'connector' is in this system.
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 0% (no descriptions in schema for connector_id). The description adds no meaning beyond the schema: it doesn't explain what a 'connector' is, what format the id should be, or any additional context. Fails to compensate for missing schema descriptions.
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?
Description clearly states 'Fetch one saved connector by id', which is a specific verb ('fetch') and resource ('connector') with a scope ('by id'). This distinguishes it from sibling tools like list_connectors (list) and delete_connector (delete).
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 on when to use this tool versus alternatives (e.g., when to use get_connector vs. list_connectors or browse_connector). No mention of prerequisites, error handling, or preferred contexts.
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.