T
Terminal Guardian
Provides secure sandboxed terminal access with risk analysis and deny-by-default security controls.
Share:
About
Provides secure sandboxed terminal access with risk analysis and deny-by-default security controls.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Terminal Guardian.
- What is Terminal Guardian?
- Terminal Guardian provides secure, sandboxed terminal access. It includes risk analysis and deny-by-default security controls, enhancing the safety of terminal operations. This MCP is designed to protect environments from potentially harmful commands.
- How does Terminal Guardian enhance security?
- It applies deny-by-default security, meaning only explicitly allowed actions can be performed. This, combined with risk analysis, minimizes the attack surface within a terminal environment. It helps prevent unauthorized or dangerous commands from executing.
- Does Terminal Guardian require an API key or other credentials?
- No, Terminal Guardian does not require an API key, OAuth, or any other credentials for operation as per its manifest. It is designed for direct integration without external authentication.
- How can I integrate Terminal Guardian with a client like Claude Desktop?
- Integration with clients like Claude Desktop typically involves adding the MCP's transport configuration. For Terminal Guardian, using its stdio transport, this usually means configuring the client to interact with the MCP's standard input/output streams.
- What are the licensing costs for Terminal Guardian?
- Terminal Guardian is open-source and available on GitHub, implying it follows an open-source license, typically without direct costs. However, deployment or integration might incur costs depending on the underlying infrastructure.
Install Terminal Guardian
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"terminal-guardian": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-terminal-guardian"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"terminal-guardian": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-terminal-guardian"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"terminal-guardian": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-terminal-guardian"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.