We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sdpa/yahoo-finance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import dotenv from 'dotenv';
dotenv.config();
export interface Config {
port: number;
isProduction: boolean;
}
export function loadConfig(): Config {
const port = parseInt(process.env.PORT || '8080', 10);
const isProduction = process.env.NODE_ENV === 'production';
return { port, isProduction };
}