Examples
examplesUsage examples.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | ||
| word | Yes | ||
| limit | No | ||
| useCanonical | No | ||
| includeDuplicates | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | Number of items returned. | |
| items | Yes |
examplesUsage examples.
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | ||
| word | Yes | ||
| limit | No | ||
| useCanonical | No | ||
| includeDuplicates | No |
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | Number of items returned. | |
| items | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Input schema / examplesAdded value: +[
+ {
+ "word": "eloquent"
+ },
+ {
+ "limit": 3,
+ "skip": 0,
+ "word": "paradigm"
+ }
+]Output schema / (root)Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Example ID",
+ "type": "number"
+ },
+ "text": {
+ "description": "Example text",
+ "type": "string"
+ },
+ "title": {
+ "description": "Example source title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Source URL",
+ "type": "string"
+ },
+ "year": {
+ "description": "Year of example",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds no behavioral context beyond the annotations.
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 only two words, which is under-specification rather than efficient conciseness. It fails to convey essential information.
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?
With 5 parameters and 0% schema coverage, the description is severely incomplete. Even though an output schema exists, the tool's purpose and parameter meanings are not explained.
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%, and the description does not explain any of the 5 parameters (word, skip, limit, useCanonical, includeDuplicates). No value added.
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 says 'Usage examples' but doesn't specify what the examples are for. From the input schema, it appears to retrieve examples for a word, but this is not stated. Purpose is vague.
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 usage guidance provided. Does not indicate when to use this word example tool vs siblings like definitions, phrases, or pronunciations.
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.
Most tools have clearly distinct purposes, especially between Wordnik and Pipeworx domains. However, some overlap exists among data query tools (e.g., ask_pipeworx vs deep_research) and company lookups (entity_profile vs compare_entities), but descriptions are detailed enough to differentiate them in most cases.
Naming conventions are mixed: some tools use snake_case (ai_visibility_check), others use descriptive phrases (ask_pipeworx_grounded), and some are single words (remember, recall). There is no uniform verb_noun pattern, though groups like polymarket_* and scan_* provide some consistency within their subsets.
With 42 tools, the server is overloaded. It combines two distinct services (Wordnik dictionary and Pipeworx data) into one set, making it feel like two servers merged. Many tools are niche (e.g., hyphenation, random_words), increasing count without clear benefit. A split would improve coherence.
The Wordnik coverage is thorough (definitions, examples, pronunciation, frequency, etc.), and Pipeworx covers a wide range of data sources with tools for basic lookups, comparisons, research, and subscriptions. Minor gaps exist (e.g., no update/delete for Wordnik data), but overall the surface is comprehensive for the intended use.