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
//! Structured sidecar metadata describing a server's generated tools.
//!
//! `mcp-execution-codegen` emits a `_meta.json` file alongside the generated
//! TypeScript tool files for each server. `mcp-execution-skill` (and
//! `mcp-execution-server`) read that file back to build `SKILL.md` and
//! runtime tool listings, instead of re-parsing the generated `.ts` source.
//!
//! This module is the shared wire contract between the two sides: the
//! producer (codegen) and the consumer (skill/server) both depend on
//! `mcp-execution-core`, so the schema lives here rather than in either
//! crate directly.
//!
//! # Examples
//!
//! ```
//! use mcp_execution_core::metadata::{ServerMetadata, ToolMetadata, METADATA_SCHEMA_VERSION};
//! use mcp_execution_core::provenance::GenerationProvenance;
//! use mcp_execution_core::{ServerConfig, ServerId, ToolName};
//!
//! let config = ServerConfig::builder().command("docker".to_string()).build().unwrap();
//!
//! let meta = ServerMetadata {
//! schema_version: METADATA_SCHEMA_VERSION,
//! server_id: ServerId::new("github").unwrap(),
//! server_name: "GitHub".to_string(),
//! server_version: "1.0.0".to_string(),
//! tools: vec![ToolMetadata {
//! name: ToolName::new("create_issue").unwrap(),
//! typescript_name: "createIssue".to_string(),
//! category: Some("issues".to_string()),
//! keywords: vec!["create".to_string(), "issue".to_string()],
//! description: Some("Creates a new issue".to_string()),
//! parameters: vec![],
//! }],
//! provenance: GenerationProvenance::capture(&config, &[]),
//! };
//!
//! let json = serde_json::to_string_pretty(&meta).unwrap();
//! let round_tripped: ServerMetadata = serde_json::from_str(&json).unwrap();
//! assert_eq!(round_tripped, meta);
//! ```
use crateGenerationProvenance;
use crate::;
use ;
/// Current schema version of the `_meta.json` sidecar format.
///
/// Bump this when making a breaking change to [`ServerMetadata`] or its
/// nested types, so that a consumer built against an older schema fails
/// loudly (via a schema-version mismatch check) instead of silently
/// misinterpreting the new shape.
///
/// Bumped from `1` to `2` when [`ServerMetadata::provenance`] was added: a `schema_version: 1`
/// sidecar has no `provenance` key at all, so a consumer must check this value *before*
/// attempting a typed deserialization (see `mcp-execution-skill`'s parser).
///
/// # Examples
///
/// ```
/// use mcp_execution_core::metadata::METADATA_SCHEMA_VERSION;
///
/// assert_eq!(METADATA_SCHEMA_VERSION, 2);
/// ```
pub const METADATA_SCHEMA_VERSION: u32 = 2;
/// Filename of the sidecar metadata file emitted alongside generated tool files.
///
/// Shared between the producer (`mcp-execution-codegen`) and the consumer
/// (`mcp-execution-skill`) to avoid a stringly-typed filename duplicated in
/// two crates.
///
/// # Examples
///
/// ```
/// use mcp_execution_core::metadata::METADATA_FILE_NAME;
///
/// assert_eq!(METADATA_FILE_NAME, "_meta.json");
/// ```
pub const METADATA_FILE_NAME: &str = "_meta.json";
/// Filename of the generated re-export entry point emitted alongside per-tool files.
///
/// Shared between the producer (`mcp-execution-codegen`, which renders it) and its consumers
/// (`mcp-execution-skill` and `mcp-execution-server`, which must recognize it as the package's
/// aggregator file rather than a per-tool file) to avoid a stringly-typed filename duplicated
/// across crates.
///
/// # Examples
///
/// ```
/// use mcp_execution_core::metadata::INDEX_FILE_NAME;
///
/// assert_eq!(INDEX_FILE_NAME, "index.ts");
/// ```
pub const INDEX_FILE_NAME: &str = "index.ts";
/// Structured sidecar describing one server's generated tools.
///
/// Serialized as `_meta.json` by `mcp-execution-codegen` and deserialized by
/// `mcp-execution-skill` / `mcp-execution-server`, replacing a fragile
/// regex-based re-parse of the generated TypeScript files.
///
/// # Examples
///
/// ```
/// use mcp_execution_core::metadata::{ServerMetadata, METADATA_SCHEMA_VERSION};
/// use mcp_execution_core::provenance::GenerationProvenance;
/// use mcp_execution_core::{ServerConfig, ServerId};
///
/// let config = ServerConfig::builder().command("docker".to_string()).build().unwrap();
///
/// let meta = ServerMetadata {
/// schema_version: METADATA_SCHEMA_VERSION,
/// server_id: ServerId::new("github").unwrap(),
/// server_name: "GitHub".to_string(),
/// server_version: "1.0.0".to_string(),
/// tools: vec![],
/// provenance: GenerationProvenance::capture(&config, &[]),
/// };
///
/// assert_eq!(meta.tools.len(), 0);
/// ```
/// Structured metadata for a single generated tool.
///
/// # Examples
///
/// ```
/// use mcp_execution_core::metadata::ToolMetadata;
/// use mcp_execution_core::ToolName;
///
/// let tool = ToolMetadata {
/// name: ToolName::new("create_issue").unwrap(),
/// typescript_name: "createIssue".to_string(),
/// category: Some("issues".to_string()),
/// keywords: vec!["create".to_string(), "issue".to_string()],
/// description: Some("Creates a new issue".to_string()),
/// parameters: vec![],
/// };
///
/// assert_eq!(tool.name.as_str(), "create_issue");
/// ```
/// Structured metadata for a single tool parameter.
///
/// # Examples
///
/// ```
/// use mcp_execution_core::metadata::ParameterMetadata;
///
/// let param = ParameterMetadata {
/// name: "title".to_string(),
/// typescript_type: "string".to_string(),
/// required: true,
/// description: Some("Issue title".to_string()),
/// };
///
/// assert!(param.required);
/// ```