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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
//! In-process MCP (Model Context Protocol) server support.
//!
//! This module allows you to define custom tools that run within your Rust application
//! and are exposed to Claude Code via the MCP protocol. These tools appear alongside
//! Claude Code's built-in tools and can be invoked by the model during conversations.
//!
//! # Example
//!
//! ```rust,no_run
//! use claude_code::{tool, create_sdk_mcp_server, McpServerConfig, ToolAnnotations};
//! use serde_json::{json, Value};
//!
//! let weather_tool = tool(
//! "get_weather",
//! "Get current weather for a location",
//! json!({
//! "type": "object",
//! "properties": {
//! "location": {"type": "string", "description": "City name"}
//! },
//! "required": ["location"]
//! }),
//! |args: Value| async move {
//! let location = args["location"].as_str().unwrap_or("unknown");
//! Ok(json!({
//! "content": [{"type": "text", "text": format!("Weather in {location}: 22°C, sunny")}]
//! }))
//! },
//! );
//!
//! let server_config = create_sdk_mcp_server("my-tools", "1.0.0", vec![weather_tool]);
//! ```
use HashMap;
use Arc;
use BoxFuture;
use ;
use crateError;
use crate;
/// Handler function type for SDK MCP tools.
///
/// Takes a JSON `Value` of input arguments and returns a JSON `Value` result.
/// The result should follow the MCP tool result format with `content` array.
pub type SdkMcpToolHandler =
;
/// Definition of an in-process MCP tool.
///
/// Created via the [`tool()`] factory function. Can be customized with
/// [`with_annotations()`](Self::with_annotations) before being passed to
/// [`create_sdk_mcp_server()`].
///
/// # Fields
///
/// - `name` — Unique tool name (used by the model to invoke it).
/// - `description` — Human-readable description of what the tool does.
/// - `input_schema` — JSON Schema defining the tool's input parameters.
/// - `handler` — Async function that executes the tool logic.
/// - `annotations` — Optional behavioral hints (read-only, destructive, etc.).
/// Creates a new [`SdkMcpTool`] with the given name, description, schema, and handler.
///
/// This is the primary factory function for defining custom tools.
///
/// # Arguments
///
/// * `name` — Unique name for the tool.
/// * `description` — What the tool does (shown to the model).
/// * `input_schema` — JSON Schema for the tool's input parameters.
/// * `handler` — Async function implementing the tool logic. Receives input as
/// a JSON `Value` and should return a JSON `Value` in MCP result format.
///
/// # Example
///
/// ```rust,no_run
/// # use claude_code::tool;
/// # use serde_json::{json, Value};
/// let my_tool = tool(
/// "greet",
/// "Greet someone by name",
/// json!({"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}),
/// |args: Value| async move {
/// let name = args["name"].as_str().unwrap_or("world");
/// Ok(json!({"content": [{"type": "text", "text": format!("Hello, {name}!")}]}))
/// },
/// );
/// ```
/// In-process MCP server that hosts custom tools.
///
/// Implements the MCP tool listing and calling protocol. Tool calls are dispatched
/// to the registered handler functions and executed within your application.
/// Creates an [`McpSdkServerConfig`] for use in [`ClaudeAgentOptions::mcp_servers`](crate::ClaudeAgentOptions::mcp_servers).
///
/// This is the entry point for registering in-process MCP servers with the SDK.
///
/// # Arguments
///
/// * `name` — Unique server name.
/// * `version` — Server version string.
/// * `tools` — List of tools to register on this server.
///
/// # Returns
///
/// An [`McpSdkServerConfig`] that can be added to the `mcp_servers` map.
///
/// # Example
///
/// ```rust,no_run
/// # use claude_code::{tool, create_sdk_mcp_server, ClaudeAgentOptions, McpServerConfig, McpServersOption};
/// # use serde_json::{json, Value};
/// # use std::collections::HashMap;
/// let server = create_sdk_mcp_server("my-server", "1.0.0", vec![
/// tool("hello", "Say hello", json!({"type": "object"}), |_| async { Ok(json!({"content": []})) }),
/// ]);
///
/// let options = ClaudeAgentOptions {
/// mcp_servers: McpServersOption::Servers(HashMap::from([
/// ("my-server".to_string(), McpServerConfig::Sdk(server)),
/// ])),
/// ..Default::default()
/// };
/// ```