We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sandraschi/ocr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
check_mistral.py•335 B
import os
from dotenv import load_dotenv
def check_env():
load_dotenv()
key = os.getenv("MISTRAL_API_KEY")
if key:
print(f"MISTRAL_API_KEY is SET (Length: {len(key)})")
print(f"Key preview: {key[:4]}...")
else:
print("MISTRAL_API_KEY is NOT SET")
if __name__ == "__main__":
check_env()