local_dev_from_filesystem
Set up a local development environment by specifying a filesystem path. Ideal for creating isolated sandboxes to run tests, analyze coverage, and manage Python, Node, Bun projects directly from your local directory.
Instructions
Create a new local development environment from a filesystem path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Local filesystem path |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Local filesystem path",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}