top_example

Pack: wordnik · Endpoint: https://gateway.pipeworx.io/wordnik/mcp

Return the single highest-quality usage example sentence for a word from Wordnik’s corpus.

Parameters

NameTypeRequiredDescription
wordstringyes
useCanonicalbooleanno

Example call

Arguments

{
  "word": "zenith"
}

curl

curl -X POST https://gateway.pipeworx.io/wordnik/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_example","arguments":{"word":"zenith"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('top_example', {
  "word": "zenith"
});

Response shape

FieldTypeDescription
idnumberExample ID
titlestringExample source title
textstringExample text
urlstringSource URL
yearnumberYear of example
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Example ID"
    },
    "title": {
      "type": "string",
      "description": "Example source title"
    },
    "text": {
      "type": "string",
      "description": "Example text"
    },
    "url": {
      "type": "string",
      "description": "Source URL"
    },
    "year": {
      "type": "number",
      "description": "Year of example"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "wordnik": {
      "url": "https://gateway.pipeworx.io/wordnik/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026