gyazo-mcp-server 0.6.3

Local MCP server for Gyazo with HTTP and stdio transport support
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
use clap::{Args, Parser, Subcommand};

#[derive(Debug, Parser)]
#[command(
    name = "gyazo-mcp-server",
    version,
    about = "Gyazo 向けのローカル HTTP / stdio MCP サーバー"
)]
pub(crate) struct Cli {
    /// 設定ディレクトリのパスを上書きします
    #[arg(long, global = true)]
    pub(crate) config_dir: Option<String>,

    #[command(subcommand)]
    pub(crate) command: Option<Command>,
}

#[derive(Debug, Clone, PartialEq, Eq, Subcommand)]
pub(crate) enum Command {
    /// stdio transport で MCP server を起動します
    Stdio(StdioArgs),
    /// config.toml の設定を表示・変更します
    Config(ConfigArgs),
    /// .env の環境変数を表示・変更します
    Env(EnvArgs),
    /// HTTP サーバーの OS サービス登録を管理します
    Service(ServiceArgs),
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct StdioArgs {
    /// stdio 起動前に one-shot の OAuth 認証を行い、token を保存して終了します
    #[arg(long)]
    pub(crate) auth: bool,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct ConfigArgs {
    #[command(subcommand)]
    pub(crate) command: ConfigCommand,
}

#[derive(Debug, Clone, PartialEq, Eq, Subcommand)]
pub(crate) enum ConfigCommand {
    /// 対話形式で config.toml を初期設定します
    Init,
    /// 現在の設定を一覧表示します
    Show,
    /// 指定したキーの設定値を取得します
    Get(ConfigGetArgs),
    /// 設定値を変更します
    Set(ConfigSetArgs),
    /// 設定値を削除します
    Unset(ConfigUnsetArgs),
    /// config.toml のファイルパスを表示します
    Path,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct ConfigUnsetArgs {
    /// 設定キー (config_dir, tcp_port, oauth_callback_path, rust_log)
    pub(crate) key: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct ConfigGetArgs {
    /// 設定キー (config_dir, tcp_port, oauth_callback_path, rust_log)
    pub(crate) key: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct ConfigSetArgs {
    /// 設定キー (tcp_port, oauth_callback_path, rust_log)
    pub(crate) key: String,
    /// 設定値
    pub(crate) value: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct EnvArgs {
    #[command(subcommand)]
    pub(crate) command: EnvCommand,
}

#[derive(Debug, Clone, PartialEq, Eq, Subcommand)]
pub(crate) enum EnvCommand {
    /// 対話形式で .env を初期設定します
    Init,
    /// 現在の環境変数設定を一覧表示します
    Show,
    /// 指定したキーの環境変数を取得します
    Get(EnvGetArgs),
    /// 環境変数を設定します
    Set(EnvSetArgs),
    /// 環境変数を削除します
    Unset(EnvUnsetArgs),
    /// .env のファイルパスを表示します
    Path,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct EnvUnsetArgs {
    /// 環境変数名
    pub(crate) key: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct EnvGetArgs {
    /// 環境変数名 (GYAZO_MCP_CONFIG_DIR, GYAZO_MCP_OAUTH_CLIENT_ID, GYAZO_MCP_OAUTH_CLIENT_SECRET, GYAZO_MCP_PERSONAL_ACCESS_TOKEN)
    pub(crate) key: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct EnvSetArgs {
    /// 環境変数名 (GYAZO_MCP_OAUTH_CLIENT_ID, GYAZO_MCP_OAUTH_CLIENT_SECRET, GYAZO_MCP_PERSONAL_ACCESS_TOKEN)
    pub(crate) key: String,
    ///    pub(crate) value: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Args)]
pub(crate) struct ServiceArgs {
    #[command(subcommand)]
    pub(crate) command: ServiceCommand,
}

#[derive(Debug, Clone, PartialEq, Eq, Subcommand)]
pub(crate) enum ServiceCommand {
    /// OS のサービスとして登録し、ログイン時に自動起動するようにします
    Install,
    /// サービス登録を解除します
    Uninstall,
    /// サービスの状態を表示します
    Status,
    /// サービスを起動します
    Start,
    /// サービスを停止します
    Stop,
    /// サービスを再起動します
    Restart,
}

#[cfg(test)]
mod tests {
    use clap::Parser;

    use super::*;

    #[test]
    fn parses_default_http_mode_without_subcommand() {
        let cli = Cli::parse_from(["gyazo-mcp-server"]);

        assert_eq!(cli.command, None);
        assert_eq!(cli.config_dir, None);
    }

    #[test]
    fn parses_global_config_dir_option() {
        let cli = Cli::parse_from([
            "gyazo-mcp-server",
            "--config-dir",
            "/tmp/test",
            "config",
            "show",
        ]);

        assert_eq!(cli.config_dir, Some("/tmp/test".to_string()));
        assert_eq!(
            cli.command,
            Some(Command::Config(ConfigArgs {
                command: ConfigCommand::Show,
            }))
        );
    }

    #[test]
    fn parses_stdio_subcommand() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "stdio"]);

        assert_eq!(cli.command, Some(Command::Stdio(StdioArgs { auth: false })));
    }

    #[test]
    fn parses_stdio_auth_flag() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "stdio", "--auth"]);

        assert_eq!(cli.command, Some(Command::Stdio(StdioArgs { auth: true })));
    }

    #[test]
    fn parses_config_init() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "config", "init"]);

        assert_eq!(
            cli.command,
            Some(Command::Config(ConfigArgs {
                command: ConfigCommand::Init,
            }))
        );
    }

    #[test]
    fn parses_config_show() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "config", "show"]);

        assert_eq!(
            cli.command,
            Some(Command::Config(ConfigArgs {
                command: ConfigCommand::Show,
            }))
        );
    }

    #[test]
    fn parses_config_get() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "config", "get", "tcp_port"]);

        assert_eq!(
            cli.command,
            Some(Command::Config(ConfigArgs {
                command: ConfigCommand::Get(ConfigGetArgs {
                    key: "tcp_port".to_string(),
                }),
            }))
        );
    }

    #[test]
    fn parses_config_set() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "config", "set", "tcp_port", "19000"]);

        assert_eq!(
            cli.command,
            Some(Command::Config(ConfigArgs {
                command: ConfigCommand::Set(ConfigSetArgs {
                    key: "tcp_port".to_string(),
                    value: "19000".to_string(),
                }),
            }))
        );
    }

    #[test]
    fn parses_config_unset() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "config", "unset", "tcp_port"]);

        assert_eq!(
            cli.command,
            Some(Command::Config(ConfigArgs {
                command: ConfigCommand::Unset(ConfigUnsetArgs {
                    key: "tcp_port".to_string(),
                }),
            }))
        );
    }

    #[test]
    fn parses_config_path() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "config", "path"]);

        assert_eq!(
            cli.command,
            Some(Command::Config(ConfigArgs {
                command: ConfigCommand::Path,
            }))
        );
    }

    #[test]
    fn parses_env_init() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "env", "init"]);

        assert_eq!(
            cli.command,
            Some(Command::Env(EnvArgs {
                command: EnvCommand::Init,
            }))
        );
    }

    #[test]
    fn parses_env_get() {
        let cli = Cli::parse_from([
            "gyazo-mcp-server",
            "env",
            "get",
            "GYAZO_MCP_OAUTH_CLIENT_ID",
        ]);

        assert_eq!(
            cli.command,
            Some(Command::Env(EnvArgs {
                command: EnvCommand::Get(EnvGetArgs {
                    key: "GYAZO_MCP_OAUTH_CLIENT_ID".to_string(),
                }),
            }))
        );
    }

    #[test]
    fn parses_env_show() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "env", "show"]);

        assert_eq!(
            cli.command,
            Some(Command::Env(EnvArgs {
                command: EnvCommand::Show,
            }))
        );
    }

    #[test]
    fn parses_env_set() {
        let cli = Cli::parse_from([
            "gyazo-mcp-server",
            "env",
            "set",
            "GYAZO_MCP_OAUTH_CLIENT_ID",
            "my-id",
        ]);

        assert_eq!(
            cli.command,
            Some(Command::Env(EnvArgs {
                command: EnvCommand::Set(EnvSetArgs {
                    key: "GYAZO_MCP_OAUTH_CLIENT_ID".to_string(),
                    value: "my-id".to_string(),
                }),
            }))
        );
    }

    #[test]
    fn parses_env_unset() {
        let cli = Cli::parse_from([
            "gyazo-mcp-server",
            "env",
            "unset",
            "GYAZO_MCP_PERSONAL_ACCESS_TOKEN",
        ]);

        assert_eq!(
            cli.command,
            Some(Command::Env(EnvArgs {
                command: EnvCommand::Unset(EnvUnsetArgs {
                    key: "GYAZO_MCP_PERSONAL_ACCESS_TOKEN".to_string(),
                }),
            }))
        );
    }

    #[test]
    fn parses_env_path() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "env", "path"]);

        assert_eq!(
            cli.command,
            Some(Command::Env(EnvArgs {
                command: EnvCommand::Path,
            }))
        );
    }

    #[test]
    fn parses_service_install() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "service", "install"]);

        assert_eq!(
            cli.command,
            Some(Command::Service(ServiceArgs {
                command: ServiceCommand::Install,
            }))
        );
    }

    #[test]
    fn parses_service_uninstall() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "service", "uninstall"]);

        assert_eq!(
            cli.command,
            Some(Command::Service(ServiceArgs {
                command: ServiceCommand::Uninstall,
            }))
        );
    }

    #[test]
    fn parses_service_status() {
        let cli = Cli::parse_from(["gyazo-mcp-server", "service", "status"]);

        assert_eq!(
            cli.command,
            Some(Command::Service(ServiceArgs {
                command: ServiceCommand::Status,
            }))
        );
    }

    #[test]
    fn parses_service_start_stop_restart() {
        for (arg, expected) in [
            ("start", ServiceCommand::Start),
            ("stop", ServiceCommand::Stop),
            ("restart", ServiceCommand::Restart),
        ] {
            let cli = Cli::parse_from(["gyazo-mcp-server", "service", arg]);
            assert_eq!(
                cli.command,
                Some(Command::Service(ServiceArgs { command: expected })),
                "service {arg} のパースに失敗しました"
            );
        }
    }
}