apply_blur
Add blur effects to images by specifying a radius measure. Process images from file paths or base64 data using the Image Processing MCP Server.
Instructions
应用模糊滤镜
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_source | Yes | 图片源,可以是文件路径或base64编码的图片数据 | |
radius | Yes | 模糊半径,值越大模糊效果越强 |
Input Schema (JSON Schema)
{
"properties": {
"image_source": {
"description": "图片源,可以是文件路径或base64编码的图片数据",
"title": "Image Source",
"type": "string"
},
"radius": {
"description": "模糊半径,值越大模糊效果越强",
"minimum": 0.1,
"title": "Radius",
"type": "number"
}
},
"required": [
"image_source",
"radius"
],
"title": "apply_blurArguments",
"type": "object"
}