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
//! Errors raised by the task subsystem.

use thiserror::Error;

#[derive(Debug, Error)]
pub enum TasksError {
    #[error("storage: {0}")]
    Storage(#[from] crate::storage::StorageError),

    #[error("task {0} not found")]
    NotFound(String),

    #[error("invalid task params: {0}")]
    InvalidParams(#[from] serde_json::Error),
}