Skip to main content
Glama

supOS MCP Server

by FREEZONEX
import { Client } from "pg"; export interface PgConfig { user: string; host: string; database: string; password: string; port: number; } export class PgClient { private client: Client; constructor(config: PgConfig) { this.client = new Client(config); } async connect() { await this.client.connect(); } async disconnect() { await this.client.end(); } async query(sql: string, params?: any[]): Promise<any> { await this.connect(); try { const res = await this.client.query(sql, params); return res.rows; } catch (err) { throw err; } } }

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/FREEZONEX/mcp-server-supos'

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