Skip to main content
Glama

MCP 3D Printer Server

add-abort-signal.js1.77 kB
'use strict' const { SymbolDispose } = require('../../ours/primordials') const { AbortError, codes } = require('../../ours/errors') const { isNodeStream, isWebStream, kControllerErrorFunction } = require('./utils') const eos = require('./end-of-stream') const { ERR_INVALID_ARG_TYPE } = codes let addAbortListener // This method is inlined here for readable-stream // It also does not allow for signal to not exist on the stream // https://github.com/nodejs/node/pull/36061#discussion_r533718029 const validateAbortSignal = (signal, name) => { if (typeof signal !== 'object' || !('aborted' in signal)) { throw new ERR_INVALID_ARG_TYPE(name, 'AbortSignal', signal) } } module.exports.addAbortSignal = function addAbortSignal(signal, stream) { validateAbortSignal(signal, 'signal') if (!isNodeStream(stream) && !isWebStream(stream)) { throw new ERR_INVALID_ARG_TYPE('stream', ['ReadableStream', 'WritableStream', 'Stream'], stream) } return module.exports.addAbortSignalNoValidate(signal, stream) } module.exports.addAbortSignalNoValidate = function (signal, stream) { if (typeof signal !== 'object' || !('aborted' in signal)) { return stream } const onAbort = isNodeStream(stream) ? () => { stream.destroy( new AbortError(undefined, { cause: signal.reason }) ) } : () => { stream[kControllerErrorFunction]( new AbortError(undefined, { cause: signal.reason }) ) } if (signal.aborted) { onAbort() } else { addAbortListener = addAbortListener || require('../../ours/util').addAbortListener const disposable = addAbortListener(signal, onAbort) eos(stream, disposable[SymbolDispose]) } return stream }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DMontgomery40/mcp-3D-printer-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server