1 parent 30930d5 commit efda746Copy full SHA for efda746
1 file changed
packages/sbot.commons/src/settings.ts
@@ -126,8 +126,14 @@ export interface McpBuiltin {
126
description?: string
127
}
128
129
+export enum McpTransport {
130
+ Http = 'http',
131
+ Sse = 'sse',
132
+ Stdio = 'stdio',
133
+}
134
+
135
export interface McpEntry {
- type: string
136
+ type: McpTransport
137
url?: string
138
headers?: Record<string, string>
139
command?: string
0 commit comments