We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/schwim23/myaigist_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1.13 KiB
# MyAIGist MCP Server Environment Configuration
# Copy this file to .env and add your actual API keys
# Anthropic API Key (required - for Claude text generation)
# Get your key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=sk-ant-your-anthropic-api-key-here
# Anthropic Model (for summarization and Q&A)
# Recommended: claude-3-5-sonnet-20241022 (best balance of quality and speed)
# Alternative: claude-3-opus-20240229 (highest quality, slower)
ANTHROPIC_MODEL=claude-3-5-sonnet-20241022
# OpenAI API Key (required - for embeddings and transcription)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-your-openai-api-key-here
# OpenAI Embedding Model (for vector search/RAG)
# Required for RAG functionality - Claude doesn't provide embeddings
# Recommended: text-embedding-3-large (higher accuracy)
# Alternative: text-embedding-3-small (lower cost, slightly less accurate)
OPENAI_EMBED_MODEL=text-embedding-3-large
# OpenAI Whisper Model (for audio/video transcription)
# Used by Whisper for audio and video transcription
# Required for media files - Claude doesn't provide transcription
OPENAI_WHISPER_MODEL=whisper-1