Skip to main content
Glama

vchart-mcp-server

by VisActor
getBody.ts406 B
import type { IncomingMessage } from 'node:http'; export function getBody(request: IncomingMessage) { return new Promise(resolve => { const bodyParts: Buffer[] = []; let body: string; request .on('data', chunk => { bodyParts.push(chunk); }) .on('end', () => { body = Buffer.concat(bodyParts).toString(); resolve(JSON.parse(body)); }); }); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/VisActor/vchart-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server