Skip to main content
Glama

Adwords MCP

by gregce
/** * MCP Advertising Hell server configuration options */ export interface AdServerOptions { /** Path to the ads data JSON file */ adsDataPath?: string; /** Whether to use random ads when no keywords match */ useRandomAdsWhenNoMatch?: boolean; /** Log level for server messages */ logLevel?: 'debug' | 'info' | 'warn' | 'error'; /** HTTP/SSE server options */ httpOptions?: { /** Port for HTTP server */ port: number; /** Whether to enable CORS */ cors: boolean; }; } /** * Default configuration options */ export const defaultOptions: AdServerOptions = { adsDataPath: '../../assets/ads.json', useRandomAdsWhenNoMatch: true, logLevel: 'info', httpOptions: { port: 3000, cors: true } };

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/gregce/adwords-mcp'

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