Skip to main content
Question

Zapier Timeout Issue with Zapier MCP

  • September 24, 2025
  • 0 replies
  • 16 views

Hello Team,

 

I am using Open AI agent SDK to send automated mail through Zapier MCP. When i configured the below config in claude desktop , it is working but the same is not working from python client. It is giving timeout error. Can you please help where to properliy increase timeout config.

 


params={
            "command": "npx",
            "args": [
                "--yes",  # Auto-accept npm package installation
                "mcp-remote",
                "URL with key"
            ],
            "env": {
                "NODE_OPTIONS": "--max-old-space-size=4096",
                # Add environment variables to bypass prompts
                "CI": "true",  # Indicates automated environment
                "ZAPIER_MCP_AUTO_APPROVE": "true",  # If supported by Zapier
                "NO_PROMPT": "true",
                "ZAPIER_MCP_TIMEOUT": "10000"  # Set timeout to 10 seconds
            }
            
        }

 

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.