-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
executable file
·262 lines (239 loc) · 7.16 KB
/
index.js
File metadata and controls
executable file
·262 lines (239 loc) · 7.16 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
#!/usr/bin/env node
/**
* Copilot Plugin MCP Server
*
* Provides plugin management tools via Model Context Protocol
* Uses ONLY open-source components (SDK MIT licensed, MCP documented)
*
* Architecture:
* - MCP Server receives tool calls from Copilot CLI
* - Spawns SDK sessions with plugin system enabled
* - Returns results to AI via JSON-RPC
*/
const { Server } = require('@modelcontextprotocol/sdk/server/index.js');
const { StdioServerTransport } = require('@modelcontextprotocol/sdk/server/stdio.js');
const {
CallToolRequestSchema,
ListToolsRequestSchema
} = require('@modelcontextprotocol/sdk/types.js');
const { spawn } = require('child_process');
const path = require('path');
const fs = require('fs').promises;
// Path to our SDK fork with plugin system
const SDK_PATH = path.join(process.env.HOME, 'copilot-sdk');
const PLUGIN_REGISTRY = path.join(process.env.HOME, 'copilot-plugins-registry/plugins');
class CopilotPluginServer {
constructor() {
this.server = new Server(
{
name: 'copilot-plugin-server',
version: '1.0.0',
},
{
capabilities: {
tools: {},
},
}
);
this.setupHandlers();
}
setupHandlers() {
// List available tools
this.server.setRequestHandler(ListToolsRequestSchema, async () => ({
tools: [
{
name: 'plugin_list',
description: 'List all available plugins in the registry',
inputSchema: {
type: 'object',
properties: {},
},
},
{
name: 'plugin_info',
description: 'Get detailed information about a specific plugin',
inputSchema: {
type: 'object',
properties: {
name: {
type: 'string',
description: 'Plugin name',
},
},
required: ['name'],
},
},
{
name: 'plugin_test',
description: 'Test a plugin by running it in an SDK session',
inputSchema: {
type: 'object',
properties: {
name: {
type: 'string',
description: 'Plugin name to test',
},
input: {
type: 'string',
description: 'Test input/prompt',
},
},
required: ['name', 'input'],
},
},
],
}));
// Handle tool calls
this.server.setRequestHandler(CallToolRequestSchema, async (request) => {
const { name, arguments: args } = request.params;
switch (name) {
case 'plugin_list':
return await this.listPlugins();
case 'plugin_info':
return await this.getPluginInfo(args.name);
case 'plugin_test':
return await this.testPlugin(args.name, args.input);
default:
throw new Error(`Unknown tool: ${name}`);
}
});
}
async listPlugins() {
try {
const plugins = await fs.readdir(PLUGIN_REGISTRY);
const pluginList = [];
for (const pluginName of plugins) {
// Check for plugin.json first, fall back to package.json
let manifestPath = path.join(PLUGIN_REGISTRY, pluginName, 'plugin.json');
let usePackageJson = false;
try {
await fs.access(manifestPath);
} catch {
manifestPath = path.join(PLUGIN_REGISTRY, pluginName, 'package.json');
usePackageJson = true;
}
try {
const manifest = JSON.parse(await fs.readFile(manifestPath, 'utf8'));
pluginList.push({
name: manifest.name,
version: manifest.version,
description: manifest.description,
hooks: usePackageJson ? (manifest.copilot?.hooks || []) : (manifest.hooks || []),
manifestType: usePackageJson ? 'package.json' : 'plugin.json',
});
} catch (err) {
// Skip plugins without valid manifest
console.error(`Failed to load plugin ${pluginName}:`, err.message);
}
}
return {
content: [
{
type: 'text',
text: JSON.stringify({
total: pluginList.length,
plugins: pluginList,
}, null, 2),
},
],
};
} catch (error) {
return {
content: [
{
type: 'text',
text: `Error listing plugins: ${error.message}`,
},
],
isError: true,
};
}
}
async getPluginInfo(pluginName) {
try {
// Check for plugin.json first, fall back to package.json
let manifestPath = path.join(PLUGIN_REGISTRY, pluginName, 'plugin.json');
try {
await fs.access(manifestPath);
} catch {
manifestPath = path.join(PLUGIN_REGISTRY, pluginName, 'package.json');
}
const manifest = JSON.parse(await fs.readFile(manifestPath, 'utf8'));
const readmePath = path.join(PLUGIN_REGISTRY, pluginName, 'README.md');
let readme = '';
try {
readme = await fs.readFile(readmePath, 'utf8');
} catch (err) {
readme = 'No README available';
}
return {
content: [
{
type: 'text',
text: JSON.stringify({
manifest,
readme,
}, null, 2),
},
],
};
} catch (error) {
return {
content: [
{
type: 'text',
text: `Error getting plugin info: ${error.message}`,
},
],
isError: true,
};
}
}
async testPlugin(pluginName, testInput) {
try {
// This would spawn an SDK session with the plugin loaded
// For now, return a simulation of what would happen
// Check for plugin.json first, fall back to package.json
let manifestPath = path.join(PLUGIN_REGISTRY, pluginName, 'plugin.json');
try {
await fs.access(manifestPath);
} catch {
manifestPath = path.join(PLUGIN_REGISTRY, pluginName, 'package.json');
}
const manifest = JSON.parse(await fs.readFile(manifestPath, 'utf8'));
return {
content: [
{
type: 'text',
text: JSON.stringify({
status: 'simulated',
message: 'Plugin testing would require spawning SDK session',
plugin: manifest.name,
testInput,
expectedHooks: manifest.hooks || [],
note: 'In production, this would: (1) Spawn SDK process with plugin loaded, (2) Send test input, (3) Capture plugin behavior, (4) Return results',
}, null, 2),
},
],
};
} catch (error) {
return {
content: [
{
type: 'text',
text: `Error testing plugin: ${error.message}`,
},
],
isError: true,
};
}
}
async run() {
const transport = new StdioServerTransport();
await this.server.connect(transport);
console.error('Copilot Plugin MCP Server running on stdio');
}
}
// Run server
const server = new CopilotPluginServer();
server.run().catch(console.error);