We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andyl25/gcp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
http-server.d.ts•620 B
/**
* Google Cloud MCP HTTP Server
*
* This is an HTTP-based version of the Google Cloud MCP server that supports
* SSE transport for web-based integrations and remote access.
*/
import express from 'express';
/**
* MCP HTTP Server class to handle multiple concurrent connections
*/
declare class MCPHttpServer {
private transports;
private app;
constructor();
private setupMiddleware;
private setupRoutes;
private handleGetRequest;
private handlePostRequest;
private registerServices;
start(port?: number): void;
getApp(): express.Application;
}
export { MCPHttpServer };