Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PROJECTS_DIR | No | The base directory for all file operations. By default, it uses ~/Desktop/Projects. | ~/Desktop/Projects |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| read_file | Read the contents of a file from the local file system. Use this to view existing code files. |
| write_file | Create or overwrite a file with new content. Use this to create new files or completely replace existing ones. |
| edit_file | Edit a file by replacing specific text. The old_text must match exactly (including whitespace). |
| list_directory | List files and directories in a given path |
| run_command | Execute a shell command in the projects directory. Use for running npm install, git commands, tests, etc. |
| search_files | Search for text within files in a directory (recursive) |