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