Skip to main content
Glama

get_related_keywords

Find related keywords for a search query to expand research or content creation. Input a query to receive a list of associated terms.

Instructions

Get keywords related to a search query

Input Schema

NameRequiredDescriptionDefault
queryYesSearch query
limitNoNumber of keywords to return (default: 10)

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 10, "description": "Number of keywords to return (default: 10)", "type": "number" }, "query": { "description": "Search query", "type": "string" } }, "required": [ "query" ], "type": "object" }

Implementation Reference

  • MCP tool handler for 'get_related_keywords'. Parses arguments, invokes the API client method, and formats the response as MCP content.
    handler: async (args) => { const { query, limit = 10 } = args; const result = await apiClient.getRelatedKeywords(query, limit); return { content: [{ type: "text", text: JSON.stringify({ success: true, data: result, message: `Found ${result.items?.length || 0} related keywords for "${query}"` }, null, 2) }] }; }
  • Input schema defining the parameters for the get_related_keywords tool: required 'query' string and optional 'limit' number.
    inputSchema: { type: "object", properties: { query: { type: "string", description: "Search query" }, limit: { type: "number", description: "Number of keywords to return (default: 10)", default: 10 } }, required: ["query"] },
  • server.js:900-932 (registration)
    Full tool registration object in the tools array for 'get_related_keywords', including name, description, schema, and handler.
    { name: "get_related_keywords", description: "Get keywords related to a search query", inputSchema: { type: "object", properties: { query: { type: "string", description: "Search query" }, limit: { type: "number", description: "Number of keywords to return (default: 10)", default: 10 } }, required: ["query"] }, handler: async (args) => { const { query, limit = 10 } = args; const result = await apiClient.getRelatedKeywords(query, limit); return { content: [{ type: "text", text: JSON.stringify({ success: true, data: result, message: `Found ${result.items?.length || 0} related keywords for "${query}"` }, null, 2) }] }; } },
  • Supporting method in WebSimAPIClient that performs the actual HTTP request to retrieve related keywords from the WebSim API endpoint `/api/v1/search/related`.
    async getRelatedKeywords(query, limit = 10) { const params = new URLSearchParams({ q: query, limit: limit.toString() }); return this.makeRequest(`/api/v1/search/related?${params}`); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gigachadtrey/websimm'

If you have feedback or need assistance with the MCP directory API, please join our Discord server