fastmcp deployment config

This commit is contained in:
Taylor Wilsdon
2025-12-23 08:35:52 -08:00
parent 82703cffa8
commit 258ea58436
3 changed files with 225 additions and 469 deletions

21
fastmcp.json Normal file
View File

@@ -0,0 +1,21 @@
{
"$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
"source": {
"path": "fastmcp_server.py",
"entrypoint": "mcp"
},
"environment": {
"python": ">=3.10",
"project": "."
},
"deployment": {
"transport": "http",
"host": "0.0.0.0",
"port": 8000,
"log_level": "INFO",
"env": {
"MCP_ENABLE_OAUTH21": "true",
"OAUTHLIB_INSECURE_TRANSPORT": "1"
}
}
}