Arc is a Model Context Protocol (MCP) server designed to simplify framework deployments on various hosting environments, with a focus on shared hosting. It bridges the gap between Large Language Models (LLMs) and hosting environments, enabling novice developers to deploy web applications easily through conversational interfaces.
This project is currently in early development. Contributions and feedback are welcome!
# Clone the repository
git clone https://github.com/elblanco2/arc-mcp.git
cd arc-mcp
# Create a virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\\Scripts\\activate
# Install dependencies
pip install -r requirements.txt
# Install the package in development mode
pip install -e .
Create a .env
file with your configuration:
SECURE_STORAGE_PATH=~/.arc/credentials
# Start the server directly
arc
# With debug logging
arc --debug
# With a custom storage path
arc --secure-storage-path=/path/to/credentials
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\\Claude\\claude_desktop_config.json
{
"mcpServers": {
"arc": {
"command": "python",
"args": [\
"-m",\
"arc",\
"--debug"\
]
}
}
}
Arc is built on a modular architecture:
Provider | Status | Features |
---|---|---|
Netlify | ✅ Complete | Serverless, Edge, Forms |
Vercel | ✅ Complete | Serverless, Edge, Analytics |
Shared Hosting | ✅ Complete | SSH/SFTP, PHP, MySQL |
Hostm.com | ✅ Complete | Shared Hosting, API Access |
Framework | Status | Features |
---|---|---|
Wasp | ✅ Complete | Full-Stack JS Framework |
Next.js | 🚧 Planned | React Framework |
Astro | 🚧 Planned | Static Site Generator |
Contributions are welcome! Please feel free to submit a Pull Request.
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run linting
flake8
This project is licensed under the MIT License - see the LICENSE file for details.