hostbridge mcp
An MCP server that helps novice developers deploy web applications through conversational interfaces, bridging the gap between LLMs and various hosting environments.
An MCP server that helps novice developers deploy web applications through conversational interfaces, bridging the gap between LLMs and various hosting environments.
A Model Context Protocol (MCP) server that simplifies framework deployments on various hosting environments, with a focus on shared hosting.
Arc bridges the gap between Large Language Models (LLMs) and hosting environments, allowing novice developers to deploy web applications easily through conversational interfaces. It implements the Model Context Protocol (MCP) to expose tools, resources, and prompts that guide users through the deployment process.
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: venvScriptsactivate
# 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
Windows: %APPDATA%Claudeclaude_desktop_config.json
Add Arc server configuration:
{
"mcpServers": {
"arc": {
"command": "python",
"args": [
"-m",
"arc",
"--debug"
]
}
}
}
Restart Claude Desktop.
Start conversations with Claude about deploying your applications!
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.