This commit is contained in:
2025-05-22 21:30:47 +09:00
parent 9cbf5da3fd
commit 95bd933c52
12 changed files with 576 additions and 84 deletions

View File

@ -32,6 +32,7 @@ pub fn mcp_setup() {
"cli.py",
"setup.py",
"scripts/ask.py",
"scripts/summarize.py",
"scripts/context_loader.py",
"scripts/prompt_template.py",
];
@ -76,6 +77,12 @@ pub fn mcp_setup() {
let output = OtherCommand::new(&pip_path)
.arg("install")
.arg("openai")
.arg("requests")
.arg("fastmcp")
.arg("uvicorn")
.arg("fastapi")
.arg("fastapi_mcp")
.arg("mcp")
.current_dir(&dest_dir)
.output()
.expect("pip install に失敗しました");