cratesio-mcp 0.1.4

MCP server for querying crates.io - the Rust package registry
Documentation
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
//! Public data types for the crates.io API.

use std::collections::HashMap;

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

// ── Core types ──────────────────────────────────────────────────────────────

/// Crate metadata from the crates.io API.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Crate {
    pub name: String,
    #[serde(default)]
    pub description: Option<String>,
    pub max_version: String,
    #[serde(default)]
    pub max_stable_version: Option<String>,
    #[serde(default)]
    pub downloads: u64,
    #[serde(default)]
    pub recent_downloads: Option<u64>,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    #[serde(default)]
    pub repository: Option<String>,
    #[serde(default)]
    pub documentation: Option<String>,
    #[serde(default)]
    pub homepage: Option<String>,
    #[serde(default)]
    pub keywords: Option<Vec<String>>,
    #[serde(default)]
    pub categories: Option<Vec<String>>,
}

/// Version metadata from the crates.io API.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Version {
    #[serde(default)]
    pub id: u64,
    pub num: String,
    #[serde(default)]
    pub yanked: bool,
    pub created_at: DateTime<Utc>,
    #[serde(default)]
    pub downloads: u64,
    #[serde(default)]
    pub license: Option<String>,
    #[serde(default)]
    pub rust_version: Option<String>,
    #[serde(default)]
    pub features: HashMap<String, Vec<String>>,
}

/// Per-version download data point.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VersionDownloads {
    pub version: u64,
    pub downloads: u64,
    #[serde(default)]
    pub date: Option<String>,
}

/// User or team on crates.io.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct User {
    pub id: u64,
    pub login: String,
    #[serde(default)]
    pub name: Option<String>,
    #[serde(default)]
    pub url: String,
    #[serde(default)]
    pub avatar: Option<String>,
    #[serde(default)]
    pub kind: Option<String>,
}

/// Dependency of a crate version.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Dependency {
    pub crate_id: String,
    pub req: String,
    #[serde(default)]
    pub kind: String,
    #[serde(default)]
    pub optional: bool,
    #[serde(default)]
    pub version_id: u64,
}

/// A keyword from crates.io.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Keyword {
    pub keyword: String,
    #[serde(default)]
    pub crates_cnt: u64,
}

/// A category from crates.io.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Category {
    pub category: String,
    #[serde(default)]
    pub crates_cnt: u64,
    #[serde(default)]
    pub slug: Option<String>,
    #[serde(default)]
    pub description: Option<String>,
}

/// Pagination metadata.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Meta {
    pub total: u64,
}

/// Authors listed in a crate version's Cargo.toml.
#[derive(Debug, Clone)]
pub struct Authors {
    pub names: Vec<String>,
}

/// A reverse dependency entry (a crate that depends on the queried crate).
#[derive(Debug, Clone)]
pub struct ReverseDependency {
    pub crate_version: CrateVersion,
    pub dependency: Dependency,
}

/// Identifies a specific version of a crate.
#[derive(Debug, Clone)]
pub struct CrateVersion {
    pub crate_name: String,
    pub num: String,
}

// ── Response types ──────────────────────────────────────────────────────────

/// Response from `GET /crates/{name}`.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CrateResponse {
    #[serde(rename = "crate")]
    pub crate_data: Crate,
    pub versions: Vec<Version>,
}

/// Response from `GET /crates` (search).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CratesPage {
    pub crates: Vec<Crate>,
    pub meta: Meta,
}

/// Response from `GET /crates/{name}/downloads`.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CrateDownloads {
    pub version_downloads: Vec<VersionDownloads>,
    #[serde(default)]
    pub versions: Vec<Version>,
}

/// Reverse dependencies with pagination metadata.
#[derive(Debug, Clone)]
pub struct ReverseDependencies {
    pub dependencies: Vec<ReverseDependency>,
    pub meta: Meta,
}

/// Summary statistics from crates.io.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Summary {
    pub num_crates: u64,
    pub num_downloads: u64,
    pub new_crates: Vec<Crate>,
    pub most_downloaded: Vec<Crate>,
    pub just_updated: Vec<Crate>,
    pub popular_keywords: Vec<Keyword>,
    pub popular_categories: Vec<Category>,
}

/// Paginated versions response.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VersionsPage {
    pub versions: Vec<Version>,
    pub meta: Meta,
}

/// Paginated categories response.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CategoriesPage {
    pub categories: Vec<Category>,
    pub meta: Meta,
}

/// Paginated keywords response.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct KeywordsPage {
    pub keywords: Vec<Keyword>,
    pub meta: Meta,
}

// ── Team type ───────────────────────────────────────────────────────────────

/// A crates.io team.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Team {
    pub login: String,
    #[serde(default)]
    pub name: Option<String>,
    #[serde(default)]
    pub avatar: Option<String>,
    #[serde(default)]
    pub url: Option<String>,
}

// ── User stats ──────────────────────────────────────────────────────────────

/// Download statistics for a user.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UserStats {
    pub total_downloads: u64,
}

// ── Category slugs ──────────────────────────────────────────────────────────

/// A minimal category entry from the category_slugs endpoint.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CategorySlug {
    pub id: String,
    pub slug: String,
    #[serde(default)]
    pub description: Option<String>,
}

// ── Site metadata ───────────────────────────────────────────────────────────

/// Site deployment metadata from crates.io.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SiteMetadata {
    pub deployed_sha: Option<String>,
    #[serde(default)]
    pub commit: Option<String>,
}

// ── Authenticated types ─────────────────────────────────────────────────────

/// Generic ok/error response from mutation endpoints.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OkResponse {
    pub ok: bool,
}

/// Response from `GET /crates/{name}/following`.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FollowingResponse {
    pub following: bool,
}

/// Settings for updating a crate.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CrateSettings {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub documentation: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub homepage: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub repository: Option<String>,
}

/// Settings for updating a version.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VersionSettings {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub yanked: Option<bool>,
}

// ── Owner types ─────────────────────────────────────────────────────────────

/// An invitation to become an owner of a crate.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OwnerInvitation {
    pub invited_by_username: String,
    pub crate_name: String,
    pub crate_id: u64,
    pub created_at: DateTime<Utc>,
}

// ── API token types ─────────────────────────────────────────────────────────

/// An API token on crates.io.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ApiToken {
    pub id: u64,
    pub name: String,
    pub created_at: DateTime<Utc>,
    #[serde(default)]
    pub last_used_at: Option<DateTime<Utc>>,
    #[serde(default)]
    pub crate_scopes: Option<Vec<String>>,
    #[serde(default)]
    pub endpoint_scopes: Option<Vec<String>>,
}

// ── Publish types ───────────────────────────────────────────────────────────

/// Metadata for publishing a crate (JSON portion of PUT /crates/new).
#[derive(Debug, Clone, Serialize)]
pub struct PublishMetadata {
    pub name: String,
    #[serde(rename = "vers")]
    pub version: String,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub deps: Vec<PublishDependency>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub license: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub license_file: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub repository: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub homepage: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub documentation: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub keywords: Vec<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub categories: Vec<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub readme: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub readme_file: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub rust_version: Option<String>,
}

/// A dependency entry in the publish metadata.
#[derive(Debug, Clone, Serialize)]
pub struct PublishDependency {
    pub name: String,
    pub version_req: String,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub features: Vec<String>,
    #[serde(default)]
    pub optional: bool,
    #[serde(default)]
    pub default_features: bool,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub target: Option<String>,
    /// "normal", "dev", or "build"
    #[serde(default)]
    pub kind: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub registry: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub explicit_name_in_toml: Option<String>,
}

/// Warnings returned from the publish endpoint.
#[derive(Debug, Clone, Deserialize)]
pub struct PublishWarnings {
    #[serde(default)]
    pub invalid_categories: Vec<String>,
    #[serde(default)]
    pub invalid_badges: Vec<String>,
    #[serde(default)]
    pub other: Vec<String>,
}

// ── Trusted publishing types ────────────────────────────────────────────────

/// A GitHub trusted publishing configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GitHubConfig {
    pub id: u64,
    pub crate_name: String,
    pub repository_owner: String,
    pub repository_name: String,
    #[serde(default)]
    pub workflow_filename: Option<String>,
    #[serde(default)]
    pub environment: Option<String>,
    pub created_at: DateTime<Utc>,
}

/// Input for creating a new GitHub trusted publishing config.
#[derive(Debug, Clone, Serialize)]
pub struct NewGitHubConfig {
    pub crate_name: String,
    pub repository_owner: String,
    pub repository_name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub workflow_filename: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub environment: Option<String>,
}

/// A GitLab trusted publishing configuration.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GitLabConfig {
    pub id: u64,
    pub crate_name: String,
    pub project_path: String,
    #[serde(default)]
    pub environment: Option<String>,
    pub created_at: DateTime<Utc>,
}

/// Input for creating a new GitLab trusted publishing config.
#[derive(Debug, Clone, Serialize)]
pub struct NewGitLabConfig {
    pub crate_name: String,
    pub project_path: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub environment: Option<String>,
}