UNPKG

@apify/actors-mcp-server

Version:

Model Context Protocol Server for Apify

18 lines 534 B
/** * Connect to the MCP server using SSE transport and call a tool. * The Actors MCP Server will load default Actors. * * It requires the `APIFY_TOKEN` in the `.env` file. */ import type { EventSourceInit } from 'eventsource'; import { EventSource } from 'eventsource'; declare global { var EventSource: { new (url: string, eventSourceInitDict?: EventSourceInit): EventSource; prototype: EventSource; CONNECTING: 0; OPEN: 1; CLOSED: 2; }; } //# sourceMappingURL=clientSse.d.ts.map