1
1
import { z } from "zod" ;
2
2
import { Tool as SDKTool } from "@modelcontextprotocol/sdk/types.js" ;
3
+ import { ImageContent } from "../transports/utils/image-handler.js" ;
3
4
4
5
export type ToolInputSchema < T > = {
5
6
[ K in keyof T ] : {
@@ -12,6 +13,22 @@ export type ToolInput<T extends ToolInputSchema<any>> = {
12
13
[ K in keyof T ] : z . infer < T [ K ] [ "type" ] > ;
13
14
} ;
14
15
16
+ export type TextContent = {
17
+ type : "text" ;
18
+ text : string ;
19
+ } ;
20
+
21
+ export type ErrorContent = {
22
+ type : "error" ;
23
+ text : string ;
24
+ } ;
25
+
26
+ export type ToolContent = TextContent | ErrorContent | ImageContent ;
27
+
28
+ export type ToolResponse = {
29
+ content : ToolContent [ ] ;
30
+ } ;
31
+
15
32
export interface ToolProtocol extends SDKTool {
16
33
name : string ;
17
34
description : string ;
@@ -25,9 +42,7 @@ export interface ToolProtocol extends SDKTool {
25
42
} ;
26
43
toolCall ( request : {
27
44
params : { name : string ; arguments ?: Record < string , unknown > } ;
28
- } ) : Promise < {
29
- content : Array < { type : string ; text : string } > ;
30
- } > ;
45
+ } ) : Promise < ToolResponse > ;
31
46
}
32
47
33
48
export abstract class MCPTool < TInput extends Record < string , any > = { } >
@@ -65,7 +80,7 @@ export abstract class MCPTool<TInput extends Record<string, any> = {}>
65
80
66
81
async toolCall ( request : {
67
82
params : { name : string ; arguments ?: Record < string , unknown > } ;
68
- } ) {
83
+ } ) : Promise < ToolResponse > {
69
84
try {
70
85
const args = request . params . arguments || { } ;
71
86
const validatedInput = await this . validateInput ( args ) ;
@@ -95,18 +110,76 @@ export abstract class MCPTool<TInput extends Record<string, any> = {}>
95
110
return "string" ;
96
111
}
97
112
98
- protected createSuccessResponse ( data : unknown ) {
113
+ protected createSuccessResponse ( data : unknown ) : ToolResponse {
114
+ if ( this . isImageContent ( data ) ) {
115
+ return {
116
+ content : [ data ] ,
117
+ } ;
118
+ }
119
+
120
+ if ( Array . isArray ( data ) ) {
121
+ const validContent = data . filter ( item => this . isValidContent ( item ) ) as ToolContent [ ] ;
122
+ if ( validContent . length > 0 ) {
123
+ return {
124
+ content : validContent ,
125
+ } ;
126
+ }
127
+ }
128
+
99
129
return {
100
130
content : [ { type : "text" , text : JSON . stringify ( data ) } ] ,
101
131
} ;
102
132
}
103
133
104
- protected createErrorResponse ( error : Error ) {
134
+ protected createErrorResponse ( error : Error ) : ToolResponse {
105
135
return {
106
136
content : [ { type : "error" , text : error . message } ] ,
107
137
} ;
108
138
}
109
139
140
+ private isImageContent ( data : unknown ) : data is ImageContent {
141
+ return (
142
+ typeof data === "object" &&
143
+ data !== null &&
144
+ "type" in data &&
145
+ data . type === "image" &&
146
+ "data" in data &&
147
+ "mimeType" in data &&
148
+ typeof ( data as ImageContent ) . data === "string" &&
149
+ typeof ( data as ImageContent ) . mimeType === "string"
150
+ ) ;
151
+ }
152
+
153
+ private isTextContent ( data : unknown ) : data is TextContent {
154
+ return (
155
+ typeof data === "object" &&
156
+ data !== null &&
157
+ "type" in data &&
158
+ data . type === "text" &&
159
+ "text" in data &&
160
+ typeof ( data as TextContent ) . text === "string"
161
+ ) ;
162
+ }
163
+
164
+ private isErrorContent ( data : unknown ) : data is ErrorContent {
165
+ return (
166
+ typeof data === "object" &&
167
+ data !== null &&
168
+ "type" in data &&
169
+ data . type === "error" &&
170
+ "text" in data &&
171
+ typeof ( data as ErrorContent ) . text === "string"
172
+ ) ;
173
+ }
174
+
175
+ private isValidContent ( data : unknown ) : data is ToolContent {
176
+ return (
177
+ this . isImageContent ( data ) ||
178
+ this . isTextContent ( data ) ||
179
+ this . isErrorContent ( data )
180
+ ) ;
181
+ }
182
+
110
183
protected async fetch < T > ( url : string , init ?: RequestInit ) : Promise < T > {
111
184
const response = await fetch ( url , init ) ;
112
185
if ( ! response . ok ) {
0 commit comments