forge-core-server 0.8.7-rc.39

HTTP server for Forge - REST API, WebSocket streaming, and MCP integration
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
//! Advanced MCP Tools Module
//!
//! This module contains ALL advanced tools that mirror the complete Forge backend API.
//! These tools are only available when the MCP server is started with --advanced flag.
//!
//! Organization:
//! - Task Attempts (25 tools)
//! - Execution Processes (3 tools)
//! - Images (2 tools)
//! - Filesystem (2 tools)
//! - Config (2 tools)
//! - Drafts (5 tools)
//! - Containers (2 tools)
//! - Forge-Specific (8 tools)
//!
//! Total Advanced Tools: 49 additional tools

use chrono::{DateTime, Utc};
use forge_core_db::models::task_attempt::TaskAttempt;
use rmcp::schemars;
use serde::{Deserialize, Serialize};
use uuid::Uuid;

#[derive(Debug, Serialize, schemars::JsonSchema)]
pub struct UploadImageResponse {
    #[schemars(description = "Uploaded image ID")]
    pub image_id: Uuid,
}

// TaskAttemptSummary - simplified representation of a TaskAttempt for MCP responses
#[derive(Debug, Serialize, schemars::JsonSchema)]
pub struct TaskAttemptSummary {
    pub id: String,
    pub task_id: String,
    pub branch: String,
    pub target_branch: String,
    pub executor: String,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
}

impl TaskAttemptSummary {
    pub fn from_task_attempt(attempt: TaskAttempt) -> Self {
        Self {
            id: attempt.id.to_string(),
            task_id: attempt.task_id.to_string(),
            branch: attempt.branch,
            target_branch: attempt.target_branch,
            executor: attempt.executor,
            created_at: attempt.created_at,
            updated_at: attempt.updated_at,
        }
    }
}

// Response types
#[derive(Debug, Serialize, schemars::JsonSchema)]
pub struct StopTaskAttemptResponse {
    pub stopped: bool,
    pub attempt_id: String,
}

#[derive(Debug, Serialize, schemars::JsonSchema)]
pub struct MergeTaskAttemptResponse {
    pub success: bool,
}

#[derive(Debug, Serialize, schemars::JsonSchema)]
pub struct DeleteProjectResponse {
    pub deleted: bool,
    pub project_id: String,
}

#[derive(Debug, Serialize, schemars::JsonSchema)]
pub struct GetTaskAttemptResponse {
    pub task_attempt: TaskAttemptSummary,
}

#[derive(Debug, Serialize, schemars::JsonSchema)]
pub struct ListTaskAttemptsResponse {
    pub attempts: Vec<TaskAttemptSummary>,
    pub applied_filters: TaskAttemptFilters,
}

#[derive(Debug, Serialize, schemars::JsonSchema)]
pub struct TaskAttemptFilters {
    pub project_id: Option<Uuid>,
}

// ============================================================================
// PROJECT MANAGEMENT REQUEST TYPES
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct CreateProjectRequest {
    #[schemars(description = "Project name")]
    pub name: String,
    #[schemars(description = "Path to git repository")]
    pub git_repo_path: String,
    #[schemars(description = "Optional setup script")]
    pub setup_script: Option<String>,
    #[schemars(description = "Optional cleanup script")]
    pub cleanup_script: Option<String>,
    #[schemars(description = "Optional dev script")]
    pub dev_script: Option<String>,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetProjectRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct UpdateProjectRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
    #[schemars(description = "New project name")]
    pub name: Option<String>,
    #[schemars(description = "New git repo path")]
    pub git_repo_path: Option<String>,
    #[schemars(description = "New setup script")]
    pub setup_script: Option<String>,
    #[schemars(description = "New cleanup script")]
    pub cleanup_script: Option<String>,
    #[schemars(description = "New dev script")]
    pub dev_script: Option<String>,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct DeleteProjectRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct ListTaskAttemptsRequest {
    #[schemars(description = "Optional project ID filter")]
    pub project_id: Option<Uuid>,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetTaskAttemptRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

// ============================================================================
// TASK ATTEMPTS ADVANCED TOOLS (25 tools)
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct FollowUpRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
    #[schemars(description = "Follow-up message/instruction")]
    pub message: String,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct StopTaskAttemptRequest {
    #[schemars(description = "Task attempt ID to stop")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct MergeTaskAttemptRequest {
    #[schemars(description = "Task attempt ID to merge")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct PushTaskAttemptRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct RebaseTaskAttemptRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct CreatePRRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
    #[schemars(description = "PR title")]
    pub title: Option<String>,
    #[schemars(description = "PR body/description")]
    pub body: Option<String>,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct AttachPRRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
    #[schemars(description = "PR number to attach")]
    pub pr_number: i64,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetBranchStatusRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetDraftRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct SaveDraftRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
    #[schemars(description = "Draft content")]
    pub content: String,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct DeleteDraftRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct SetDraftQueueRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
    #[schemars(description = "Queue data")]
    pub queue: serde_json::Value,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct ReplaceProcessRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetCommitInfoRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct CompareCommitRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct StartDevServerRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct OpenEditorRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
    #[schemars(description = "Editor to use (e.g., 'code', 'cursor')")]
    pub editor: Option<String>,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct DeleteFileRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
    #[schemars(description = "File path to delete")]
    pub file_path: String,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetChildrenRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct AbortConflictsRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct ChangeTargetBranchRequest {
    #[schemars(description = "Task attempt ID")]
    pub attempt_id: Uuid,
    #[schemars(description = "New target branch")]
    pub target_branch: String,
}

// ============================================================================
// EXECUTION PROCESSES (3 tools)
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct ListProcessesRequest {
    #[schemars(description = "Optional project ID filter")]
    pub project_id: Option<Uuid>,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetProcessRequest {
    #[schemars(description = "Process ID")]
    pub process_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct StopProcessRequest {
    #[schemars(description = "Process ID to stop")]
    pub process_id: Uuid,
}

// ============================================================================
// IMAGES (2 tools)
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct UploadImageRequest {
    #[schemars(description = "Base64 encoded image data")]
    pub data: String,
    #[schemars(description = "MIME type (e.g., image/png)")]
    pub mime_type: String,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetImageRequest {
    #[schemars(description = "Image ID")]
    pub image_id: Uuid,
}

// ============================================================================
// FILESYSTEM (2 tools)
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetFilesystemTreeRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
    #[schemars(description = "Path within the project")]
    pub path: Option<String>,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetFileRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
    #[schemars(description = "File path")]
    pub file_path: String,
}

// ============================================================================
// CONFIG (2 tools)
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct UpdateConfigRequest {
    #[schemars(description = "Configuration JSON")]
    pub config: serde_json::Value,
}

// ============================================================================
// DRAFTS (5 tools)
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct ListDraftsRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct CreateDraftRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
    #[schemars(description = "Draft title")]
    pub title: String,
    #[schemars(description = "Draft content")]
    pub content: String,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetDraftByIdRequest {
    #[schemars(description = "Draft ID")]
    pub draft_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct UpdateDraftRequest {
    #[schemars(description = "Draft ID")]
    pub draft_id: Uuid,
    #[schemars(description = "New title")]
    pub title: Option<String>,
    #[schemars(description = "New content")]
    pub content: Option<String>,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct DeleteDraftByIdRequest {
    #[schemars(description = "Draft ID")]
    pub draft_id: Uuid,
}

// ============================================================================
// CONTAINERS (2 tools)
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetContainerRequest {
    #[schemars(description = "Container ID")]
    pub container_id: Uuid,
}

// ============================================================================
// FORGE-SPECIFIC (8 tools)
// ============================================================================

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct UpdateForgeConfigRequest {
    #[schemars(description = "Forge configuration")]
    pub config: serde_json::Value,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct GetProjectSettingsRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct UpdateProjectSettingsRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
    #[schemars(description = "Project settings")]
    pub settings: serde_json::Value,
}

#[derive(Debug, Serialize, Deserialize, schemars::JsonSchema)]
pub struct ValidateOmniConfigRequest {
    #[schemars(description = "Omni host")]
    pub host: String,
    #[schemars(description = "Omni API key")]
    pub api_key: String,
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
pub struct CreateTaskAndStartRequest {
    #[schemars(description = "Project ID")]
    pub project_id: Uuid,
    #[schemars(description = "Task title")]
    pub title: String,
    #[schemars(description = "Task description")]
    pub description: Option<String>,
    #[schemars(description = "Executor to use (e.g., 'CLAUDE_CODE', 'CURSOR', 'GEMINI')")]
    pub executor: String,
    #[schemars(description = "Optional executor variant")]
    pub variant: Option<String>,
    #[schemars(description = "Base branch for the task attempt")]
    pub base_branch: String,
    #[schemars(description = "Optional parent task attempt UUID")]
    pub parent_task_attempt: Option<Uuid>,
}