-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathmcp.ts
171 lines (164 loc) · 5.32 KB
/
mcp.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
import { Command } from "@commander-js/extra-typings";
import { oneoffContext } from "../bundler/context.js";
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { actionDescription } from "./lib/command.js";
import { checkAuthorization } from "./lib/login.js";
import {
CallToolRequest,
CallToolRequestSchema,
ListToolsRequestSchema,
} from "@modelcontextprotocol/sdk/types.js";
import {
McpOptions,
RequestContext,
RequestCrash,
} from "./lib/mcp/requestContext.js";
import { mcpTool, convexTools, ConvexTool } from "./lib/mcp/tools/index.js";
import { Mutex } from "./lib/utils/mutex.js";
import { initializeBigBrainAuth } from "./lib/deploymentSelection.js";
const allToolNames = convexTools.map((t) => t.name).sort();
export const mcp = new Command("mcp")
.summary("Manage the Model Context Protocol server for Convex [BETA]")
.description(
"Commands to initialize and run a Model Context Protocol server for Convex that can be used with AI tools.\n" +
"This server exposes your Convex codebase to AI tools in a structured way.",
)
.allowExcessArguments(false);
mcp
.command("start")
.summary("Start the MCP server")
.description(
"Start the Model Context Protocol server for Convex that can be used with AI tools.",
)
.option(
"--project-dir <project-dir>",
"Run the MCP server for a single project. By default, the MCP server can run for multiple projects, and each tool call specifies its project directory.",
)
.option(
"--disable-tools <tool-names>",
`Comma separated list of tool names to disable (options: ${allToolNames.join(", ")})`,
)
.option(
"--disable-production-deployments",
"Disable the MCP server from accessing production deployments.",
)
.addDeploymentSelectionOptions(actionDescription("Run the MCP server on"))
.action(async (options) => {
const ctx = await oneoffContext(options);
try {
const server = makeServer(options);
const transport = new StdioServerTransport();
await server.connect(transport);
// Keep the process running
await new Promise(() => {});
} catch (error: any) {
await ctx.crash({
exitCode: 1,
errorType: "fatal",
errForSentry: `Failed to start MCP server: ${error}`,
printedMessage: `Failed to start MCP server: ${error}`,
});
}
});
function makeServer(options: McpOptions) {
const disabledToolNames = new Set<string>();
for (const toolName of options.disableTools?.split(",") ?? []) {
const name = toolName.trim();
if (!allToolNames.includes(name)) {
// eslint-disable-next-line no-restricted-syntax
throw new Error(
`Disabled tool ${name} not found (valid tools: ${allToolNames.join(", ")})`,
);
}
disabledToolNames.add(name);
}
const enabledToolsByName: Record<string, ConvexTool<any, any>> = {};
for (const tool of convexTools) {
if (!disabledToolNames.has(tool.name)) {
enabledToolsByName[tool.name] = tool;
}
}
const mutex = new Mutex();
const server = new Server(
{
name: "Convex MCP Server",
version: "0.0.1",
},
{
capabilities: {
tools: {},
},
},
);
server.setRequestHandler(
CallToolRequestSchema,
async (request: CallToolRequest) => {
const ctx = new RequestContext(options);
await initializeBigBrainAuth(ctx, options);
try {
const authorized = await checkAuthorization(ctx, false);
if (!authorized) {
await ctx.crash({
exitCode: 1,
errorType: "fatal",
printedMessage:
"Not Authorized: Run `npx convex dev` to login to your Convex project.",
});
}
if (!request.params.arguments) {
await ctx.crash({
exitCode: 1,
errorType: "fatal",
printedMessage: "No arguments provided",
});
}
const convexTool = enabledToolsByName[request.params.name];
if (!convexTool) {
await ctx.crash({
exitCode: 1,
errorType: "fatal",
printedMessage: `Tool ${request.params.name} not found`,
});
}
const input = convexTool.inputSchema.parse(request.params.arguments);
// Serialize tool handlers since they're mutating the current working directory.
const result = await mutex.runExclusive(async () => {
return await convexTool.handler(ctx, input);
});
return {
content: [
{
type: "text",
text: JSON.stringify(result),
},
],
};
} catch (error: any) {
let message: string;
if (error instanceof RequestCrash) {
message = error.printedMessage;
} else if (error instanceof Error) {
message = error.message;
} else {
message = String(error);
}
return {
content: [
{
type: "text",
text: JSON.stringify({ error: message }),
},
],
isError: true,
};
}
},
);
server.setRequestHandler(ListToolsRequestSchema, async () => {
return {
tools: Object.values(enabledToolsByName).map(mcpTool),
};
});
return server;
}