mirror of
https://github.com/aaronjmars/opendia.git
synced 2025-12-29 16:16:00 +00:00
opendia init
This commit is contained in:
418
opendia-mcp/server.js
Normal file
418
opendia-mcp/server.js
Normal file
@@ -0,0 +1,418 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
const WebSocket = require("ws");
|
||||
const express = require("express");
|
||||
|
||||
// WebSocket server for Chrome Extension
|
||||
const wss = new WebSocket.Server({ port: 3000 });
|
||||
let chromeExtensionSocket = null;
|
||||
let availableTools = [];
|
||||
|
||||
// Tool call tracking
|
||||
const pendingCalls = new Map();
|
||||
|
||||
// Simple MCP protocol implementation over stdio
|
||||
async function handleMCPRequest(request) {
|
||||
const { method, params, id } = request;
|
||||
|
||||
// Handle notifications (no id means it's a notification)
|
||||
if (!id && method && method.startsWith("notifications/")) {
|
||||
console.error(`Received notification: ${method}`);
|
||||
return null; // No response needed for notifications
|
||||
}
|
||||
|
||||
// Handle requests that don't need implementation
|
||||
if (id === undefined || id === null) {
|
||||
return null; // No response for notifications
|
||||
}
|
||||
|
||||
try {
|
||||
let result;
|
||||
|
||||
switch (method) {
|
||||
case "initialize":
|
||||
// RESPOND IMMEDIATELY - don't wait for extension
|
||||
console.error(`MCP client initializing: ${params?.clientInfo?.name || "unknown"}`);
|
||||
result = {
|
||||
protocolVersion: "2024-11-05",
|
||||
capabilities: {
|
||||
tools: {},
|
||||
},
|
||||
serverInfo: {
|
||||
name: "browser-mcp-server",
|
||||
version: "1.0.0",
|
||||
},
|
||||
instructions: "Browser automation tools via Chrome Extension bridge. Extension may take a moment to connect."
|
||||
};
|
||||
break;
|
||||
|
||||
case "tools/list":
|
||||
// Return tools even if extension not connected yet
|
||||
if (availableTools.length > 0) {
|
||||
result = {
|
||||
tools: availableTools.map((tool) => ({
|
||||
name: tool.name,
|
||||
description: tool.description,
|
||||
inputSchema: tool.inputSchema,
|
||||
})),
|
||||
};
|
||||
} else {
|
||||
// Return static tools with note that extension is connecting
|
||||
result = {
|
||||
tools: getStaticTools().map(tool => ({
|
||||
...tool,
|
||||
description: tool.description + " (Extension connecting...)"
|
||||
}))
|
||||
};
|
||||
}
|
||||
break;
|
||||
|
||||
case "tools/call":
|
||||
if (!chromeExtensionSocket || chromeExtensionSocket.readyState !== WebSocket.OPEN) {
|
||||
// Extension not connected - return helpful error
|
||||
result = {
|
||||
content: [
|
||||
{
|
||||
type: "text",
|
||||
text: "❌ Chrome Extension not connected. Please install and activate the browser extension, then try again.\n\nSetup instructions:\n1. Go to chrome://extensions/\n2. Enable Developer mode\n3. Click 'Load unpacked' and select the extension folder\n4. Ensure the extension is active",
|
||||
},
|
||||
],
|
||||
isError: true
|
||||
};
|
||||
} else {
|
||||
// Extension connected - try the tool call
|
||||
try {
|
||||
const toolResult = await callBrowserTool(
|
||||
params.name,
|
||||
params.arguments || {}
|
||||
);
|
||||
result = {
|
||||
content: [
|
||||
{
|
||||
type: "text",
|
||||
text: JSON.stringify(toolResult, null, 2),
|
||||
},
|
||||
],
|
||||
isError: false
|
||||
};
|
||||
} catch (error) {
|
||||
result = {
|
||||
content: [
|
||||
{
|
||||
type: "text",
|
||||
text: `❌ Tool execution failed: ${error.message}`,
|
||||
},
|
||||
],
|
||||
isError: true
|
||||
};
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case "resources/list":
|
||||
// Return empty resources list
|
||||
result = { resources: [] };
|
||||
break;
|
||||
|
||||
case "prompts/list":
|
||||
// Return empty prompts list
|
||||
result = { prompts: [] };
|
||||
break;
|
||||
|
||||
default:
|
||||
throw new Error(`Unknown method: ${method}`);
|
||||
}
|
||||
|
||||
return { jsonrpc: "2.0", id, result };
|
||||
} catch (error) {
|
||||
return {
|
||||
jsonrpc: "2.0",
|
||||
id,
|
||||
error: {
|
||||
code: -32603,
|
||||
message: error.message,
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// Static tool definitions for when extension isn't connected
|
||||
function getStaticTools() {
|
||||
return [
|
||||
{
|
||||
name: "browser_navigate",
|
||||
description: "Navigate to a URL in the active tab",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
url: { type: "string", description: "URL to navigate to" }
|
||||
},
|
||||
required: ["url"]
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_get_tabs",
|
||||
description: "Get all open browser tabs",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_create_tab",
|
||||
description: "Create a new browser tab",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
url: { type: "string", description: "URL for new tab" },
|
||||
active: { type: "boolean", description: "Make tab active" }
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_close_tab",
|
||||
description: "Close a tab by ID",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
tabId: { type: "integer", description: "Tab ID to close" }
|
||||
},
|
||||
required: ["tabId"]
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_execute_script",
|
||||
description: "Execute JavaScript in active tab",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
code: { type: "string", description: "JavaScript code" }
|
||||
},
|
||||
required: ["code"]
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_get_page_content",
|
||||
description: "Get page text content",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
selector: { type: "string", description: "CSS selector (optional)" }
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_take_screenshot",
|
||||
description: "Take screenshot of active tab",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
format: { type: "string", enum: ["png", "jpeg"], description: "Image format" }
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_get_bookmarks",
|
||||
description: "Get browser bookmarks",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
query: { type: "string", description: "Search query" }
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_add_bookmark",
|
||||
description: "Add a bookmark",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
title: { type: "string", description: "Bookmark title" },
|
||||
url: { type: "string", description: "Bookmark URL" }
|
||||
},
|
||||
required: ["title", "url"]
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_get_history",
|
||||
description: "Search browser history",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
query: { type: "string", description: "Search query" },
|
||||
maxResults: { type: "integer", description: "Max results" }
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_get_cookies",
|
||||
description: "Get cookies for domain",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
domain: { type: "string", description: "Domain name" }
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_fill_form",
|
||||
description: "Fill form on current page",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
formData: { type: "object", description: "Form field data" }
|
||||
},
|
||||
required: ["formData"]
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "browser_click_element",
|
||||
description: "Click element on page",
|
||||
inputSchema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
selector: { type: "string", description: "CSS selector" }
|
||||
},
|
||||
required: ["selector"]
|
||||
}
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
// Call browser tool through Chrome Extension
|
||||
async function callBrowserTool(toolName, args) {
|
||||
if (
|
||||
!chromeExtensionSocket ||
|
||||
chromeExtensionSocket.readyState !== WebSocket.OPEN
|
||||
) {
|
||||
throw new Error(
|
||||
"Chrome Extension not connected. Make sure the extension is installed and active."
|
||||
);
|
||||
}
|
||||
|
||||
const callId = Date.now().toString();
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
pendingCalls.set(callId, { resolve, reject });
|
||||
|
||||
chromeExtensionSocket.send(
|
||||
JSON.stringify({
|
||||
id: callId,
|
||||
method: toolName,
|
||||
params: args,
|
||||
})
|
||||
);
|
||||
|
||||
// Timeout after 30 seconds
|
||||
setTimeout(() => {
|
||||
if (pendingCalls.has(callId)) {
|
||||
pendingCalls.delete(callId);
|
||||
reject(new Error("Tool call timeout"));
|
||||
}
|
||||
}, 30000);
|
||||
});
|
||||
}
|
||||
|
||||
// Handle tool responses from Chrome Extension
|
||||
function handleToolResponse(message) {
|
||||
const pending = pendingCalls.get(message.id);
|
||||
if (pending) {
|
||||
pendingCalls.delete(message.id);
|
||||
if (message.error) {
|
||||
pending.reject(new Error(message.error.message));
|
||||
} else {
|
||||
pending.resolve(message.result);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Handle Chrome Extension connections
|
||||
wss.on("connection", (ws) => {
|
||||
console.error("Chrome Extension connected");
|
||||
chromeExtensionSocket = ws;
|
||||
|
||||
// Set up ping/pong for keepalive
|
||||
const pingInterval = setInterval(() => {
|
||||
if (ws.readyState === WebSocket.OPEN) {
|
||||
ws.ping();
|
||||
}
|
||||
}, 30000);
|
||||
|
||||
ws.on("message", (data) => {
|
||||
try {
|
||||
const message = JSON.parse(data);
|
||||
|
||||
if (message.type === "register") {
|
||||
availableTools = message.tools;
|
||||
console.error(`Registered ${availableTools.length} browser tools`);
|
||||
} else if (message.type === "ping") {
|
||||
// Respond to ping with pong
|
||||
ws.send(JSON.stringify({ type: "pong", timestamp: Date.now() }));
|
||||
} else if (message.id) {
|
||||
// Handle tool response
|
||||
handleToolResponse(message);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error processing message:", error);
|
||||
}
|
||||
});
|
||||
|
||||
ws.on("close", () => {
|
||||
console.error("Chrome Extension disconnected");
|
||||
chromeExtensionSocket = null;
|
||||
clearInterval(pingInterval);
|
||||
});
|
||||
|
||||
ws.on("error", (error) => {
|
||||
console.error("WebSocket error:", error);
|
||||
});
|
||||
|
||||
ws.on("pong", () => {
|
||||
// Extension is alive
|
||||
});
|
||||
});
|
||||
|
||||
// Read from stdin
|
||||
let inputBuffer = "";
|
||||
process.stdin.on("data", async (chunk) => {
|
||||
inputBuffer += chunk.toString();
|
||||
|
||||
// Process complete lines
|
||||
const lines = inputBuffer.split("\n");
|
||||
inputBuffer = lines.pop() || "";
|
||||
|
||||
for (const line of lines) {
|
||||
if (line.trim()) {
|
||||
try {
|
||||
const request = JSON.parse(line);
|
||||
const response = await handleMCPRequest(request);
|
||||
|
||||
// Only send response if one was generated (not for notifications)
|
||||
if (response) {
|
||||
process.stdout.write(JSON.stringify(response) + "\n");
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error processing request:", error);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Optional: HTTP endpoint for health checks
|
||||
const app = express();
|
||||
app.get("/health", (req, res) => {
|
||||
res.json({
|
||||
status: "ok",
|
||||
chromeExtensionConnected: chromeExtensionSocket !== null,
|
||||
availableTools: availableTools.length,
|
||||
});
|
||||
});
|
||||
|
||||
app.listen(3001, () => {
|
||||
console.error(
|
||||
"Health check endpoint available at http://localhost:3001/health"
|
||||
);
|
||||
});
|
||||
|
||||
console.error("Browser MCP Server started");
|
||||
console.error("Waiting for Chrome Extension connection on ws://localhost:3000");
|
||||
Reference in New Issue
Block a user