action medium_get_search_tags_query_query { label: "Search Tags" description: "Returns a list of `tags` for the given search query results. (Max Length = 1000)\n" provider: medium method: GET path: "/search/tags?query={query}" encoding: json input: { type: "object" properties: { query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" properties: { search_query: { type: "string" } tags: { type: "array" items: { type: "string" } } } } }