check_file_exists
Verify the existence of a file within the workspace directory to ensure availability for AI development workflows in the AI Development Pipeline MCP.
Instructions
Check if a local file exists (restricted to workspace directory)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}