GnistAI GnistAI
Log in

Random Words

Random English word generator — 120 curated words across 4 types (noun, verb, adjective, adverb) with length filtering.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 type: open dataset type type open dataset open dataset lifecycle: maintained lifecycle lifecycle maintained maintained Reference

Data source: In-memory curated collection

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/random-words/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (5)

get_random_word

Get a random English word.

Returns a word with its type and length. Optionally filter by word type and length range.

ParameterTypeRequiredDescription
word_typeanyoptionalFilter by word type (noun, verb, adjective, adverb). Omit for any type.
min_lengthanyoptionalMinimum word length (inclusive).
max_lengthanyoptionalMaximum word length (inclusive).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_random_word",
    "arguments": {}
  }
}
get_random_words

Get multiple random English words at once.

Returns a list of words, optionally filtered by type. Words are sampled without repeats.

ParameterTypeRequiredDescription
countanyoptionalNumber of random words to return (default: 5, max: 50).
word_typeanyoptionalFilter by word type (noun, verb, adjective, adverb). Omit for any type.
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "get_random_words",
    "arguments": {}
  }
}
search_words

Search for words by substring.

Searches across word text and word types. Case-insensitive.

ParameterTypeRequiredDescription
querystringrequiredSearch substring — matches word text or word type.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_words",
    "arguments": {
      "query": "example"
    }
  }
}
list_word_types

List all available word types.

Returns the type names that can be used to filter random words (noun, verb, adjective, adverb).

JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_word_types",
    "arguments": {}
  }
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/mcp/random-words/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_words", "arguments": {"query": "example"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/random-words/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_words",
    "arguments": {
      "query": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Reference)

Resources