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
//! 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};
//!
//! let meta = ServerMetadata {
//! schema_version: METADATA_SCHEMA_VERSION,
//! server_id: "github".to_string(),
//! server_name: "GitHub".to_string(),
//! server_version: "1.0.0".to_string(),
//! tools: vec![ToolMetadata {
//! name: "create_issue".to_string(),
//! 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![],
//! }],
//! };
//!
//! 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 ;
/// 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.
pub const METADATA_SCHEMA_VERSION: u32 = 1;
/// 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.
pub const METADATA_FILE_NAME: &str = "_meta.json";
/// 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};
///
/// let meta = ServerMetadata {
/// schema_version: METADATA_SCHEMA_VERSION,
/// server_id: "github".to_string(),
/// server_name: "GitHub".to_string(),
/// server_version: "1.0.0".to_string(),
/// tools: vec![],
/// };
///
/// assert_eq!(meta.tools.len(), 0);
/// ```
/// Structured metadata for a single generated tool.
///
/// # Examples
///
/// ```
/// use mcp_execution_core::metadata::ToolMetadata;
///
/// let tool = ToolMetadata {
/// name: "create_issue".to_string(),
/// 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, "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);
/// ```