-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathrender.yaml
More file actions
27 lines (21 loc) · 774 Bytes
/
render.yaml
File metadata and controls
27 lines (21 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Render Blueprint for ScrapeGraph MCP Server
# Deploy with: https://render.com/deploy
# Or connect your GitHub repo to Render and it will auto-detect this file
services:
- type: web
name: scrapegraph-mcp
runtime: docker
plan: starter # Change to 'free' for testing, 'starter' or higher for production
# Docker configuration
dockerfilePath: ./Dockerfile
# Health check endpoint
healthCheckPath: /health
# Auto-deploy on push to main branch
autoDeploy: true
# Environment variables
envVars:
# Transport mode (http for remote deployment)
- key: MCP_TRANSPORT
value: http
# Note: SGAI_API_KEY is NOT set here.
# Each user passes their own API key via mcp-remote from their local environment.