pronunciations
Pack: wiktionary · Endpoint: https://gateway.pipeworx.io/wiktionary/mcp
IPA / phonetic transcriptions extracted from wikitext.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
word | string | yes | |
lang | string | no |
Example call
Arguments
{
"word": "squirrel"
}
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":"pronunciations","arguments":{"word":"squirrel"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pronunciations', {
"word": "squirrel"
});
More examples
{
"word": "croissant",
"lang": "fr"
}
Response shape
Always returns: word
| Field | Type | Description |
|---|---|---|
word | string | The word queried |
found | boolean | Whether pronunciation section was found |
available_sections | array | Available sections when pronunciation not found |
section | string | Name of the pronunciation section |
section_number | string | Section number identifier |
wikitext | string | null | Raw wikitext content of the pronunciation section |
Full JSON Schema
{
"type": "object",
"properties": {
"word": {
"type": "string",
"description": "The word queried"
},
"found": {
"type": "boolean",
"description": "Whether pronunciation section was found"
},
"available_sections": {
"type": "array",
"description": "Available sections when pronunciation not found",
"items": {
"type": "string"
}
},
"section": {
"type": "string",
"description": "Name of the pronunciation section"
},
"section_number": {
"type": "string",
"description": "Section number identifier"
},
"wikitext": {
"type": [
"string",
"null"
],
"description": "Raw wikitext content of the pronunciation 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.