lemma

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

Lemma resolution (form → base form).

Parameters

NameTypeRequiredDescription
formstringyes

Example call

Arguments

{
  "form": "häuser"
}

curl

curl -X POST https://gateway.pipeworx.io/dwds/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"lemma","arguments":{"form":"häuser"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('lemma', {
  "form": "häuser"
});

More examples

{
  "form": "geliebt"
}

Response shape

FieldTypeDescription
formatstringResponse format (json or text)
bodystringText response if JSON parsing failed
Full JSON Schema
{
  "type": "object",
  "properties": {
    "format": {
      "type": "string",
      "description": "Response format (json or text)"
    },
    "body": {
      "type": "string",
      "description": "Text response if JSON parsing failed"
    }
  },
  "description": "Lemma resolution response (form to base form)"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026