find_words

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

Advanced word search. Find words matching a combination of meaning, pronunciation, and spelling constraints.

Parameters

NameTypeRequiredDescription
meaning_likestringnoFind words with meaning similar to this phrase (e.g. “ocean”)
sounds_likestringnoFind words that sound like this word (approximate pronunciation)
spelled_likestringnoFind words spelled like this pattern (use * as wildcard, e.g. “b*ttle”)
limitnumbernoMaximum number of results to return (default: 10)

Example call

Arguments

{
  "meaning_like": "ocean"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('find_words', {
  "meaning_like": "ocean"
});

More examples

{
  "sounds_like": "knight",
  "spelled_like": "n*ght",
  "limit": 15
}

Response shape

Always returns: results

FieldTypeDescription
resultsarrayList of matching words ranked by score
Full JSON Schema
{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "description": "List of matching words ranked by score",
      "items": {
        "type": "object",
        "properties": {
          "word": {
            "type": "string",
            "description": "The matching word"
          },
          "score": {
            "type": "number",
            "description": "Match score based on constraints"
          }
        },
        "required": [
          "word",
          "score"
        ]
      }
    }
  },
  "required": [
    "results"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026