MCP Servers
by wadewegner
A collection of Model Context Protocol (MCP) servers for use with Cursor. It provides tools for accessing weather information and managing static websites on DigitalOcean App Platform.
Last updated: N/A
MCP Weather & DigitalOcean
A collection of Model Context Protocol (MCP) servers for use with Cursor.
Project Structure
src/
├── index.ts # Main entry point
├── shared/ # Shared utilities
│ └── api.ts # Shared API utilities
├── weather/ # Weather MCP server
│ ├── api.ts # Weather API functions
│ ├── server.ts # Weather MCP server configuration
│ └── types.ts # Weather API types
├── digitalocean/ # DigitalOcean MCP server
│ ├── api.ts # DigitalOcean API functions
│ ├── server.ts # DigitalOcean MCP server configuration
│ └── types.ts # DigitalOcean API types
└── template/ # Template for new MCP servers
├── api.ts # Template API functions
├── server.ts # Template MCP server configuration
└── types.ts # Template API types
tests/ # Test scripts and files
Available MCP Servers
Weather Server
The Weather MCP server provides tools for accessing weather information from the National Weather Service API.
Tools:
-
get-alerts: Get weather alerts for a US state
- Parameters:
state
(two-letter state code, e.g., CA, NY)
- Parameters:
-
get-forecast: Get weather forecast for a location
- Parameters:
latitude
andlongitude
coordinates
- Parameters:
DigitalOcean Server
The DigitalOcean MCP server provides tools for deploying and managing static websites on DigitalOcean App Platform using their API.
API Token Handling
The DigitalOcean MCP server will automatically look for your API token in the following locations (in order):
- As a parameter in the tool call
- Environment variables:
DO_API_TOKEN
orDIGITALOCEAN_API_TOKEN
- A file at
~/.dotoken
containing just the token - A
.env
file in the project root withDO_API_TOKEN=your_token
- A file at
~/.config/digitalocean/token
containing just the token
This means you can set up your token once and not have to provide it with every command.
Tools:
-
deploy-static-site: Deploy a static website to DigitalOcean App Platform
- Required Parameters:
app_name
: Name for your apprepo
: GitHub repository (username/repo)
- Optional Parameters:
token
: DigitalOcean API token (optional if stored in environment or config files)region
: Region code (e.g., nyc, sfo) - Default: "nyc"branch
: Branch to deploy - Default: "main"source_dir
: Directory in repo containing source code - Default: "/"build_command
: Build command (if needed)output_dir
: Directory where build outputs filesdeploy_on_push
: Auto-deploy on git push - Default: trueenvironment_slug
: Runtime environment - Default: "html"custom_domain
: Custom domain (optional)
- Required Parameters:
-
get-app-info: Get information about a DigitalOcean App Platform app
- Required Parameters:
app_id
: App ID
- Optional Parameters:
token
: DigitalOcean API token (optional if stored in environment or config files)
- Required Parameters:
-
get-deployment-status: Get the status of a specific deployment
- Required Parameters:
app_id
: App IDdeployment_id
: Deployment ID
- Optional Parameters:
token
: DigitalOcean API token (optional if stored in environment or config files)
- Required Parameters:
-
list-deployments: List all deployments for an app
- Required Parameters:
app_id
: App ID
- Optional Parameters:
token
: DigitalOcean API token (optional if stored in environment or config files)
- Required Parameters:
-
create-deployment: Create a new deployment (redeploy an app)
- Required Parameters:
app_id
: App ID
- Optional Parameters:
token
: DigitalOcean API token (optional if stored in environment or config files)force_build
: Force a rebuild without cache - Default: false
- Required Parameters:
-
get-deployment-logs: Get logs for a deployment
- Required Parameters:
app_id
: App IDdeployment_id
: Deployment ID
- Optional Parameters:
token
: DigitalOcean API token (optional if stored in environment or config files)
- Required Parameters:
-
delete-app: Delete an app from DigitalOcean App Platform
- Required Parameters:
app_id
: App ID
- Optional Parameters:
token
: DigitalOcean API token (optional if stored in environment or config files)
- Required Parameters:
Adding a New MCP Server
To add a new MCP server:
- Copy the
template
directory and rename it to your server name - Update the types, API functions, and server configuration
- Add your server to the main
index.ts
file
Building and Running
# Install dependencies
npm install
# Build the project
npm run build
# Run the Weather MCP server
node build/index.js
# Run the DigitalOcean MCP server
node build/index.js digitalocean
Testing
The project includes several test scripts in the tests/
directory:
test-simple.mjs
: A simple test script that sends JSON-RPC requests to the MCP servertest-api.mjs
: A script that directly tests the DigitalOcean APItest-mcp.mjs
: A more comprehensive test for the MCP servertest-deploy.mjs
: A test script specifically for the deploy-static-site tooltoken-test.mjs
: A utility script to verify that the DigitalOcean API token can be read correctly
To run a test:
# Run a test script
node tests/test-simple.mjs
Cursor Integration
To use with Cursor, add the following to your .cursor/mcp.json
file:
{
"mcpServers": {
"weather": {
"command": "node",
"args": [
"/path/to/your/project/build/index.js"
]
},
"digitalocean": {
"command": "node",
"args": [
"/path/to/your/project/build/index.js",
"digitalocean"
]
}
}
}