find_synonyms

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

Find synonyms for a word, ranked by similarity score.

Parameters

NameTypeRequiredDescription
wordstringyesThe word to find synonyms for
limitnumbernoMaximum number of results to return (default: 10)

Example call

Arguments

{
  "word": "happy"
}

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_synonyms","arguments":{"word":"happy"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('find_synonyms', {
  "word": "happy"
});

More examples

{
  "word": "beautiful",
  "limit": 5
}

Response shape

Always returns: word, results

FieldTypeDescription
wordstringThe word synonyms were found for
resultsarrayList of synonyms ranked by similarity score
Full JSON Schema
{
  "type": "object",
  "properties": {
    "word": {
      "type": "string",
      "description": "The word synonyms were found for"
    },
    "results": {
      "type": "array",
      "description": "List of synonyms ranked by similarity score",
      "items": {
        "type": "object",
        "properties": {
          "word": {
            "type": "string",
            "description": "The synonym word"
          },
          "score": {
            "type": "number",
            "description": "Similarity score"
          }
        },
        "required": [
          "word",
          "score"
        ]
      }
    }
  },
  "required": [
    "word",
    "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