Save 70% of Your AI Coding Plan Quota by Replacing ZhiPu Search with Tavily MCP
When using ZhiPu GLM Coding Plan with Claude Code, I noticed my monthly quota draining faster than expected. The culprit? Built-in MCP tools β web-search-prime and web-reader β were consuming coding conversation quota for every web search and page fetch.
TL;DRβ
Replace ZhiPu's built-in web-search-prime and web-reader MCP services with Tavily MCP. Result: free 1000 searches/month with zero impact on coding quota.
The Problem: Every Search Costs Quotaβ
ZhiPu GLM Coding Plan includes several built-in MCP services:
web-search-prime β web search (consumes quota)
web-reader β web page reading (consumes quota)
zread β GitHub repo reading (consumes quota)
In my case, searching WooCommerce documentation, reading API pages, and checking marketplace standards during theme development consumed roughly 30% of my monthly MCP quota in just a few days.
The 16% / 30% usage shown above was reached in less than a week, with web search being the primary consumer.
Solution: Tavily MCPβ
Tavily provides a free tier with 1000 API calls/month, completely independent of your coding plan quota.
Step 1: Get Tavily API Keyβ
Register at tavily.com, free tier includes 1000 calls/month.
Step 2: Add Tavily MCP to Claude Codeβ
claude mcp add tavily-search -s user -- npx -y tavily-mcp@latest
Step 3: Configure API Keyβ
Edit ~/.claude.json, find the tavily-search entry and add the environment variable:
{
"mcpServers": {
"tavily-search": {
"type": "stdio",
"command": "npx",
"args": ["-y", "tavily-mcp@latest"],
"env": {
"TAVILY_API_KEY": "tvly-your-key-here"
}
}
}
}
Step 4: Remove ZhiPu's search servicesβ
claude mcp remove web-search-prime -s user
claude mcp remove web-reader -s user
Also clean up settings.json permissions β remove mcp__web-search-prime__* and mcp__web-reader__* from the allow list, add mcp__tavily-search__* instead.
Step 5: Verifyβ
claude mcp list
# Should show: tavily-search: npx -y tavily-mcp@latest - Connected
# Should NOT show: web-search-prime, web-reader
Comparisonβ
| Feature | ZhiPu Built-in | Tavily MCP |
|---|---|---|
| Cost | Consumes coding plan quota | Free 1000 calls/month |
| Search quality | Optimized for Chinese | Balanced for EN/CN |
| Page extraction | Separate tool | Built-in extract |
| Configuration | Platform-injected, can't disable | One claude mcp add command |
| After free tier | Squeezes coding conversation budget | Pay-as-you-go continues |
Notesβ
Important Notes
- ZhiPu services are platform-injected β they may reappear after restart even after removal. Add them to
settings.jsondeny list to block permanently. - Keep
zread(GitHub repo reading) β low consumption and unique functionality. - Keep
doubao-vision(image analysis) β Tavily doesn't cover this scenario.
Recommendationβ
Learn More About ZhiPu GLM Coding Plan