Skip to main content
Glama

Serper Search MCP Server

by NightTrek
/** * Interface for LLM adapters */ import { ChatMessage, CompletionOptions, ChatCompletionOptions, ChatResponse } from '../../infrastructure/api/openRouterClient.js'; /** * Interface for adapters that provide LLM capabilities */ export interface LLMAdapter { /** * Generates a completion from a prompt */ generateCompletion(prompt: string, options?: CompletionOptions): Promise<string>; /** * Generates a chat completion from a sequence of messages */ generateChatCompletion(messages: ChatMessage[], options?: ChatCompletionOptions): Promise<ChatResponse>; }

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/NightTrek/Serper-search-mcp'

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