MCP server providing workspace-scoped file and command tools for building agents, including read_file, write_file, edit_file, list_files, and run_command. It runs against a local workspace root and supports both MCP clients and in-process Python use; the LLM/API key stays in the host app.
From the registry: Sandboxed workspace MCP: file ops, argv-only run_command, list_files; BYO LLM prompts.
$ pip install agent-godmodePlease install the `agent-godmode` MCP server into my current AI client (that's you).
Required prerequisites (do these first if not already done):
- **Install Python package** — Install the MCP server package from PyPI. Run: `pip install agent-godmode`
Canonical MCP server config (stdio transport):
- command: `agent-godmode`
- args: []
- required environment variables:
- `AGENT_GODMODE_ROOT`: Absolute workspace root. Required unless you pass --root as a CLI argument. (example: `<your-workspace-path>`)
- optional environment variables:
- `AGENT_GODMODE_MAX_READ_BYTES`: Maximum bytes returned per read_file call. (example: `<max-read-bytes>`)
- `AGENT_GODMODE_COMMAND_TIMEOUT`: Subprocess timeout in seconds for run_command. (example: `<timeout-seconds>`)
- `AGENT_GODMODE_MAX_COMMAND_OUTPUT_BYTES`: Maximum combined stdout/stderr bytes retained from run_command. (example: `<max-output-bytes>`)
- `AGENT_GODMODE_LIST_MAX_ENTRIES`: Maximum number of entries returned by list_files. (example: `<max-list-entries>`)
- `AGENT_GODMODE_ALLOWED_COMMANDS`: Comma-separated basenames allowed as argv[0] for run_command. If unset, all commands are allowed under the sandbox. (example: `<command1,command2>`)
Note: The server runs over stdio. You can provide the workspace root either via AGENT_GODMODE_ROOT or by using CLI args ["--root", "<your-workspace-path>"] instead of the env var.
Add this MCP server to my current client's config in the correct format for you. If you need secrets or credentials I haven't provided, ASK me — do not invent values or leave raw placeholders. After adding it, tell me how to verify the server is connected.AGENT_GODMODE_ROOTrequiredAbsolute workspace root, required unless --root is passed.An MCP Server for computer-use in Windows OS