Skip to main content
Glama
jasonkholden

New England Power Grid MCP Server

by jasonkholden
settings.py586 B
import os from typing import Optional from dotenv import load_dotenv load_dotenv() class Settings: """Configuration settings for the ISO New England MCP server.""" ISO_NE_BASE_URL = "https://webservices.iso-ne.com/api/v1.1" ISO_NE_USERNAME: Optional[str] = os.getenv("ISO_NE_USERNAME") ISO_NE_PASSWORD: Optional[str] = os.getenv("ISO_NE_PASSWORD") @classmethod def validate_credentials(cls) -> bool: """Validate that required credentials are present.""" return bool(cls.ISO_NE_USERNAME and cls.ISO_NE_PASSWORD) settings = Settings()

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/jasonkholden/ne_power_grid_mcp_server'

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