spelled_like

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

Wildcard-pattern matches (? = any letter, * = any sequence).

Parameters

NameTypeRequiredDescription
patternstringyes
maxnumberno

Example call

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

Response shape

Full JSON Schema
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "word": {
        "type": "string",
        "description": "The word"
      },
      "score": {
        "type": "number",
        "description": "Relevance score"
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Word tags (n, v, adj, etc.)"
      },
      "defs": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Word definitions"
      }
    },
    "required": [
      "word"
    ]
  },
  "description": "Array of words matching spelling pattern"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026