Skip to main content
Glama

MCP Perplexity Server

index.tsโ€ข409 B
import dotenv from 'dotenv'; dotenv.config(); interface LoggingConfig { level: string; } interface ServerConfig { port: number; } interface Config { logging: LoggingConfig; server: ServerConfig; } const config: Config = { logging: { level: process.env.LOG_LEVEL || 'info', }, server: { port: process.env.PORT ? parseInt(process.env.PORT, 10) : 3000, }, }; export default config;

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/samwang0723/mcp-perplexity'

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