Claude Terminal Access
STDIOModel Context Protocol server for terminal access and directory interaction.
Model Context Protocol server for terminal access and directory interaction.
A Model Context Protocol (MCP) server for terminal access. This server allows Claude to interact with specified directories on your system.
The server can be configured using the following environment variables:
ALLOWED_DIRECTORY
: The directory path that Claude is allowed to access (default: '${HOME}/your/allowed/directory')You can set these variables either through:
.env
file in your project rootAdd this to your claude_desktop_config.json
:
{ "mcpServers": { "terminal": { "command": "node", "args": [ "${HOME}/path/to/mcp-terminal-use/dist/index.js" ], "env": { "ALLOWED_DIRECTORY": "${HOME}/your/allowed/directory" } } } }