This repository was archived by the owner on May 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathmcp.ts
More file actions
218 lines (196 loc) · 4.89 KB
/
Copy pathmcp.ts
File metadata and controls
218 lines (196 loc) · 4.89 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
import { z } from "zod"
/**
* Maximum number of MCP tools that can be enabled before showing a warning.
* LLMs tend to perform poorly when given too many tools to choose from.
*/
export const MAX_MCP_TOOLS_THRESHOLD = 60
/**
* McpServerUse
*/
export interface McpServerUse {
type: string
serverName: string
toolName?: string
uri?: string
}
/**
* McpExecutionStatus
*/
export const mcpExecutionStatusSchema = z.discriminatedUnion("status", [
z.object({
executionId: z.string(),
status: z.literal("started"),
serverName: z.string(),
toolName: z.string(),
}),
z.object({
executionId: z.string(),
status: z.literal("output"),
response: z.string(),
}),
z.object({
executionId: z.string(),
status: z.literal("completed"),
response: z.string().optional(),
}),
z.object({
executionId: z.string(),
status: z.literal("error"),
error: z.string().optional(),
}),
])
export type McpExecutionStatus = z.infer<typeof mcpExecutionStatusSchema>
/**
* McpServer
*/
export type McpServer = {
name: string
config: string
status: "connected" | "connecting" | "disconnected"
error?: string
errorHistory?: McpErrorEntry[]
tools?: McpTool[]
resources?: McpResource[]
resourceTemplates?: McpResourceTemplate[]
disabled?: boolean
timeout?: number
source?: "global" | "project"
projectPath?: string
instructions?: string
}
export type McpTool = {
name: string
description?: string
inputSchema?: object
alwaysAllow?: boolean
enabledForPrompt?: boolean
}
export type McpResource = {
uri: string
name: string
mimeType?: string
description?: string
}
export type McpResourceTemplate = {
uriTemplate: string
name: string
description?: string
mimeType?: string
}
export type McpResourceResponse = {
_meta?: Record<string, any> // eslint-disable-line @typescript-eslint/no-explicit-any
contents: Array<{
uri: string
mimeType?: string
text?: string
blob?: string
}>
}
// Annotations for content items in tool call responses
export type McpContentAnnotations = {
audience?: Array<"user" | "assistant">
priority?: number
lastModified?: string
}
export type McpToolCallResponse = {
_meta?: Record<string, any> // eslint-disable-line @typescript-eslint/no-explicit-any
content: Array<
| {
type: "text"
text: string
annotations?: McpContentAnnotations
_meta?: Record<string, any> // eslint-disable-line @typescript-eslint/no-explicit-any
}
| {
type: "image"
data: string
mimeType: string
annotations?: McpContentAnnotations
_meta?: Record<string, any> // eslint-disable-line @typescript-eslint/no-explicit-any
}
| {
type: "audio"
data: string
mimeType: string
annotations?: McpContentAnnotations
_meta?: Record<string, any> // eslint-disable-line @typescript-eslint/no-explicit-any
}
| {
type: "resource"
resource: {
uri: string
mimeType?: string
text?: string
blob?: string
}
annotations?: McpContentAnnotations
_meta?: Record<string, any> // eslint-disable-line @typescript-eslint/no-explicit-any
}
| {
type: "resource_link"
uri: string
name: string
description?: string
mimeType?: string
size?: number
annotations?: McpContentAnnotations
_meta?: Record<string, any> // eslint-disable-line @typescript-eslint/no-explicit-any
icons?: Array<{
src: string
mimeType?: string
sizes?: string[]
theme?: "light" | "dark"
}>
title?: string
}
>
isError?: boolean
}
export type McpErrorEntry = {
message: string
timestamp: number
level: "error" | "warn" | "info"
}
/**
* Result of counting enabled MCP tools across servers.
*/
export interface EnabledMcpToolsCount {
/** Number of enabled and connected MCP servers */
enabledServerCount: number
/** Total number of enabled tools across all enabled servers */
enabledToolCount: number
}
/**
* Count the number of enabled MCP tools across all enabled and connected servers.
* This is a pure function that can be used in both backend and frontend contexts.
*
* @param servers - Array of MCP server objects
* @returns Object with enabledToolCount and enabledServerCount
*
* @example
* const { enabledToolCount, enabledServerCount } = countEnabledMcpTools(mcpServers)
* if (enabledToolCount > MAX_MCP_TOOLS_THRESHOLD) {
* // Show warning
* }
*/
export function countEnabledMcpTools(servers: McpServer[]): EnabledMcpToolsCount {
let serverCount = 0
let toolCount = 0
for (const server of servers) {
// Skip disabled servers
if (server.disabled) continue
// Skip servers that are not connected
if (server.status !== "connected") continue
serverCount++
// Count enabled tools on this server
if (server.tools) {
for (const tool of server.tools) {
// Tool is enabled if enabledForPrompt is undefined (default) or true
if (tool.enabledForPrompt !== false) {
toolCount++
}
}
}
}
return { enabledToolCount: toolCount, enabledServerCount: serverCount }
}