etymology

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

Etymology section extracted from wikitext.

Parameters

NameTypeRequiredDescription
wordstringyes
langstringno

Example call

Arguments

{
  "word": "algorithm"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "word": "kindergarten",
  "lang": "de"
}

Response shape

Always returns: word

FieldTypeDescription
wordstringThe word queried
foundbooleanWhether etymology section was found
available_sectionsarrayAvailable sections when etymology not found
sectionstringName of the etymology section
section_numberstringSection number identifier
wikitextstring | nullRaw wikitext content of the etymology section
Full JSON Schema
{
  "type": "object",
  "properties": {
    "word": {
      "type": "string",
      "description": "The word queried"
    },
    "found": {
      "type": "boolean",
      "description": "Whether etymology section was found"
    },
    "available_sections": {
      "type": "array",
      "description": "Available sections when etymology not found",
      "items": {
        "type": "string"
      }
    },
    "section": {
      "type": "string",
      "description": "Name of the etymology section"
    },
    "section_number": {
      "type": "string",
      "description": "Section number identifier"
    },
    "wikitext": {
      "type": [
        "string",
        "null"
      ],
      "description": "Raw wikitext content of the etymology section"
    }
  },
  "required": [
    "word"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026