UNPKG

openalex-mcp

Version:

A Model Context Protocol (MCP) server that provides access to the OpenAlex API - a fully open catalog of the global research system covering over 240 million scholarly works.

10 lines (9 loc) 277 B
import { makeOpenAlexRequest } from "../utils.js"; export async function autocomplete(args) { return { content: [{ type: "text", text: JSON.stringify(await makeOpenAlexRequest("/autocomplete", args), null, 2) }] }; }