[{'Text': '"""Remote MCP server using official MCP SDK with HTTP transport and Auth0 OAuth authentication.\n\nThis server implements RFC 9728 OAuth Protected Resource Metadata and uses the official\nMCP Python SDK with StreamableHTTP transport.\n\nAUTHENTICATION:\n- Auth0 OAuth integration using JWT token validation via JWKS\n- RFC 9728 Protected Resource Metadata endpoint at /.well-known/oauth-protected-resource\n- Required scopes: permissions from Auth0 JWT token claims\n\nCONFIGURATION:\nCredentials can be loaded from either:\n1. Environment variables (AUTH0_DOMAIN, AUTH0_CLIENT_ID, etc.)\n2. infrastructure/auth0-credentials.json (created by auth0-setup.sh)\n\nUsage:\n    python -m point_topic_mcp.server_http\n"""\n\nimport os\nos.environ["MCP_TRANSPORT"] = "http"\n\nimport json\nimport logging\nfrom contextlib import asynccontextmanager\nfrom pathlib import Path\nfrom typing import AsyncIterator\nfrom urllib.parse import quote\n\nimport httpx\n'}]