-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmcp-test-suite.js
More file actions
244 lines (202 loc) · 6.59 KB
/
mcp-test-suite.js
File metadata and controls
244 lines (202 loc) · 6.59 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
/**
* MCP connectivity and basic functionality test suite
*/
/**
* MCP test suite class
*/
export class MCPTestSuite {
constructor(client, logger) {
this.client = client;
this.logger = logger;
}
/**
* Run all basic MCP tests
*/
async runAllTests() {
await this.testCapabilities();
await this.testListTools();
await this.testCallTool();
await this.testListResources();
await this.testReadResource();
await this.testListPrompts();
await this.testGetPrompt();
}
/**
* Test calling a simple tool
*/
async testCallTool() {
try {
this.logger.log("Testing tool execution...");
// Try to call a simple resolve languages tool
const result = await this.client.callTool(
{ name: "codeql_resolve_languages", arguments: {} },
undefined,
{ timeout: 300000, resetTimeoutOnProgress: true }
);
this.logger.log(`Tool result: ${JSON.stringify(result, null, 2)}`);
const hasContent = result.content && result.content.length > 0;
this.logger.logTest("Call Tool (codeql_resolve_languages)", hasContent);
return hasContent;
} catch (error) {
this.logger.logTest("Call Tool (codeql_resolve_languages)", false, error);
return false;
}
}
/**
* Test server capabilities
*/
async testCapabilities() {
try {
this.logger.log("Testing server capabilities...");
const capabilities = this.client.getServerCapabilities();
// Check for expected capabilities
const expectedCapabilities = ["tools", "resources", "prompts"];
let allPresent = true;
for (const capability of expectedCapabilities) {
if (!capabilities[capability]) {
this.logger.log(`Missing capability: ${capability}`, "WARN");
allPresent = false;
}
}
this.logger.log(`Server Capabilities: ${JSON.stringify(capabilities, null, 2)}`);
this.logger.logTest("Server Capabilities", allPresent);
return allPresent;
} catch (error) {
this.logger.logTest("Server Capabilities", false, error);
return false;
}
}
/**
* Test getting a prompt
*/
async testGetPrompt() {
try {
this.logger.log("Testing prompt retrieval...");
// First get list of prompts
const response = await this.client.listPrompts();
const prompts = response.prompts || [];
if (prompts.length === 0) {
throw new Error("No prompts available to test");
}
// Try to get the first prompt
const prompt = prompts[0];
const args = {};
// Add any required arguments with default values
if (prompt.arguments) {
for (const arg of prompt.arguments) {
if (arg.required) {
// Provide valid default values based on the argument name and schema
if (arg.name === "queryType") {
args[arg.name] = "security";
} else if (arg.name === "language") {
args[arg.name] = "javascript";
} else {
args[arg.name] = "test-value";
}
}
}
}
const result = await this.client.getPrompt({
name: prompt.name,
arguments: args
});
this.logger.log(`Prompt has ${result.messages?.length || 0} messages`);
const hasMessages = result.messages && result.messages.length > 0;
this.logger.logTest("Get Prompt", hasMessages);
return hasMessages;
} catch (error) {
this.logger.logTest("Get Prompt", false, error);
return false;
}
}
/**
* Test listing prompts
*/
async testListPrompts() {
try {
this.logger.log("Testing prompt listing...");
const response = await this.client.listPrompts();
const prompts = response.prompts || [];
this.logger.log(`Found ${prompts.length} prompts`);
for (const prompt of prompts) {
// Log all prompts found
this.logger.log(` - ${prompt.name}: ${prompt.description}`);
}
this.logger.logTest("List Prompts", prompts.length > 0);
return prompts.length > 0;
} catch (error) {
this.logger.logTest("List Prompts", false, error);
return false;
}
}
/**
* Test listing resources
*/
async testListResources() {
try {
this.logger.log("Testing resource listing...");
const response = await this.client.listResources();
const resources = response.resources || [];
this.logger.log(`Found ${resources.length} resources`);
for (const resource of resources) {
// Log all resources found
this.logger.log(` - ${resource.uri}: ${resource.name || "No name"}`);
}
this.logger.logTest("List Resources", resources.length > 0);
return resources.length > 0;
} catch (error) {
this.logger.logTest("List Resources", false, error);
return false;
}
}
/**
* Test listing tools
*/
async testListTools() {
try {
this.logger.log("Testing tool listing...");
const response = await this.client.listTools();
const tools = response.tools || [];
this.logger.log(`Found ${tools.length} tools`);
for (const tool of tools) {
// Log all tools found
this.logger.log(` - ${tool.name}: ${tool.description}`);
}
// Check for some expected CodeQL tools
const expectedTools = ["codeql_resolve_languages", "codeql_database_create"];
const foundTools = tools.map((t) => t.name);
const hasExpectedTools = expectedTools.some((tool) => foundTools.includes(tool));
this.logger.logTest("List Tools", tools.length > 0 && hasExpectedTools);
return tools.length > 0;
} catch (error) {
this.logger.logTest("List Tools", false, error);
return false;
}
}
/**
* Test reading a resource
*/
async testReadResource() {
try {
this.logger.log("Testing resource reading...");
// First get list of resources
const response = await this.client.listResources();
const resources = response.resources || [];
if (resources.length === 0) {
throw new Error("No resources available to test");
}
// Try to read the first resource
const resource = resources[0];
const result = await this.client.readResource({
uri: resource.uri
});
this.logger.log(`Resource content length: ${result.contents?.[0]?.text?.length || 0} chars`);
const hasContent = result.contents && result.contents.length > 0;
this.logger.logTest("Read Resource", hasContent);
return hasContent;
} catch (error) {
this.logger.logTest("Read Resource", false, error);
return false;
}
}
}