burn-mcp-server 2.0.7 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,20 +0,0 @@
1
- // Vercel Edge handler — pre-bundled by esbuild into api/mcp.mjs
2
-
3
- import { handleMcpRequest } from './http.js'
4
-
5
- export const config = { runtime: 'edge' }
6
-
7
- export default async function handler(req: Request): Promise<Response> {
8
- try {
9
- return await handleMcpRequest(req)
10
- } catch (e: any) {
11
- return new Response(JSON.stringify({
12
- error: 'Handler threw',
13
- message: String(e?.message || e),
14
- stack: String(e?.stack || '').slice(0, 2000),
15
- }), {
16
- status: 500,
17
- headers: { 'content-type': 'application/json' },
18
- })
19
- }
20
- }