mcp-bridge / scripts /local_run.ps1
patdev's picture
Update mcp-bridge OAuth server
19b4e98 verified
Raw
History Blame Contribute Delete
219 Bytes
param(
[string]$ApiKey = "dev-key-change-me",
[string]$PublicBaseUrl = "http://localhost:7860"
)
$env:MCP_API_KEY = $ApiKey
$env:PUBLIC_BASE_URL = $PublicBaseUrl
uvicorn app:app --host 0.0.0.0 --port 7860 --reload