pick
Pick specific fields from each object in a JSON array.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Array of objects | |
| fields | Yes | Field names to keep |
Pick specific fields from each object in a JSON array.
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Array of objects | |
| fields | Yes | Field names to keep |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the basic operation and omits edge cases like missing fields, output ordering, whether the input is mutated, or the exact output format.
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 one concise sentence that front-loads the operation and resource, with no filler. It is appropriately sized for the tool's simplicity.
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?
For a simple two-parameter tool, the description covers the core purpose but lacks edge-case behavior and usage context. Without annotations or an output schema, the agent receives no guidance on handling missing fields or the structure of the result, making it adequate but not fully complete.
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?
The input schema already provides 100% coverage for both parameters ('Array of objects' and 'Field names to keep'). The description adds minimal extra meaning, essentially restating the selection behavior without additional syntactic or semantic detail.
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 tool's function: selecting specific fields from each object in a JSON array. This verb+resource phrasing distinguishes it from siblings like filter (which selects objects) and flatten (which restructures hierarchy).
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 usage is implied by the verb 'pick'—one would use this when wanting to project only certain fields. However, there is no explicit guidance about when to use this tool versus alternatives, and no when-not-to-use context.
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 has a clearly distinct purpose: conversions between formats (CSV, JSON, XML) are separate from data operations (filter, pick, sort, stats) and structural utilities (flatten, unflatten, validate). No two tools overlap in function.
The conversion tools follow a consistent 'from_to' pattern (csv_to_json, json_to_csv, json_to_xml), but the operation tools use bare verbs (filter, pick, sort) or nouns (stats), and flatten/unflatten use a different style. The mix is readable but not uniform.
With exactly 10 tools, the server covers the core data transformation needs without bloat. Each tool serves a clear purpose and the count is well within the typical ideal range of 3-15.
The toolkit covers common conversion and data manipulation tasks well. A minor gap is the lack of an XML-to-JSON converter, but conversions can be chained through JSON, and the basic transformation lifecycle is complete.