aibd-devcontainer
A preconfigured development container setup for AI-assisted development with Claude, based on VS Code Dev Containers with integrated Model Context Protocol (MCP) server for file system and shell operations.
Documentation
AIBD Dev Container
A preconfigured development container setup for AI-assisted development with Claude, based on VS Code Dev Containers with integrated Model Context Protocol (MCP) server for file system and shell operations.
Overview
This repository provides a ready-to-use development container that:
- Creates a consistent, isolated development environment
- Integrates seamlessly with Claude Desktop via MCP server
- Uses Docker volumes for persistent storage
- Works on Windows (with WSL2), macOS, and Linux
Prerequisites
- Visual Studio Code
- VS Code Dev Containers extension
- Docker Desktop
- For Windows users: WSL2 enabled
Setup Instructions
1. Clone the Repository
git clone https://github.com/gergelyszerovay/aibd-devcontainer.git
cd aibd-devcontainer2. Open in VS Code
Open the cloned repository in Visual Studio Code. You should receive a notification asking if you want to reopen the folder in a container. Click "Reopen in Container" to proceed.
Alternatively, you can:
1. Click the green button in the lower-left corner of VS Code
2. Select "Reopen in Container" from the menu
3. Wait for Container Build
VS Code will build and start your development container. This process may take a few moments on first launch. Subsequent starts will be faster.
4. Access Your Project Files
The container creates a Docker volume mounted at `/volume` inside the container:
cd volumeThis is where you should place your project files. You can either:
- Clone an existing repository: `git clone https://github.com/your-username/your-project.git`
- Create new files directly in this directory
5. Connect Claude to the Container
To connect Claude to your development container:
1. Configure Claude Desktop to use the MCP server by adding the following to your `claude_desktop_config.json`:
{
"mcpServers": {
"devcontainer": {
"command": "npx",
"args": ["-y", "supergateway", "--sse", "http://localhost:3100/sse"]
}
}
}2. Restart Claude Desktop to establish the connection
Container Configuration
Dev Container JSON
The `.devcontainer/devcontainer.json` file configures the development container:
{
"name": "Node.js & TypeScript",
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
"forwardPorts": [3100],
"postCreateCommand": "bash .devcontainer/install.sh",
"postStartCommand": "bash .devcontainer/start.sh",
"mounts": [
"source=${localWorkspaceFolderBasename}-volume,target=${containerWorkspaceFolder}/volume,type=volume"
]
}This configuration:
- Uses the official Microsoft TypeScript/Node.js image
- Forwards port 3100 for the MCP server
- Runs setup scripts after creation and on each start
- Creates a persistent Docker volume for your project files
Installation Script
The `.devcontainer/install.sh` script runs once when the container is first created:
#/bin/sh
sudo chown -R node:node ./
# Additional setup commands can be added hereYou can customize this script to install additional tools or dependencies.
Startup Script
The `.devcontainer/start.sh` script runs each time the container starts:
#/bin/sh
npx -y @gergelyszerovay/mcp-server-aibd-devcontainer --enableHttpTransport=true --mcpHttpPort=3100 --enableStdioTransport=false --enableRestServer=true --restHttpPort=3101 --enableShellExecTool=true --allowed-directories=/workspacesThis script starts the MCP server that enables Claude to interact with your code.
License
This project is available under the MIT License. See the LICENSE file for more details.
Frequently asked questions
What is aibd-devcontainer?
aibd-devcontainer is A preconfigured development container setup for AI-assisted development with Claude, based on VS Code Dev Containers with integrated Model Context Protocol (MCP) server for file system and shell operations.
How do I install aibd-devcontainer?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is aibd-devcontainer open source?
Yes — it is hosted on GitHub at https://github.com/gergelyszerovay/aibd-devcontainer and has 4 stars.
Related MCP tools
Claude Desktop for Debian-based Linux distributions for the Model Context Protocol. Enhance AI assistants with powerful integrations. Shell-based implementation
🙌 OpenHands: Code Less, Make More for the Model Context Protocol. Enhance AI assistants with powerful integrations. Python-based implementation.
The all-in-one Desktop & Docker AI application with built-in RAG, AI agents, No-code agent builder, MCP compatibility, and more.
Universal memory layer for AI Agents; Announcing OpenMemory MCP - local and secure memory management. Python-based implementation.
基于大模型搭建的聊天机器人,同时支持 微信公众号、企业微信应用、飞书、钉钉 等接入,可选择ChatGPT/Claude/DeepSeek/文心一言/讯飞星火/通义千问/ Gemini/GLM-4/Kimi/LinkAI,能处理文本、语音和图片,访问操作系统和互联网,支持基于自有知识库进行定制企业智能客服。
:robot: The free, Open Source alternative to OpenAI, Claude and others. Self-hosted and local-first. Drop-in replacement for OpenAI, running on consumer-gra...
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP