home / mcp / absd devops mcp server
ABSD DevOps MCP Server - Local filesystem & terminal operations for AI assistants
Configuration
View docs{
"mcpServers": {
"anthonybir-absd_mcp": {
"command": "absd-mcp",
"args": [],
"env": {
"ABSD_MCP_CONFIG": "/path/to/your/config.json"
}
}
}
}This local-first MCP server provides secure filesystem and terminal operations for AI assistants, enabling you to perform read/write filesystem actions, terminal sessions, streaming search, and more entirely on your machine. It supports strong security features, type-safe configuration, and easy integration with your existing MCP client workflows.
You connect to the ABSD DevOps MCP Server from your MCP client by adding it as an MCP entry in your client configuration. You have two local, server-side options to run the MCP: use a globally installed package or run via npx for the latest version.
{
"mcpServers": {
"absd_devops": {
"command": "absd-mcp",
"args": [],
"env": {
"ABSD_MCP_CONFIG": "/path/to/your/config.json"
}
}
}
}{
"mcpServers": {
"absd_devops_npx": {
"command": "npx",
"args": ["-y", "@anthonybir/devops-mcp@latest"],
"env": {
"ABSD_MCP_CONFIG": "/path/to/your/config.json"
}
}
}
}Access and manage your local filesystem with read, write, list, create, move, and search operations. Run interactive terminal sessions (Python, Node.js, or other shells) and manage multiple sessions. Perform streaming searches with pagination and controlled context. Retrieve file metadata, fetch content over HTTP/HTTPS with a configured timeout, and protect your system with built-in security rules.
Configure allowed directories to limit filesystem access and keep a non-empty blocked commands list to prevent destructive actions. Review and adjust the configuration after setup to align with your security policy.
Read files or URLs with image support (PNG, JPEG, GIF, WebP, BMP), optional chunking, and offset support; SVG is treated as text for security.
Read multiple files simultaneously with size caps (1MB/file, 5MB total).
Create or overwrite files with an option to append.
List directory contents recursively with depth control.
Create directories with recursive parent creation.
Move or rename files and directories with security-validated paths.
Get detailed metadata such as size, permissions, timestamps, and line counts.
Search for patterns using ripgrep with regex or literal modes and file filtering.
Surgical text replacement with uniqueness validation.
Initiate background ripgrep searches with optional context lines.
Retrieve paginated search results.
Terminate active search sessions.
List all active search sessions with status.
Launch interactive terminal sessions (Python, Node.js, bash).
Send commands to running processes with ANSI-aware prompt handling.
Retrieve buffered output from background processes.
View all active MCP terminal sessions.
Stop MCP terminal sessions by PID.
List current system processes across platforms.
Terminate system processes with confirmation tokens.
Expose current server configuration (read-only).
Show server usage statistics including uptime and activity.
Template to analyze project structure and tech stack.
Template to set up an interactive Python development environment.
Template to perform guided search and replace workflows.