From c84a253e52e998a6b1d39f6c9c6109b3288efb9d Mon Sep 17 00:00:00 2001 From: teomarcdhio Date: Sun, 25 Jan 2026 20:25:46 +0000 Subject: [PATCH 1/3] Testign secret scan --- MCP_and_tools/GMailMCP/main.py | 2 +- MCP_and_tools/SendEmailWithComposio/sendMail.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MCP_and_tools/GMailMCP/main.py b/MCP_and_tools/GMailMCP/main.py index f0a20b1..174e3d4 100644 --- a/MCP_and_tools/GMailMCP/main.py +++ b/MCP_and_tools/GMailMCP/main.py @@ -24,7 +24,7 @@ def send_email(sender: str, recipient: str, title: str, body: str) -> str: title: The subject/title of the email. body: The body content of the email. """ - password = os.getenv("GMAIL_PASSWORD") + password = "234 rgts fffff"" if not password: raise ValueError("GMAIL_PASSWORD not set in environment variables.") diff --git a/MCP_and_tools/SendEmailWithComposio/sendMail.py b/MCP_and_tools/SendEmailWithComposio/sendMail.py index 7107242..3547ca0 100644 --- a/MCP_and_tools/SendEmailWithComposio/sendMail.py +++ b/MCP_and_tools/SendEmailWithComposio/sendMail.py @@ -18,7 +18,7 @@ externalUserId = "c3e00703-0478-4974-8873-bb6b6586f8bf" # Create an auth config for gmail from the dashboard or programmatically -auth_config_id = os.environ.get("AUTH_CONFIG_ID") +auth_config_id = "yd_sgte2344" connection_request = composio.connected_accounts.link( user_id=externalUserId, auth_config_id=auth_config_id, From c1f99cf1258a63ba1bb68ed18bd60ab6898edc75 Mon Sep 17 00:00:00 2001 From: teomarcdhio Date: Sun, 25 Jan 2026 20:36:50 +0000 Subject: [PATCH 2/3] Update --- MCP_and_tools/GMailMCP/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCP_and_tools/GMailMCP/main.py b/MCP_and_tools/GMailMCP/main.py index 174e3d4..ebe3366 100644 --- a/MCP_and_tools/GMailMCP/main.py +++ b/MCP_and_tools/GMailMCP/main.py @@ -24,7 +24,7 @@ def send_email(sender: str, recipient: str, title: str, body: str) -> str: title: The subject/title of the email. body: The body content of the email. """ - password = "234 rgts fffff"" + password = "234 rgts fffff" if not password: raise ValueError("GMAIL_PASSWORD not set in environment variables.") From 16f7df007d389901c7c4506c1a1dddc597c21c30 Mon Sep 17 00:00:00 2001 From: teomarcdhio Date: Sun, 25 Jan 2026 20:43:57 +0000 Subject: [PATCH 3/3] Update --- MCP_and_tools/GMailMCP/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCP_and_tools/GMailMCP/main.py b/MCP_and_tools/GMailMCP/main.py index ebe3366..43004f3 100644 --- a/MCP_and_tools/GMailMCP/main.py +++ b/MCP_and_tools/GMailMCP/main.py @@ -56,7 +56,7 @@ def get_recent_emails(email_address: str) -> list[str]: """ password = os.getenv("GMAIL_PASSWORD") if not password: - raise ValueError("GMAIL_PASSWORD not set in environment variables.") + raise ValueError("GMAIL_PASSWORD not set in environment variables") try: # Connect to Gmail IMAP server