Content
# MCP-Server-DongJunQAQ
## Tool List:
- get_platform_info - Get platform-related information (such as operating system version, CPU type, total memory capacity, etc.);
- get_env - Get the value of a specified environment variable in the system;
Required parameters:
- key: The key of the environment variable
- get_compress_format - Get the compression formats supported by this MCP Server;
- make_archive - Package and compress a specified directory or single file;
Required parameters:
- src: The file or directory that needs to be packaged
- compress_format: The compression format
- decompress - Decompress a specified compressed file and return the directory where the decompressed files are stored;
Required parameters:
- src: The path to the compressed file that needs to be decompressed
- download_video - Download a video from a specified URL to the user's home directory's Downloads folder;
Required parameters:
- url: The URL address of the video to be downloaded
**Note: To use this tool, you need to install ffmpeg in the system in advance (an audio and video processing library that can handle audio and video separation and merging), otherwise, it will cause the video download to fail or the video to have no sound.**
- Windows download address: https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z
(It is recommended to use Thunder to download) After downloading, extract and enter the bin directory, copy the ffmpeg.exe and ffprobe.exe files to the C:\Windows\System32\ directory or any directory in the environment variable, so that these two commands can be executed in the command line;
- Linux download and installation (CentOS, Rocky Linux): `dnf config-manager --set-enabled crb && dnf install ffmpeg-free ffmpeg-free-devel`
- query_command - Query Windows or Linux commands through a large model according to the user's input requirements and return command descriptions;
Required parameters:
- require: Your requirements, such as "Find files starting with 't' in the Downloads directory under the current user's home directory";
- execute_command - Automatically execute read-type commands, but cannot automatically execute write or delete commands;
Required parameters:
- command: The Windows or Linux command returned by the query_command tool;
## Configuration:
Configure for `Cherry Studio` and add the following content to your Cherry Studio settings, using `uvx` (recommended):
```json
{
"mcpServers": {
"MCP-Server-DongJunQAQ": {
"command": "uvx",
"args": ["mcp-server-dongjunqaq"],
"env": {
"API_KEY": "YOUR_API_KEY",
"BASE_URL": "https://ark.cn-beijing.volces.com/api/v3",
"MODEL": "YOUR_MODEL"
}
}
}
}
```
When using `uv`, no specific installation is required, and we will use `uvx` to run MCP-Server-DongJunQAQ directly.