credential_watch / print_env.py
Humanlearning's picture
feat: Implement CredentialWatch agent with MCP client, main entry point, interactive query agent, and various debugging utilities.
9d3c7fc
raw
history blame contribute delete
228 Bytes
import os
from dotenv import load_dotenv
load_dotenv(".env.local")
print(f"NPI_MCP_URL={os.getenv('NPI_MCP_URL')}")
print(f"CRED_DB_MCP_URL={os.getenv('CRED_DB_MCP_URL')}")
print(f"ALERT_MCP_URL={os.getenv('ALERT_MCP_URL')}")