mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
18 lines • 442 B
JavaScript
const rawRes = await fetchWithTimeout(
// ruleid: detect-generic-ai-api
`https://${baseURL}/v1/chat/completions`,
{
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${apiKey}`
},
timeout,
method: "POST",
body: JSON.stringify({
model,
messages: messages.map(k => ({ role: k.role, content: k.content })),
temperature,
stream: true
})
}
)