-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathindex.js
executable file
·364 lines (324 loc) · 9.81 KB
/
index.js
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
#!/usr/bin/env node
import dotenv from "dotenv";
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import {
CallToolRequestSchema,
ListToolsRequestSchema,
} from "@modelcontextprotocol/sdk/types.js";
import { fetch } from "undici";
import { exec as execCallback } from "child_process";
import { promisify } from "util";
import chalk from "chalk";
import * as os from "node:os";
import * as path from "node:path";
import * as fs from "node:fs";
import { fileURLToPath } from "url";
// Configuration
dotenv.config();
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const execAsync = promisify(execCallback);
const version = process.env.npm_package_version || "0.1.0";
const debug = process.env.DEBUG === "true";
// Utility functions
function createDialog(lines) {
const maxLineWidth = Math.max(...lines.map((line) => line.length), 60);
const border = chalk.gray("-".repeat(maxLineWidth));
return [border, ...lines, border, ""].join("\n");
}
function isDirectory(dirPath) {
try {
return fs.statSync(dirPath).isDirectory();
} catch (error) {
return false;
}
}
function log(...args) {
if (debug) {
const msg = `[DEBUG ${new Date().toISOString()}] ${args.join(" ")}\n`;
process.stderr.write(msg);
}
}
async function findNodePath() {
try {
return process.execPath;
} catch (error) {
try {
const cmd = process.platform === "win32" ? "where" : "which";
const { stdout } = await execAsync(`${cmd} node`);
return stdout.toString().trim().split("\n")[0];
} catch (err) {
return "node"; // Fallback
}
}
}
// Tool handlers
const HANDLERS = {
getApiOverview: async (request) => {
const { id } = request.params.arguments;
log("Executing getApiOverview for API:", id);
try {
// Fetch from oapis.org/overview endpoint
const url = `https://oapis.org/overview/${encodeURIComponent(id)}`;
log("SLOP API request URL:", url);
const response = await fetch(url);
if (!response.ok) {
const error = await response.text();
throw new Error(`SLOP API error: ${error}`);
}
// Get response
let responseContent = await response.text();
const tooBig = responseContent.length > 250000;
if (tooBig) {
throw new Error(
`The SLOP found is too large to process with this MCP. Please try a different OpenAPI.`,
);
}
return {
content: [{ type: "text", text: responseContent }],
metadata: {},
};
} catch (error) {
log("Error handling SLOP API overview request:", error);
return {
content: [
{
type: "text",
text: `Error: ${
error instanceof Error ? error.message : String(error)
}`,
},
],
metadata: {},
isError: true,
};
}
},
getApiOperation: async (request) => {
const { id, operationIdOrRoute } = request.params.arguments;
log(
"Executing getApiOperation for API:",
id,
"Operation:",
operationIdOrRoute,
);
try {
// Fetch from oapis.org/openapi endpoint instead of summary
const url = `https://oapis.org/openapi/${encodeURIComponent(
id,
)}/${operationIdOrRoute}`;
log("SLOP API request URL:", url);
const response = await fetch(url);
if (!response.ok) {
const error = await response.text();
throw new Error(`SLOP API error: ${error}`);
}
return {
content: [{ type: "text", text: await response.text() }],
metadata: {},
};
} catch (error) {
log("Error handling SLOP API operation request:", error);
return {
content: [
{
type: "text",
text: `Error: ${
error instanceof Error ? error.message : String(error)
}`,
},
],
metadata: {},
isError: true,
};
}
},
};
// Initialize the SLOP MCP server
export async function init() {
console.log(
createDialog([
`👋 Welcome to ${chalk.yellow("mcp-server-slop")} v${version}!`,
`💁♀️ This ${chalk.green(
"'init'",
)} process will install the SLOP MCP Server into Claude Desktop`,
` enabling Claude to search and analyze OpenAPI specifications.`,
`🧡 Let's get started.`,
]),
);
console.log(`${chalk.yellow("Step 1:")} Checking for Claude Desktop...`);
const claudeConfigPath = path.join(
os.homedir(),
"Library",
"Application Support",
"Claude",
"claude_desktop_config.json",
);
const nodePath = await findNodePath();
const config = {
command: nodePath,
args: [__filename, "run"],
};
console.log(
`Looking for existing config in: ${chalk.yellow(
path.dirname(claudeConfigPath),
)}`,
);
const configDirExists = isDirectory(path.dirname(claudeConfigPath));
if (configDirExists) {
const existingConfig = fs.existsSync(claudeConfigPath)
? JSON.parse(fs.readFileSync(claudeConfigPath, "utf8"))
: { mcpServers: {} };
if ("slop" in (existingConfig?.mcpServers || {})) {
console.log(
`${chalk.green(
"Note:",
)} Replacing existing SLOP MCP config:\n${chalk.gray(
JSON.stringify(existingConfig.mcpServers.slop),
)}`,
);
}
const newConfig = {
...existingConfig,
mcpServers: {
...existingConfig.mcpServers,
slop: config,
},
};
fs.writeFileSync(claudeConfigPath, JSON.stringify(newConfig, null, 2));
console.log(
`${chalk.yellow(
"mcp-server-slop",
)} configured & added to Claude Desktop!`,
);
console.log(`Wrote config to ${chalk.yellow(claudeConfigPath)}`);
console.log(
chalk.blue(
`Try asking Claude to "search for an OpenAPI specification" to get started!`,
),
);
} else {
const fullConfig = { mcpServers: { slop: config } };
console.log(
`Couldn't detect Claude Desktop config at ${claudeConfigPath}.\nTo add the SLOP MCP server manually, add the following config to your ${chalk.yellow(
"MCP config-file",
)}:\n\n${JSON.stringify(fullConfig, null, 2)}`,
);
}
}
// Start the MCP server
async function main() {
log("Starting SLOP MCP server...");
try {
const server = new Server(
{ name: "slop", version: "1.0.0" },
{ capabilities: { tools: {} } },
);
// Handle list tools request
server.setRequestHandler(ListToolsRequestSchema, async () => {
log("Received list tools request");
const openpaiIds = await fetch("https://openapisearch.com/").then((res) =>
res.text(),
);
// Define the tool schemas
const GET_API_OVERVIEW_TOOL = {
name: "getApiOverview",
description: `Get an overview of an OpenAPI specification. This should be the first step when working with any API.\n\n${openpaiIds}`,
inputSchema: {
type: "object",
properties: {
id: {
type: "string",
description:
"API identifier, can be a known ID from openapisearch.com or a URL leading to a raw OpenAPI file",
},
},
required: ["id"],
},
};
const GET_API_OPERATION_TOOL = {
name: "getApiOperation",
description: `Get details about a specific operation from an OpenAPI specification. Use this after getting an overview.\n\n${openpaiIds}`,
inputSchema: {
type: "object",
properties: {
id: {
type: "string",
description:
"API identifier, can be a known ID from openapisearch.com or a URL leading to a raw OpenAPI file",
},
operationIdOrRoute: {
type: "string",
description: "Operation ID or route path to retrieve",
},
},
required: ["id", "operationIdOrRoute"],
},
};
return { tools: [GET_API_OVERVIEW_TOOL, GET_API_OPERATION_TOOL] };
});
// Handle tool calls
server.setRequestHandler(CallToolRequestSchema, async (request) => {
const toolName = request.params.name;
log("Received tool call:", toolName);
try {
const handler = HANDLERS[toolName];
if (!handler) {
throw new Error(`Unknown tool: ${toolName}`);
}
return await handler(request);
} catch (error) {
log("Error handling tool call:", error);
return {
toolResult: {
content: [
{
type: "text",
text: `Error: ${
error instanceof Error ? error.message : String(error)
}`,
},
],
isError: true,
},
};
}
});
// Connect to transport
const transport = new StdioServerTransport();
log("Created transport");
await server.connect(transport);
log("Server connected and running");
} catch (error) {
log("Fatal error:", error);
process.exit(1);
}
}
// Handle process events
process.on("uncaughtException", (error) => {
log("Uncaught exception:", error);
});
process.on("unhandledRejection", (error) => {
log("Unhandled rejection:", error);
});
// Command line handling
const [cmd, ...args] = process.argv.slice(2);
if (cmd === "init") {
init()
.then(() => {
console.log("Initialization complete!");
})
.catch((error) => {
console.error("Error during initialization:", error);
process.exit(1);
});
} else if (cmd === "run") {
main().catch((error) => {
console.error("Error starting server:", error);
process.exit(1);
});
} else {
console.error(`Unknown command: ${cmd}. Expected 'init' or 'run'.`);
process.exit(1);
}