vercel.json•721 B
{
"functions": {
"app/api/[transport]/route.ts": {
"maxDuration": 60
}
},
"headers": [
{
"source": "/api/(.*)",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Access-Control-Allow-Methods",
"value": "GET, POST, PUT, DELETE, OPTIONS"
},
{
"key": "Access-Control-Allow-Headers",
"value": "Content-Type, Authorization, X-Api-Key, MCP-Session-Id"
},
{
"key": "Access-Control-Max-Age",
"value": "86400"
}
]
}
],
"rewrites": [
{
"source": "/mcp",
"destination": "/api/mcp"
}
]
}