-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.yml
More file actions
32 lines (26 loc) · 1.02 KB
/
manifest.yml
File metadata and controls
32 lines (26 loc) · 1.02 KB
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
28
29
30
31
32
---
applications:
- name: blue-button-mcp-server
buildpacks:
- python_buildpack
memory: 512M
disk_quota: 1G
instances: 1
# FastMCP HTTP server - uses PORT env var from cloud.gov
command: PYTHONPATH=src uvicorn src.blue_button.server:app --host 0.0.0.0 --port $PORT
# Public route for MCP clients (auth handled by the server via Blue Button OAuth)
routes:
- route: blue-button-mcp.app.cloud.gov
# Health check
health-check-type: http
health-check-http-endpoint: /health
env:
# Python settings
PYTHONUNBUFFERED: "1"
# Use sandbox by default (set to "false" for production)
USE_SANDBOX: "true"
# Authentication via Blue Button OAuth
# Set these via `cf set-env` for security:
# cf set-env blue-button-mcp-server BASE_URL https://blue-button-mcp.app.cloud.gov
# cf set-env blue-button-mcp-server BLUE_BUTTON_CLIENT_ID <your-client-id>
# cf set-env blue-button-mcp-server BLUE_BUTTON_CLIENT_SECRET <your-client-secret>