https://github.com/luc-io/mcp-digitalocean-server
Model Context Protocol implementation with DigitalOcean integration
https://github.com/luc-io/mcp-digitalocean-server
Last synced: 3 months ago
JSON representation
Model Context Protocol implementation with DigitalOcean integration
- Host: GitHub
- URL: https://github.com/luc-io/mcp-digitalocean-server
- Owner: luc-io
- Created: 2025-01-29T10:34:36.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-01-29T10:35:35.000Z (8 months ago)
- Last Synced: 2025-01-29T11:30:36.149Z (8 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MCP DigitalOcean Server
A Model Context Protocol implementation that integrates with DigitalOcean for server management.
## Setup
1. Clone this repository
2. Copy `.env.example` to `.env` and fill in your DigitalOcean API token
3. Install dependencies:
```bash
pip install -r requirements.txt
```
4. Run the server:
```bash
python src/server.py
```## Features
- MCP Protocol implementation
- DigitalOcean integration for server management
- FastAPI-based HTTP server## Configuration
Configure the following environment variables in your `.env` file:
- `DIGITALOCEAN_TOKEN`: Your DigitalOcean API token
- `MCP_SERVER_PORT`: Port for the MCP server (default: 8000)
- `MCP_SERVER_HOST`: Host for the MCP server (default: 0.0.0.0)