Skip to main content
Glama

Volume Wall Detector MCP

index.ts669 B
#!/usr/bin/env node "use strict"; import { FastMCP } from "fastmcp"; import { tools } from "./services/tools"; import { Tool } from "./types/tools"; import { getConfig } from "./config/env"; const config = getConfig(); const server = new FastMCP({ name: "Volume Wall Detector MCP", version: "1.0.0" }); // Register all tools tools.forEach((tool) => { (server.addTool as Tool)(tool); }); // Start server with appropriate transport if (config.TRANSPORT_TYPE === "sse") { server.start({ transportType: "sse", sse: { endpoint: "/sse", port: parseInt(config.PORT, 10) } }); } else { server.start({ transportType: "stdio" }); }

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/Cognitive-Stack/volume-wall-detector-mcp'

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