rover-fetch 0.2.0

An MCP server for fetching and prepping web content for LLM agents.
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
422
423
424
425
426
427
428
429
430
431
432
//! `rover config set` — settable-key whitelist + value parsers + writer.

use std::path::Path;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum SetError {
    #[error("io error reading {path:?}: {source}")]
    Io {
        path: std::path::PathBuf,
        source: std::io::Error,
    },

    #[error("io error writing {path:?}: {source}")]
    Write {
        path: std::path::PathBuf,
        source: std::io::Error,
    },

    #[error("could not parse existing file at {path:?}: {source}")]
    ParseExistingFile {
        path: std::path::PathBuf,
        source: toml_edit::TomlError,
    },

    #[error("invalid value for {key}: expected {expected}, got {value}")]
    Parse {
        key: String,
        value: String,
        expected: String,
    },

    #[error("key `{key}` is not settable via `rover config set`; edit the file directly")]
    Unsettable { key: String },

    #[error("validation failed after writing {key} = {value}: {message}")]
    Validation {
        key: String,
        value: String,
        message: String,
    },
}

struct SettableSpec {
    key: &'static str,
    parser: fn(&str) -> Result<toml_edit::Item, String>,
    expected: &'static str,
}

fn settable() -> &'static [SettableSpec] {
    &[
        SettableSpec {
            key: "ssrf.level",
            parser: parse_ssrf_level,
            expected: "one of: strict, loopback, project, lan, none",
        },
        SettableSpec {
            key: "ssrf.project_root",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "fetch.user_agent",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "fetch.timeout_secs",
            parser: parse_int,
            expected: "integer (seconds)",
        },
        SettableSpec {
            key: "cache.default_ttl",
            parser: parse_string,
            expected: "humantime string (e.g. \"1h\")",
        },
        SettableSpec {
            key: "cache.min_ttl",
            parser: parse_string,
            expected: "humantime string",
        },
        SettableSpec {
            key: "cache.max_ttl",
            parser: parse_string,
            expected: "humantime string",
        },
        SettableSpec {
            key: "cache.override_no_store",
            parser: parse_bool,
            expected: "bool",
        },
        SettableSpec {
            key: "cache.store_raw_html",
            parser: parse_bool,
            expected: "bool",
        },
        SettableSpec {
            key: "robots.respect",
            parser: parse_bool,
            expected: "bool",
        },
        SettableSpec {
            key: "robots.default_ttl",
            parser: parse_string,
            expected: "humantime string",
        },
        SettableSpec {
            key: "rate_limit.requests_per_minute_per_domain",
            parser: parse_int,
            expected: "integer",
        },
        SettableSpec {
            key: "rate_limit.per_domain_concurrency",
            parser: parse_int,
            expected: "integer",
        },
        SettableSpec {
            key: "rate_limit.global_concurrency",
            parser: parse_int,
            expected: "integer",
        },
        SettableSpec {
            key: "tokenizer.default",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "output.dir",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "summarization.default_backend",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "summarization.default_mode",
            parser: parse_summarization_mode,
            expected: "one of: abstractive, extractive, headlines",
        },
        SettableSpec {
            key: "summarization.default_style",
            parser: parse_summarization_style,
            expected: "one of: bullet, prose, executive",
        },
        SettableSpec {
            key: "summarization.fallback_to_extractive",
            parser: parse_bool,
            expected: "bool",
        },
        SettableSpec {
            key: "summarization.tables.target_tokens",
            parser: parse_int,
            expected: "integer",
        },
        SettableSpec {
            key: "summarization.tables.focus",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "debug.har_path",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "debug.har_body_cap",
            parser: parse_string,
            expected: "humansize string or integer",
        },
        SettableSpec {
            key: "debug.log_level",
            parser: parse_log_level,
            expected: "one of: trace, debug, info, warn, error",
        },
        SettableSpec {
            key: "headless.max_concurrent",
            parser: parse_usize,
            expected: "integer",
        },
        SettableSpec {
            key: "headless.chrome_executable",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "image_captions.default",
            parser: parse_string,
            expected: "string",
        },
        SettableSpec {
            key: "image_captions.max_tokens",
            parser: parse_usize,
            expected: "integer",
        },
        SettableSpec {
            key: "image_captions.max_per_page",
            parser: parse_usize,
            expected: "integer",
        },
        SettableSpec {
            key: "image_captions.min_width",
            parser: parse_u32,
            expected: "integer",
        },
        SettableSpec {
            key: "image_captions.min_height",
            parser: parse_u32,
            expected: "integer",
        },
        SettableSpec {
            key: "image_captions.max_bytes",
            parser: parse_human_bytes_v,
            expected: "humansize string or integer (e.g. \"10MiB\")",
        },
        SettableSpec {
            key: "image_captions.max_concurrent",
            parser: parse_usize,
            expected: "integer",
        },
    ]
}

fn parse_string(s: &str) -> Result<toml_edit::Item, String> {
    Ok(toml_edit::value(s.to_string()))
}

fn parse_int(s: &str) -> Result<toml_edit::Item, String> {
    let n: i64 = s.parse().map_err(|_| format!("not an integer: {s}"))?;
    Ok(toml_edit::value(n))
}

fn parse_usize(s: &str) -> Result<toml_edit::Item, String> {
    let n: i64 = s
        .parse::<usize>()
        .map(|u| u as i64)
        .map_err(|_| format!("not a non-negative integer: {s}"))?;
    Ok(toml_edit::value(n))
}

fn parse_u32(s: &str) -> Result<toml_edit::Item, String> {
    let n: i64 = s
        .parse::<u32>()
        .map(|u| u as i64)
        .map_err(|_| format!("not a non-negative 32-bit integer: {s}"))?;
    Ok(toml_edit::value(n))
}

fn parse_human_bytes_v(v: &str) -> Result<toml_edit::Item, String> {
    // Validate that the string parses correctly, but persist it as a string
    // so that the config file stays human-readable (e.g. "10MiB").
    crate::config::parse_human_bytes(v)?;
    Ok(toml_edit::value(v.to_string()))
}

fn parse_bool(s: &str) -> Result<toml_edit::Item, String> {
    let b = match s {
        "true" | "1" | "yes" | "on" => true,
        "false" | "0" | "no" | "off" => false,
        _ => return Err(format!("not a bool: {s}")),
    };
    Ok(toml_edit::value(b))
}

fn parse_ssrf_level(s: &str) -> Result<toml_edit::Item, String> {
    match s {
        "strict" | "loopback" | "project" | "lan" | "none" => Ok(toml_edit::value(s.to_string())),
        _ => Err(format!("not a valid ssrf level: {s}")),
    }
}

fn parse_summarization_mode(s: &str) -> Result<toml_edit::Item, String> {
    match s {
        "abstractive" | "extractive" | "headlines" => Ok(toml_edit::value(s.to_string())),
        _ => Err(format!("not a valid summarization mode: {s}")),
    }
}

fn parse_summarization_style(s: &str) -> Result<toml_edit::Item, String> {
    match s {
        "bullet" | "prose" | "executive" => Ok(toml_edit::value(s.to_string())),
        _ => Err(format!("not a valid summarization style: {s}")),
    }
}

fn parse_log_level(s: &str) -> Result<toml_edit::Item, String> {
    match s {
        "trace" | "debug" | "info" | "warn" | "error" => Ok(toml_edit::value(s.to_string())),
        _ => Err(format!("not a valid log level: {s}")),
    }
}

pub fn apply_set(path: &Path, key: &str, value: &str) -> Result<(), SetError> {
    let spec = settable()
        .iter()
        .find(|s| s.key == key)
        .ok_or_else(|| SetError::Unsettable {
            key: key.to_string(),
        })?;
    let item = (spec.parser)(value).map_err(|_e| SetError::Parse {
        key: key.to_string(),
        value: value.to_string(),
        expected: spec.expected.to_string(),
    })?;

    let original = std::fs::read_to_string(path).map_err(|source| SetError::Io {
        path: path.to_path_buf(),
        source,
    })?;
    let mut doc: toml_edit::DocumentMut =
        original
            .parse()
            .map_err(|source| SetError::ParseExistingFile {
                path: path.to_path_buf(),
                source,
            })?;

    // Walk to the parent table, creating intermediates as needed.
    let parts: Vec<&str> = key.split('.').collect();
    let (leaf, parents) = parts.split_last().expect("non-empty key");
    let mut cursor: &mut toml_edit::Table = doc.as_table_mut();
    for p in parents {
        if !cursor.contains_key(p) {
            cursor.insert(p, toml_edit::Item::Table(toml_edit::Table::new()));
        }
        cursor = cursor
            .get_mut(p)
            .and_then(|i| i.as_table_mut())
            .ok_or_else(|| SetError::Parse {
                key: key.to_string(),
                value: value.to_string(),
                expected: format!("parent `{p}` is not a table"),
            })?;
    }
    // Preserve any existing decor (leading/trailing comments and whitespace)
    // on the value being overwritten.
    let mut new_item = item;
    if let Some(existing) = cursor.get(leaf)
        && let (Some(existing_val), Some(new_val)) = (existing.as_value(), new_item.as_value_mut())
    {
        let old_decor = existing_val.decor().clone();
        *new_val.decor_mut() = old_decor;
    }
    cursor.insert(leaf, new_item);

    // Serialize, validate by round-trip through Config::deserialize.
    let new_text = doc.to_string();
    let _: crate::config::Config =
        toml::from_str(&new_text).map_err(|source| SetError::Validation {
            key: key.to_string(),
            value: value.to_string(),
            message: source.to_string(),
        })?;

    // Write. Original is preserved by not touching the file on the failure path.
    std::fs::write(path, new_text).map_err(|source| SetError::Write {
        path: path.to_path_buf(),
        source,
    })?;
    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use tempfile::tempdir;

    #[test]
    fn unknown_key_is_rejected() {
        let r = apply_set(std::path::Path::new("/dev/null"), "bogus.key", "x");
        assert!(matches!(r, Err(SetError::Unsettable { .. })));
    }

    #[test]
    fn set_writes_value_and_preserves_comments() {
        let tmp = tempdir().unwrap();
        let p = tmp.path().join("rover.toml");
        std::fs::write(
            &p,
            "# header comment\n[ssrf]\nlevel = \"strict\" # was strict\n",
        )
        .unwrap();
        apply_set(&p, "ssrf.level", "loopback").unwrap();
        let after = std::fs::read_to_string(&p).unwrap();
        assert!(
            after.contains("# header comment"),
            "header dropped: {after}"
        );
        assert!(
            after.contains("level = \"loopback\""),
            "value not updated: {after}"
        );
        assert!(
            after.contains("# was strict"),
            "trailing comment dropped: {after}"
        );
    }

    #[test]
    fn set_invalid_value_does_not_modify_file() {
        let tmp = tempdir().unwrap();
        let p = tmp.path().join("rover.toml");
        let original = "[ssrf]\nlevel = \"strict\"\n";
        std::fs::write(&p, original).unwrap();
        let r = apply_set(&p, "ssrf.level", "bogus");
        assert!(matches!(r, Err(SetError::Parse { .. })), "{r:?}");
        let after = std::fs::read_to_string(&p).unwrap();
        assert_eq!(after, original, "file modified despite parse failure");
    }

    #[test]
    fn set_creates_missing_section() {
        let tmp = tempdir().unwrap();
        let p = tmp.path().join("rover.toml");
        std::fs::write(&p, "").unwrap();
        apply_set(&p, "ssrf.level", "loopback").unwrap();
        let after = std::fs::read_to_string(&p).unwrap();
        assert!(after.contains("[ssrf]"));
        assert!(after.contains("level = \"loopback\""));
    }

    #[test]
    fn set_bool_value_parses_common_forms() {
        let tmp = tempdir().unwrap();
        let p = tmp.path().join("rover.toml");
        std::fs::write(&p, "").unwrap();
        apply_set(&p, "robots.respect", "false").unwrap();
        let after = std::fs::read_to_string(&p).unwrap();
        assert!(after.contains("respect = false"));
    }
}