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
claude_client.py•376 B
import os
from anthropic import Anthropic
def get_anthropic_client():
"""
Get configured Anthropic client
Returns:
Anthropic: Configured Anthropic client instance
"""
api_key = os.getenv('ANTHROPIC_API_KEY')
if not api_key:
raise ValueError("ANTHROPIC_API_KEY environment variable is not set")
return Anthropic(api_key=api_key)