-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.ts
executable file
·220 lines (195 loc) · 5.33 KB
/
index.ts
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
#!/usr/bin/env node
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import {
CallToolRequestSchema,
ListToolsRequestSchema,
Tool,
} from "@modelcontextprotocol/sdk/types.js";
import { NodeHtmlMarkdown } from 'node-html-markdown';
const WEB_SEARCH_TOOL: Tool = {
name: "searxng_web_search",
description:
"Performs a web search using the SearxNG API, ideal for general queries, news, articles, and online content. " +
"Use this for broad information gathering, recent events, or when you need diverse web sources.",
inputSchema: {
type: "object",
properties: {
query: {
type: "string",
description: "Search query",
},
count: {
type: "number",
description: "Number of results",
default: 20,
},
offset: {
type: "number",
description: "Pagination offset",
default: 0,
},
},
required: ["query"],
},
};
const READ_URL_TOOL: Tool = {
name: "web_url_read",
description:
"Read the content from an URL. " +
"Use this for further information retrieving to understand the content of each URL.",
inputSchema: {
type: "object",
properties: {
url: {
type: "string",
description: "URL",
},
},
required: ["url"],
},
};
// Server implementation
const server = new Server(
{
name: "example-servers/searxng-search",
version: "0.1.0",
},
{
capabilities: {
resources: {},
tools: {},
},
}
);
interface SearxNGWeb {
results: Array<{
title: string;
content: string;
url: string;
}>;
}
function isSearxNGWebSearchArgs(
args: unknown
): args is { query: string; count?: number } {
return (
typeof args === "object" &&
args !== null &&
"query" in args &&
typeof (args as { query: string }).query === "string"
);
}
async function performWebSearch(
query: string,
count: number = 10,
offset: number = 0
) {
const searxngUrl = process.env.SEARXNG_URL || "http://localhost:8080";
const url = new URL(`${searxngUrl}/search`);
url.searchParams.set("q", query);
url.searchParams.set("format", "json");
url.searchParams.set("start", offset.toString());
url.searchParams.set("count", count.toString());
const response = await fetch(url.toString(), {
method: "GET",
});
if (!response.ok) {
throw new Error(
`SearxNG API error: ${response.status} ${
response.statusText
}\n${await response.text()}`
);
}
const data = (await response.json()) as SearxNGWeb;
const results = (data.results || []).map((result) => ({
title: result.title || "",
content: result.content || "",
url: result.url || "",
}));
return results
.map((r) => `Title: ${r.title}\nDescription: ${r.content}\nURL: ${r.url}`)
.join("\n\n");
}
async function fetchAndConvertToMarkdown(url: string, timeoutMs: number = 10000) {
// Create an AbortController instance
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), timeoutMs);
try {
// Fetch the URL with the abort signal
const response = await fetch(url, {
signal: controller.signal
});
if (!response.ok) {
throw new Error(`Failed to fetch the URL: ${response.statusText}`);
}
// Retrieve HTML content
const htmlContent = await response.text();
// Convert HTML to Markdown
const markdownContent = NodeHtmlMarkdown.translate(htmlContent);
return markdownContent;
} catch (error: any) {
if (error.name === 'AbortError') {
throw new Error(`Request timed out after ${timeoutMs}ms`);
}
console.error('Error:', error.message);
throw error;
} finally {
// Clean up the timeout to prevent memory leaks
clearTimeout(timeoutId);
}
}
// Tool handlers
server.setRequestHandler(ListToolsRequestSchema, async () => ({
tools: [WEB_SEARCH_TOOL, READ_URL_TOOL],
}));
server.setRequestHandler(CallToolRequestSchema, async (request) => {
try {
const { name, arguments: args } = request.params;
if (!args) {
throw new Error("No arguments provided");
}
if (name === "searxng_web_search") {
if (!isSearxNGWebSearchArgs(args)) {
throw new Error("Invalid arguments for searxng_web_search");
}
const { query, count = 10 } = args;
const results = await performWebSearch(query, count);
return {
content: [{ type: "text", text: results }],
isError: false,
};
}
if (name === "web_url_read") {
const { url } = args;
const result = await fetchAndConvertToMarkdown(url as string);
return {
content: [{ type: "text", text: result }],
isError: false,
}
}
return {
content: [{ type: "text", text: `Unknown tool: ${name}` }],
isError: true,
};
} catch (error) {
return {
content: [
{
type: "text",
text: `Error: ${
error instanceof Error ? error.message : String(error)
}`,
},
],
isError: true,
};
}
});
async function runServer() {
const transport = new StdioServerTransport();
await server.connect(transport);
}
runServer().catch((error) => {
console.error("Fatal error running server:", error);
process.exit(1);
});