Skip to main content
Glama
hmumixaM

USCardForum MCP Server

by hmumixaM
worker.js839 B
import { Container } from "@cloudflare/containers"; /** * Cloudflare Container for USCardForum MCP Server */ export class USCardForumContainer extends Container { defaultPort = 8000; // Sleep after 5 minutes of inactivity to save costs sleepAfter = '5m'; // Optional hooks for debugging override onStart() { console.log('USCardForum Container started'); } override onError(error) { console.error('USCardForum Container error:', error); } } export default { async fetch(request, env) { const url = new URL(request.url); // Simple load balancing / singleton pattern // We use a fixed name "default" to reuse the same container instance // similar to a singleton service. const container = env.USCARDFORUM.getByName("default"); return await container.fetch(request); } };

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/hmumixaM/uscardforum-mcp4'

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