use crate::routes::http::ShutdownSignal;
use crate::routines::{self, CreateRoutineRequest, RoutineStore, UpdateRoutineRequest};
use crate::utils::time::now_secs;
use rmcp::{
handler::server::wrapper::Parameters,
model::{CallToolResult, ContentBlock},
tool, tool_router,
};
#[path = "mcp_types.rs"]
mod mcp_types;
use mcp_types::{
CreateFlagInput, IdInput, ListRoutinesParam, LockRoutinesInput, ResolveFlagInput,
SetPowerSavingInput, SnoozeRoutineInput, UnlockRoutinesInput, UpdateRoutineInput,
};
#[derive(Clone)]
pub struct MoadimMcp {
routines: RoutineStore,
uptime_start: u64,
shutdown: ShutdownSignal,
}
fn ok(val: impl serde::Serialize) -> CallToolResult {
CallToolResult::success(vec![ContentBlock::text(
serde_json::to_string(&val).unwrap_or_default(),
)])
}
fn err(msg: impl std::fmt::Display) -> CallToolResult {
CallToolResult::error(vec![ContentBlock::text(msg.to_string())])
}
#[tool_router(server_handler)]
impl MoadimMcp {
pub fn new(routines: RoutineStore, uptime_start: u64, shutdown: ShutdownSignal) -> Self {
Self {
routines,
uptime_start,
shutdown,
}
}
#[tool(description = "Get server health, uptime, build provenance, and filesystem locations")]
fn health(&self) -> Result<CallToolResult, rmcp::ErrorData> {
let loc = crate::filesystem::FsLocation::current();
let val = serde_json::json!({
"status": "ok",
"uptime_secs": now_secs().saturating_sub(self.uptime_start),
"running": true,
"machine": crate::machine::current_machine(),
"version": crate::build_info::VERSION,
"git_sha": crate::build_info::GIT_SHA,
"build_date": crate::build_info::BUILD_DATE,
"server_root": loc.server_root,
"server_exe_dir": loc.server_exe_dir,
});
Ok(ok(val))
}
#[tool(
description = "List managed routines (agent-driven jobs). Defaults to routines targeting the current machine only; pass local_only=false to see all machines. Prompts are omitted by default; pass include_prompts=true to include them."
)]
fn list_routines(
&self,
Parameters(params): Parameters<ListRoutinesParam>,
) -> Result<CallToolResult, rmcp::ErrorData> {
let query = routines::RoutineListQuery {
local_only: Some(params.local_only.unwrap_or(true)),
include_prompts: Some(params.include_prompts.unwrap_or(false)),
..Default::default()
};
Ok(ok(routines::svc_list(&self.routines, &query)))
}
#[tool(description = "Get a routine by ID")]
fn get_routine(
&self,
Parameters(IdInput { id }): Parameters<IdInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(match routines::svc_get(&self.routines, &id) {
Ok(resp) => ok(resp),
Err(error) => err(error),
})
}
#[tool(
description = "Preview the exact composed prompt body a routine's run would receive, without triggering a real run (no workbench, no agent launch). Does not include the routine-origin disclosure written separately to CLAUDE.md at trigger time."
)]
fn preview_routine_prompt(
&self,
Parameters(IdInput { id }): Parameters<IdInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(
match routines::svc_get_prompt_preview(&self.routines, &id) {
Ok(prompt) => ok(serde_json::json!({ "prompt": prompt })),
Err(error) => err(error),
},
)
}
#[tool(
description = "Create a new routine (agent-driven job). The `schedule` cron expression is interpreted in the local system timezone of the host running the daemon, NOT UTC. The response includes a `timezone` field and a `schedule_description` annotated with that timezone — verify them to confirm the firing time."
)]
fn create_routine(
&self,
Parameters(req): Parameters<CreateRoutineRequest>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(match routines::svc_create(&self.routines, req) {
Ok(resp) => ok(resp),
Err(error) => err(error),
})
}
#[tool(
description = "Update fields of an existing routine. The `schedule` cron expression is interpreted in the local system timezone of the host running the daemon, NOT UTC. The response includes a `timezone` field and a `schedule_description` annotated with that timezone — verify them to confirm the firing time."
)]
fn update_routine(
&self,
Parameters(input): Parameters<UpdateRoutineInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
let req = UpdateRoutineRequest {
schedule: input.schedule,
title: input.title,
agent: input.agent,
model: input.model,
prompt: input.prompt,
goal: input.goal,
repositories: input.repositories,
machines: input.machines,
enabled: input.enabled,
ttl_secs: input.ttl_secs,
max_runtime_secs: input.max_runtime_secs,
tags: input.tags,
};
Ok(match routines::svc_update(&self.routines, &input.id, req) {
Ok(resp) => ok(resp),
Err(error) => err(error),
})
}
#[tool(description = "Delete a routine by ID")]
fn delete_routine(
&self,
Parameters(IdInput { id }): Parameters<IdInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(match routines::svc_delete(&self.routines, &id) {
Ok(resp) => ok(resp),
Err(error) => err(error),
})
}
#[tool(
description = "Manually trigger a routine outside its schedule, recording last_manual_trigger_at"
)]
fn trigger_routine(
&self,
Parameters(IdInput { id }): Parameters<IdInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(match routines::svc_trigger(&self.routines, &id) {
Ok(routine) => ok(routine),
Err(error) => err(error),
})
}
#[tool(
description = "Snooze a routine's scheduled (cron) fires without disabling it. Set snoozed_until (unix seconds) to skip fires until that time, or skip_runs (count) to skip that many upcoming scheduled fires — set exactly one, or neither to clear an active snooze. Manual triggers (trigger_routine) always bypass snooze and run normally."
)]
fn snooze_routine(
&self,
Parameters(SnoozeRoutineInput {
id,
snoozed_until,
skip_runs,
}): Parameters<SnoozeRoutineInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(
match routines::svc_snooze(&self.routines, &id, snoozed_until, skip_runs) {
Ok(routine) => ok(routine),
Err(error) => err(error),
},
)
}
#[tool(
description = "Set or clear a routine's power-saving state. While active, both trigger_routine and the routine's cron schedule refuse to launch it (distinctly from a disabled routine) — its enabled toggle and crontab line are untouched, so it resumes firing on its own once cleared."
)]
fn set_power_saving(
&self,
Parameters(SetPowerSavingInput { id, active }): Parameters<SetPowerSavingInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(
match routines::svc_set_power_saving(&self.routines, &id, active) {
Ok(routine) => ok(routine),
Err(error) => err(error),
},
)
}
#[tool(
description = "Trigger cleanup of finished, expired routine run workbenches now instead of waiting for the hourly sweep. Returns the number of workbenches removed and the total disk space freed in bytes."
)]
fn cleanup_workbenches(&self) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(ok(routines::svc_cleanup(&self.routines)))
}
#[tool(description = "List the available agent registry keys a routine can launch")]
#[allow(
clippy::unused_self,
reason = "tool_router dispatches every handler through self.method(...) uniformly"
)]
fn list_agents(&self) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(ok(routines::available_agents()))
}
#[tool(
description = "Flag something unclear about a routine mid-run — a gap, bug, edge case, or question the agent hit with no other channel to surface it (the run happens unattended inside tmux). `type` is free text (common examples: \"bug\", \"gap\", \"edge_case\", \"question\", \"blocker\"); `scope` is \"general\" (committed, shared via git) or \"local\" (gitignored, machine-local). Unresolved flags are shown back to the agent in the routine's prompt on its next run."
)]
fn create_flag(
&self,
Parameters(CreateFlagInput {
id,
r#type,
description,
scope,
}): Parameters<CreateFlagInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(
match routines::svc_create_flag(&self.routines, &id, &r#type, &description, &scope) {
Ok(flag) => ok(flag),
Err(error) => err(error),
},
)
}
#[tool(description = "List open flags raised against a routine, oldest first")]
fn list_flags(
&self,
Parameters(IdInput { id }): Parameters<IdInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(match routines::svc_list_flags(&self.routines, &id) {
Ok(flags) => ok(flags),
Err(error) => err(error),
})
}
#[tool(
description = "Resolve a routine flag by filename (as returned by create_flag/list_flags), removing it"
)]
fn resolve_flag(
&self,
Parameters(ResolveFlagInput { id, filename }): Parameters<ResolveFlagInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(
match routines::svc_resolve_flag(&self.routines, &id, &filename) {
Ok(()) => ok(serde_json::json!({ "status": "resolved" })),
Err(error) => err(error),
},
)
}
#[tool(description = "Get a routine's newest run log by ID")]
fn routine_logs(
&self,
Parameters(IdInput { id }): Parameters<IdInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(match routines::svc_logs(&self.routines, &id) {
Ok(logs) => ok(serde_json::json!({
"logs": logs.content,
"total_bytes": logs.total_bytes,
"truncated": logs.truncated,
})),
Err(error) => err(error),
})
}
#[tool(
description = "List a routine's runs, newest first — each run's workbench id (pass to the REST endpoints GET /routines/{id}/runs/{workbench}/log for its log or GET /routines/{id}/runs/{workbench}/summary for the agent's work summary), start/finish time, status, and exit code"
)]
fn list_routine_runs(
&self,
Parameters(IdInput { id }): Parameters<IdInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(match routines::svc_list_runs(&self.routines, &id) {
Ok(runs) => ok(runs),
Err(error) => err(error),
})
}
#[tool(
description = "Get the global routine lock status. Returns `shared` (committed .lock file), `local` (gitignored .local.lock), and `locked` (either is present)."
)]
#[allow(
clippy::unused_self,
reason = "tool_router dispatches every handler through self.method(...) uniformly"
)]
fn get_lock_status(&self) -> Result<CallToolResult, rmcp::ErrorData> {
Ok(ok(crate::global_lock::lock_status()))
}
#[tool(
description = "Globally pause all routines by creating a lock sentinel. Use scope=\"shared\" for a committed .lock (shared via git) or scope=\"local\" for a gitignored .local.lock (machine-local). Individual routine enabled states are not modified."
)]
fn lock_routines(
&self,
Parameters(LockRoutinesInput { scope }): Parameters<LockRoutinesInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
let lock_scope = match scope.as_str() {
"shared" => crate::global_lock::LockScope::Shared,
"local" => crate::global_lock::LockScope::Local,
other => {
return Ok(err(format!(
"unknown scope {other:?}; use \"shared\" or \"local\""
)))
}
};
if let Err(io_err) = crate::global_lock::set_lock(lock_scope, true) {
return Ok(err(format!("failed to create lock sentinel: {io_err}")));
}
if let Err(sync_err) = crate::sync::routines::sync_routines_to_crontab(&self.routines) {
log::warn!("crontab sync after lock failed: {sync_err}");
}
Ok(ok(crate::global_lock::lock_status()))
}
#[tool(
description = "Resume all routines by removing a lock sentinel. Use scope=\"shared\" to remove the committed .lock, scope=\"local\" to remove the gitignored .local.lock, or scope=\"all\" to remove both."
)]
fn unlock_routines(
&self,
Parameters(UnlockRoutinesInput { scope }): Parameters<UnlockRoutinesInput>,
) -> Result<CallToolResult, rmcp::ErrorData> {
let scopes: Vec<crate::global_lock::LockScope> = match scope.as_str() {
"shared" => vec![crate::global_lock::LockScope::Shared],
"local" => vec![crate::global_lock::LockScope::Local],
"all" => vec![
crate::global_lock::LockScope::Shared,
crate::global_lock::LockScope::Local,
],
other => {
return Ok(err(format!(
"unknown scope {other:?}; use \"shared\", \"local\", or \"all\""
)))
}
};
for scope_item in scopes {
if let Err(io_err) = crate::global_lock::set_lock(scope_item, false) {
return Ok(err(format!("failed to remove lock sentinel: {io_err}")));
}
}
if let Err(sync_err) = crate::sync::routines::sync_routines_to_crontab(&self.routines) {
log::warn!("crontab sync after unlock failed: {sync_err}");
}
Ok(ok(crate::global_lock::lock_status()))
}
#[tool(
description = "Stop the running server gracefully. Mirrors the POST /api/v1/shutdown route and `moadim stop`."
)]
fn shutdown(&self) -> Result<CallToolResult, rmcp::ErrorData> {
log::info!("shutdown requested via MCP");
self.shutdown.notify_one();
Ok(ok(serde_json::json!({ "status": "shutting down" })))
}
#[tool(
description = "Restart the server: stop it and start a fresh instance. Mirrors the POST /api/v1/restart route and `moadim restart`."
)]
#[allow(
clippy::unused_self,
reason = "tool_router dispatches every handler through self.method(...) uniformly"
)]
fn restart(&self) -> Result<CallToolResult, rmcp::ErrorData> {
log::info!("restart requested via MCP");
Ok(crate::cli::spawn_restart().map_or_else(err, |helper_pid| {
ok(serde_json::json!({ "status": "restarting", "helper_pid": helper_pid }))
}))
}
}
#[cfg(test)]
#[path = "mcp_lock_tests.rs"]
mod mcp_lock_tests;
#[cfg(test)]
#[path = "mcp_parity_tests.rs"]
mod mcp_parity_tests;
#[cfg(test)]
#[path = "mcp_prompt_preview_tests.rs"]
mod mcp_prompt_preview_tests;
#[cfg(test)]
#[path = "mcp_tests.rs"]
mod mcp_tests;