phrases
Pack: wordnik · Endpoint: https://gateway.pipeworx.io/wordnik/mcp
Return common bigram phrases containing a word from Wordnik’s corpus; wlmi parameter sets minimum mutual-information threshold.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
word | string | yes | |
limit | number | no | |
wlmi | number | no | |
useCanonical | boolean | no |
Example call
Arguments
{
"word": "ubiquitous"
}
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":"phrases","arguments":{"word":"ubiquitous"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('phrases', {
"word": "ubiquitous"
});
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"gram1": {
"type": "string",
"description": "First word in bigram"
},
"gram2": {
"type": "string",
"description": "Second word in bigram"
},
"count": {
"type": "number",
"description": "Frequency count"
},
"wlmi": {
"type": "number",
"description": "Weighted likelihood mutual information"
}
}
}
},
"count": {
"type": "integer",
"description": "Number of items returned."
}
},
"required": [
"items",
"count"
]
}
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.