word_of_the_day
Pack: wordnik · Endpoint: https://gateway.pipeworx.io/wordnik/mcp
Fetch the Wordnik Word of the Day for a given date (YYYY-MM-DD) or today if omitted; returns word, definitions, and example sentences.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | no |
Example call
Arguments
{
"date": "2024-01-15"
}
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":"word_of_the_day","arguments":{"date":"2024-01-15"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('word_of_the_day', {
"date": "2024-01-15"
});
Response shape
| Field | Type | Description |
|---|---|---|
word | string | Word of the day |
definitions | array | Definitions |
examples | array | Usage examples |
note | string | Additional note |
publishDate | string | Publish date |
Full JSON Schema
{
"type": "object",
"properties": {
"word": {
"type": "string",
"description": "Word of the day"
},
"definitions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"definition": {
"type": "string",
"description": "Definition text"
},
"partOfSpeech": {
"type": "string",
"description": "Part of speech"
}
}
},
"description": "Definitions"
},
"examples": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "Example text"
}
}
},
"description": "Usage examples"
},
"note": {
"type": "string",
"description": "Additional note"
},
"publishDate": {
"type": "string",
"description": "Publish date"
}
}
}
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.