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
}
}