-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmcpServer.js
More file actions
executable file
·395 lines (348 loc) · 11 KB
/
Copy pathmcpServer.js
File metadata and controls
executable file
·395 lines (348 loc) · 11 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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
#!/usr/bin/env node
import dotenv from "dotenv";
import express from "express";
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { SSEServerTransport } from "@modelcontextprotocol/sdk/server/sse.js";
import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
import {
CallToolRequestSchema,
ErrorCode,
ListToolsRequestSchema,
McpError,
} from "@modelcontextprotocol/sdk/types.js";
import { discoverTools } from "./lib/tools.js";
import path from "path";
import { fileURLToPath } from "url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
dotenv.config({ path: path.resolve(__dirname, ".env") });
const SERVER_NAME = "bigcommerce-api-mcp";
async function transformTools(tools) {
return tools
.map((tool) => {
const definitionFunction = tool.definition?.function;
if (!definitionFunction) return;
return {
name: definitionFunction.name,
description: definitionFunction.description,
inputSchema: definitionFunction.parameters,
};
})
.filter(Boolean);
}
async function setupServerHandlers(server, tools) {
server.setRequestHandler(ListToolsRequestSchema, async () => ({
tools: await transformTools(tools),
}));
server.setRequestHandler(CallToolRequestSchema, async (request) => {
const toolName = request.params.name;
const tool = tools.find((t) => t.definition.function.name === toolName);
if (!tool) {
throw new McpError(ErrorCode.MethodNotFound, `Unknown tool: ${toolName}`);
}
const args = request.params.arguments;
const requiredParameters =
tool.definition?.function?.parameters?.required || [];
for (const requiredParameter of requiredParameters) {
if (!(requiredParameter in args)) {
throw new McpError(
ErrorCode.InvalidParams,
`Missing required parameter: ${requiredParameter}`
);
}
}
try {
const result = await tool.function(args);
// Format response for better Agno compatibility
// Check if result has error property and handle accordingly
if (result && typeof result === 'object' && result.error) {
return {
content: [
{
type: "text",
text: `Error: ${result.error}`,
},
],
isError: true,
};
}
// For successful results, provide both raw data and formatted text
// This approach ensures compatibility with different MCP clients
let formattedResult;
if (typeof result === 'string') {
formattedResult = result;
} else if (typeof result === 'object' && result !== null) {
// For objects, provide a more readable format for Agno
if (Array.isArray(result)) {
formattedResult = `Found ${result.length} items:\n${JSON.stringify(result, null, 2)}`;
} else if (result.data && Array.isArray(result.data)) {
formattedResult = `Found ${result.data.length} items:\n${JSON.stringify(result, null, 2)}`;
} else {
formattedResult = JSON.stringify(result, null, 2);
}
} else {
formattedResult = String(result);
}
return {
content: [
{
type: "text",
text: formattedResult,
},
],
// Include metadata for advanced clients
_meta: {
toolName,
resultType: typeof result,
hasData: result && typeof result === 'object' && (result.data || Array.isArray(result)),
timestamp: new Date().toISOString(),
},
};
} catch (error) {
console.error("[Error] Failed to fetch data:", error);
throw new McpError(
ErrorCode.InternalError,
`API error: ${error.message}`
);
}
});
}
// Authentication middleware
function authenticateRequest(req, res, next) {
const authHeader = req.headers.authorization;
const expectedToken = process.env.MCP_AUTH_TOKEN;
// Skip auth if no token is configured
if (!expectedToken) {
return next();
}
if (!authHeader || !authHeader.startsWith('Bearer ')) {
return res.status(401).json({
jsonrpc: "2.0",
error: {
code: -32001,
message: "Unauthorized: Missing or invalid authorization header"
},
id: null
});
}
const token = authHeader.substring(7);
if (token !== expectedToken) {
return res.status(401).json({
jsonrpc: "2.0",
error: {
code: -32001,
message: "Unauthorized: Invalid token"
},
id: null
});
}
next();
}
async function setupStreamableHttp(tools) {
const app = express();
app.use(express.json());
// Add CORS middleware for better compatibility with web clients
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization, Mcp-Session-Id');
if (req.method === 'OPTIONS') {
res.sendStatus(200);
} else {
next();
}
});
app.get('/health', (req, res) => {
res.status(200).json({
status: 'healthy',
server: SERVER_NAME,
version: '0.1.0',
capabilities: ['tools'],
timestamp: new Date().toISOString(),
});
});
// Add info endpoint for better discoverability
app.get('/info', (req, res) => {
res.status(200).json({
name: SERVER_NAME,
version: '0.1.0',
description: 'BigCommerce API MCP server with tools for products, customers, and orders',
capabilities: {
tools: {},
},
supportedTransports: ['stdio', 'sse', 'streamable-http'],
});
});
app.post("/mcp", authenticateRequest, async (req, res) => {
try {
const server = new Server(
{
name: SERVER_NAME,
version: "0.1.0",
},
{
capabilities: {
tools: {},
},
}
);
server.onerror = (error) => console.error("[Error]", error);
await setupServerHandlers(server, tools);
const transport = new StreamableHTTPServerTransport({
sessionIdGenerator: undefined,
});
res.on("close", async () => {
await transport.close();
await server.close();
});
await server.connect(transport);
await transport.handleRequest(req, res, req.body);
} catch (error) {
console.error("Error handling MCP request:", error);
if (!res.headersSent) {
res.status(500).json({
jsonrpc: "2.0",
error: {
code: -32603,
message: "Internal server error",
},
id: null,
});
}
}
});
const port = process.env.PORT || 3000;
app.listen(port, () => {
console.log(
`[Streamable HTTP Server] running at http://127.0.0.1:${port}/mcp`
);
console.log(`[Health Check] available at http://127.0.0.1:${port}/health`);
console.log(`[Server Info] available at http://127.0.0.1:${port}/info`);
});
}
async function setupSSE(tools) {
const app = express();
const transports = {};
const servers = {};
// Add CORS middleware for better compatibility with web clients
app.use((req, res, next) => {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization, Cache-Control');
if (req.method === 'OPTIONS') {
res.sendStatus(200);
} else {
next();
}
});
app.get("/sse", async (_req, res) => {
const server = new Server(
{
name: SERVER_NAME,
version: "0.1.0",
},
{
capabilities: {
tools: {},
},
}
);
server.onerror = (error) => console.error("[Error]", error);
await setupServerHandlers(server, tools);
const transport = new SSEServerTransport("/messages", res);
transports[transport.sessionId] = transport;
servers[transport.sessionId] = server;
res.on("close", async () => {
delete transports[transport.sessionId];
await server.close();
delete servers[transport.sessionId];
});
await server.connect(transport);
});
app.post("/messages", async (req, res) => {
const sessionId = req.query.sessionId;
const transport = transports[sessionId];
const server = servers[sessionId];
if (transport && server) {
await transport.handlePostMessage(req, res);
} else {
res.status(400).send("No transport/server found for sessionId");
}
});
// Add health check endpoint
app.get('/health', (req, res) => {
res.status(200).json({
status: 'healthy',
server: SERVER_NAME,
version: '0.1.0',
transport: 'sse',
activeSessions: Object.keys(transports).length,
timestamp: new Date().toISOString(),
});
});
const port = process.env.PORT || 3000;
app.listen(port, () => {
console.log(`[SSE Server] is running:`);
console.log(` SSE stream: http://127.0.0.1:${port}/sse`);
console.log(` Message input: http://127.0.0.1:${port}/messages`);
console.log(` Health Check: http://127.0.0.1:${port}/health`);
});
}
async function setupStdio(tools) {
// stdio mode: single server instance
const server = new Server(
{
name: SERVER_NAME,
version: "0.1.0",
},
{
capabilities: {
tools: {},
},
}
);
server.onerror = (error) => console.error("[Error]", error);
await setupServerHandlers(server, tools);
process.on("SIGINT", async () => {
await server.close();
process.exit(0);
});
const transport = new StdioServerTransport();
await server.connect(transport);
}
async function run() {
const args = process.argv.slice(2);
const isStreamableHttp = args.includes("--streamable-http");
const isSSE = args.includes("--sse");
try {
const tools = await discoverTools();
console.log(`[Server] Loaded ${tools.length} tools successfully`);
if (isStreamableHttp && isSSE) {
console.error("Error: Cannot specify both --streamable-http and --sse");
process.exit(1);
}
if (isStreamableHttp) {
await setupStreamableHttp(tools);
} else if (isSSE) {
await setupSSE(tools);
} else {
await setupStdio(tools);
}
} catch (error) {
console.error("[Error] Failed to start server:", error.message);
// If in HTTP mode, still start the server with an empty tools array for health checks
if (isStreamableHttp || isSSE) {
console.log("[Server] Starting with limited functionality due to initialization error");
const tools = [];
if (isStreamableHttp) {
await setupStreamableHttp(tools);
} else if (isSSE) {
await setupSSE(tools);
}
} else {
process.exit(1);
}
}
}
run().catch(console.error);