UNPKG

@apify/actors-mcp-server

Version:

Model Context Protocol Server for Apify

12 lines 345 B
/** * Returns a public version of the tool containing only fields that should be exposed publicly. * Used for the tools list request. */ export function getToolPublicFieldOnly(tool) { return { name: tool.name, description: tool.description, inputSchema: tool.inputSchema, }; } //# sourceMappingURL=tools.js.map