Skip to main content
Glama
Cognitive-Stack

Hermes Search MCP Server

env.ts536 B
"use strict"; export interface AzureSearchConfig { endpoint: string; apiKey: string; indexName: string; } export const getConfig = (): AzureSearchConfig => { const endpoint = process.env.AZURE_SEARCH_ENDPOINT; const apiKey = process.env.AZURE_SEARCH_API_KEY; const indexName = process.env.AZURE_SEARCH_INDEX_NAME; if (!endpoint || !apiKey || !indexName) { throw new Error("Missing required Azure Search configuration. Please check your .env file."); } return { endpoint, apiKey, indexName, }; };

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/Cognitive-Stack/hermes-search-mcp'

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