-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json.example
More file actions
21 lines (19 loc) · 1.38 KB
/
Copy pathmcp.json.example
File metadata and controls
21 lines (19 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"mcpServers": {
"PyMCPAutoGUI": {
// English: Set the working directory. Use ${workspaceFolder} if running from the project root,
// or specify the directory where 'pymcpautogui' is installed if running globally.
// Japanese: 作業ディレクトリを設定します。プロジェクトルートから実行する場合は ${workspaceFolder} を使用し、
// グローバルに実行する場合は 'pymcpautogui' がインストールされているディレクトリを指定します。
"cwd": "${workspaceFolder}", // Or path to site-packages
// English: Command to run the server. Use 'python' if it's in PATH and the correct venv is active,
// or specify the full path to the Python executable in the virtual environment.
// Japanese: サーバーを実行するコマンド。PATH にあり、正しい仮想環境がアクティブな場合は 'python' を使用し、
// そうでない場合は仮想環境内の Python 実行可能ファイルへのフルパスを指定します。
"command": "python", // Or ".venv\\Scripts\\python.exe" or full path
// English: Arguments to run the server module.
// Japanese: サーバーモジュールを実行するための引数。
"args": ["-m", "pymcpautogui.server"]
}
}
}