-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathconnection.ts
More file actions
292 lines (258 loc) · 10.8 KB
/
Copy pathconnection.ts
File metadata and controls
292 lines (258 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
import type { OAuthClientProvider } from "@modelcontextprotocol/sdk/client/auth.js";
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse.js";
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";
import type { FetchLike } from "@modelcontextprotocol/sdk/shared/transport.js";
import { CfWorkerJsonSchemaValidator } from "@modelcontextprotocol/sdk/validation/cfworker";
import { Effect, Layer, Predicate, Stream } from "effect";
import { HttpClient, HttpClientRequest } from "effect/unstable/http";
// NOTE: `StdioClientTransport` is NOT imported eagerly. The upstream module
// (`@modelcontextprotocol/sdk/client/stdio.js`) touches `node:child_process`
// at evaluation time, which crashes workerd (incl. vitest-pool-workers) at
// SIGSEGV on module instantiation. Cloud callers set
// `dangerouslyAllowStdioMCP: false` and never reach the stdio branch below;
// prod bundles that DO use stdio load it via a dynamic import inside the
// stdio branch of `createMcpConnector`.
import type { McpRemoteIntegrationConfig, McpStdioIntegrationConfig } from "./types";
import { McpConnectionError, McpOAuthReauthorizationRequired } from "./errors";
// ---------------------------------------------------------------------------
// Connection type
// ---------------------------------------------------------------------------
export type McpConnection = {
readonly client: Client;
readonly close: () => Promise<void>;
};
export type McpConnector = Effect.Effect<
McpConnection,
McpConnectionError | McpOAuthReauthorizationRequired
>;
// ---------------------------------------------------------------------------
// Connector input — extends stored source data with resolved auth
// ---------------------------------------------------------------------------
export type RemoteConnectorInput = Omit<
McpRemoteIntegrationConfig,
"authenticationTemplate" | "remoteTransport" | "headers" | "queryParams"
> & {
readonly remoteTransport?: McpRemoteIntegrationConfig["remoteTransport"];
readonly headers?: Record<string, string>;
readonly queryParams?: Record<string, string>;
readonly authProvider?: OAuthClientProvider;
readonly httpClientLayer?: Layer.Layer<HttpClient.HttpClient>;
};
export type StdioConnectorInput = McpStdioIntegrationConfig;
export type ConnectorInput = RemoteConnectorInput | StdioConnectorInput;
// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------
const buildEndpointUrl = (endpoint: string, queryParams: Record<string, string>): URL => {
const url = new URL(endpoint);
for (const [key, value] of Object.entries(queryParams)) {
url.searchParams.set(key, value);
}
return url;
};
type HttpMethod = Parameters<typeof HttpClientRequest.make>[0];
const HTTP_METHODS = new Set<HttpMethod>([
"DELETE",
"GET",
"HEAD",
"OPTIONS",
"PATCH",
"POST",
"PUT",
]);
const httpMethodFrom = (method: string | undefined): HttpMethod => {
const normalized = (method ?? "GET").toUpperCase() as HttpMethod;
return HTTP_METHODS.has(normalized) ? normalized : "POST";
};
const headersFrom = (headers: HeadersInit | undefined): Headers =>
headers ? new Headers(headers) : new Headers();
const recordFromHeaders = (headers: Headers): Record<string, string> =>
Object.fromEntries(headers.entries());
const applyBody = async (
request: HttpClientRequest.HttpClientRequest,
headers: Headers,
body: BodyInit | null | undefined,
): Promise<HttpClientRequest.HttpClientRequest> => {
if (body == null) return request;
const contentType = headers.get("content-type") ?? undefined;
if (typeof body === "string") return HttpClientRequest.bodyText(request, body, contentType);
if (body instanceof URLSearchParams) {
return HttpClientRequest.bodyText(
request,
body.toString(),
contentType ?? "application/x-www-form-urlencoded;charset=UTF-8",
);
}
if (body instanceof Uint8Array)
return HttpClientRequest.bodyUint8Array(request, body, contentType);
if (body instanceof ArrayBuffer) {
return HttpClientRequest.bodyUint8Array(request, new Uint8Array(body), contentType);
}
const bytes = new Uint8Array(await new Response(body).arrayBuffer());
return HttpClientRequest.bodyUint8Array(request, bytes, contentType);
};
const abortError = (signal: AbortSignal): unknown => {
if (signal.reason !== undefined) return signal.reason;
// oxlint-disable-next-line executor/no-error-constructor -- boundary: Fetch-compatible adapter must reject with an AbortError-shaped value
const error = new Error("The operation was aborted");
error.name = "AbortError";
return error;
};
const fetchFromHttpClientLayer = (
httpClientLayer: Layer.Layer<HttpClient.HttpClient>,
): FetchLike => {
const execute: FetchLike = async (url, init) => {
const headers = headersFrom(init?.headers);
const requestWithoutBody = HttpClientRequest.make(httpMethodFrom(init?.method))(url, {
headers: recordFromHeaders(headers),
});
const request = await applyBody(requestWithoutBody, headers, init?.body);
const effect = Effect.gen(function* () {
const client = yield* HttpClient.HttpClient;
const response = yield* client.execute(request);
const responseHeaders = new Headers();
for (const [key, value] of Object.entries(response.headers)) {
if (value !== undefined) responseHeaders.set(key, value);
}
const body =
response.status === 204 || response.status === 205 || response.status === 304
? null
: Stream.toReadableStream(response.stream);
return new Response(body, {
status: response.status,
headers: responseHeaders,
});
}).pipe(Effect.provide(httpClientLayer));
const promise = Effect.runPromise(effect);
if (!init?.signal) return promise;
// oxlint-disable-next-line executor/no-promise-reject -- boundary: Fetch-compatible adapter mirrors abort rejection semantics
if (init.signal.aborted) return Promise.reject(abortError(init.signal));
const aborted = new Promise<never>((_, reject) => {
// oxlint-disable-next-line executor/no-promise-reject -- boundary: Fetch-compatible adapter races the Effect request against AbortSignal
init.signal?.addEventListener("abort", () => reject(abortError(init.signal!)), {
once: true,
});
});
return Promise.race([promise, aborted]);
};
return execute;
};
// Use the cfworker JSON Schema validator instead of the SDK's default
// (Ajv). Ajv compiles schemas via `new Function(...)`, which throws
// `Code generation from strings disallowed for this context` when the
// MCP plugin runs inside a Cloudflare Worker (executor.sh). The
// cfworker validator does not use code generation and works in every
// runtime we ship to.
const createClient = (): Client =>
new Client(
{ name: "executor-mcp", version: "0.1.0" },
{
capabilities: { elicitation: { form: {}, url: {} } },
jsonSchemaValidator: new CfWorkerJsonSchemaValidator(),
},
);
const connectionFromClient = (client: Client): McpConnection => ({
client,
close: () => client.close(),
});
const connectionFailure = (
transport: string,
message: string,
cause: unknown,
): McpConnectionError | McpOAuthReauthorizationRequired => {
if (Predicate.isTagged(cause, "McpOAuthReauthorizationRequired")) {
return new McpOAuthReauthorizationRequired({ message: "MCP OAuth re-authorization required" });
}
return new McpConnectionError({ transport, message });
};
const connectClient = (input: {
transport: string;
createTransport: () => Parameters<Client["connect"]>[0];
}): Effect.Effect<McpConnection, McpConnectionError | McpOAuthReauthorizationRequired> =>
Effect.gen(function* () {
const client = createClient();
const transportInstance = input.createTransport();
yield* Effect.tryPromise({
try: () => client.connect(transportInstance),
catch: (cause) =>
connectionFailure(input.transport, `Failed connecting via ${input.transport}`, cause),
}).pipe(
Effect.withSpan("plugin.mcp.connection.handshake", {
attributes: { "plugin.mcp.transport": input.transport },
}),
);
return connectionFromClient(client);
});
// ---------------------------------------------------------------------------
// Public factory
// ---------------------------------------------------------------------------
export const createMcpConnector = (input: ConnectorInput): McpConnector => {
if (input.transport === "stdio") {
const command = input.command.trim();
if (!command) {
return Effect.fail(
new McpConnectionError({
transport: "stdio",
message: "MCP stdio transport requires a command",
}),
);
}
return Effect.gen(function* () {
// Dynamic import so the underlying module (which evaluates
// `node:child_process`) is only loaded when stdio is actually used.
const { createStdioTransport } = yield* Effect.tryPromise({
try: () => import("./stdio-connector"),
catch: () =>
new McpConnectionError({
transport: "stdio",
message: "Failed to load stdio transport module",
}),
});
return yield* connectClient({
transport: "stdio",
createTransport: () =>
createStdioTransport({
command,
args: input.args,
env: input.env,
cwd: input.cwd?.trim().length ? input.cwd.trim() : undefined,
}),
});
});
}
// Remote transport
const headers = input.headers ?? {};
const remoteTransport = input.remoteTransport ?? "auto";
const requestInit = Object.keys(headers).length > 0 ? { headers } : undefined;
const fetch = input.httpClientLayer ? fetchFromHttpClientLayer(input.httpClientLayer) : undefined;
const endpoint = buildEndpointUrl(input.endpoint, input.queryParams ?? {});
const connectStreamableHttp = connectClient({
transport: "streamable-http",
createTransport: () =>
new StreamableHTTPClientTransport(endpoint, {
requestInit,
authProvider: input.authProvider,
fetch,
}),
});
const connectSse = connectClient({
transport: "sse",
createTransport: () =>
new SSEClientTransport(endpoint, {
requestInit,
authProvider: input.authProvider,
fetch,
}),
});
if (remoteTransport === "streamable-http") return connectStreamableHttp;
if (remoteTransport === "sse") return connectSse;
// auto: try streamable-http first, fall back to SSE for transport failures.
return connectStreamableHttp.pipe(
Effect.catch((error) =>
Predicate.isTagged(error, "McpOAuthReauthorizationRequired")
? Effect.fail(error)
: connectSse,
),
);
};