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
//! A single MCP server demonstrating ALL stand-in features:
//! tools, prompts, and resources over Streamable HTTP.
//!
//! Run: `RUST_LOG=stand_in=info cargo run --example all_features --features http`
//!
//! For detailed request tracing:
//! `RUST_LOG=stand_in=debug cargo run --example all_features --features http`
//!
//! Then test with curl (replace `<SID>` with the Mcp-Session-Id from initialize):
//!
//! ```bash
//! # Initialize (creates session — save the Mcp-Session-Id header value)
//! curl -s -D- -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" \
//! -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}'
//!
//! # --- Tools ---
//! # List tools
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'
//!
//! # Call greet
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"greet","arguments":{"name":"World"}}}'
//!
//! # Call add
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"add","arguments":{"a":2,"b":3}}}'
//!
//! # Call is_prime (boolean return)
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":5,"method":"tools/call","params":{"name":"is_prime","arguments":{"n":7}}}'
//!
//! # Call divide — triggers isError: true (zero divisor)
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":6,"method":"tools/call","params":{"name":"divide","arguments":{"a":10,"b":0}}}'
//!
//! # --- Prompts ---
//! # List prompts
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":7,"method":"prompts/list"}'
//!
//! # Get summarize prompt (with optional audience argument)
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":8,"method":"prompts/get","params":{"name":"summarize","arguments":{"text":"Rust is a systems programming language...","audience":"beginner"}}}'
//!
//! # Get explain_code prompt (Prompt::assistant)
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":9,"method":"prompts/get","params":{"name":"explain_code","arguments":{"code":"fn main() { println!(\"Hello\"); }"}}}'
//!
//! # --- Resources ---
//! # List concrete resources
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":10,"method":"resources/list"}'
//!
//! # List template resources
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":11,"method":"resources/templates/list"}'
//!
//! # Read a concrete text resource
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":12,"method":"resources/read","params":{"uri":"info://version"}}'
//!
//! # Read a concrete blob resource (returns base64-encoded PNG)
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":13,"method":"resources/read","params":{"uri":"data://logo"}}'
//!
//! # Read a template resource
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":14,"method":"resources/read","params":{"uri":"docs://rust/guide"}}'
//!
//! # Subscribe to resource updates (requires active SSE stream)
//! curl -s -X POST http://127.0.0.1:3000/mcp \
//! -H "Content-Type: application/json" -H "Mcp-Session-Id: <SID>" \
//! -d '{"jsonrpc":"2.0","id":15,"method":"resources/subscribe","params":{"uri":"info://version"}}'
//!
//! # --- Cleanup ---
//! # Terminate session
//! curl -s -X DELETE http://127.0.0.1:3000/mcp \
//! -H "Mcp-Session-Id: <SID>"
//! ```
use *;
use EnvFilter;
// ---------------------------------------------------------------------------
// Tools
// ---------------------------------------------------------------------------
async
async
async
async
// ---------------------------------------------------------------------------
// Prompts
// ---------------------------------------------------------------------------
async
async
// ---------------------------------------------------------------------------
// Resources
// ---------------------------------------------------------------------------
/// Concrete text resource: server version info.
async
/// Concrete blob resource: a minimal PNG file (Vec<u8> → base64 BlobResourceContents).
async
/// Template resource: documentation by topic.
async
// ---------------------------------------------------------------------------
// Server
// ---------------------------------------------------------------------------
;
async