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