9router / src /app /api /mcp /[plugin] /message /route.js
2api
feat: configurable stream stall timeout + per-provider UI
88c4c60
Raw
History Blame Contribute Delete
609 Bytes
import { NextResponse } from "next/server";
import { sendToChild, findPlugin } from "@/lib/mcp/stdioSseBridge";
export const runtime = "nodejs";
export const dynamic = "force-dynamic";
export async function POST(request, { params }) {
const { plugin } = await params;
if (!findPlugin(plugin)) {
return NextResponse.json({ error: `Unknown plugin: ${plugin}` }, { status: 404 });
}
try {
const body = await request.json();
sendToChild(plugin, body);
return new Response(null, { status: 202 });
} catch (e) {
return NextResponse.json({ error: e.message }, { status: 500 });
}
}