Skip to main content
Back to Blog

Claude Alternative Alert: GLM-4.7 for 20 RMB, Serious Performance at 1/7 the Price

1/1/2026

Developer savings guide: 1/7 the Claude price, 3x usage, Code Arena on par with Opus.


1. Why GLM Coding Plan?

1) Top-tier model performance

Zhipu’s latest flagship GLM-4.7 is here.

On Code Arena, GLM-4.7 scored 1449, ranking in the top tier alongside Claude Opus 4.5 (1480) and GPT-5.2 (1398).

Description

Core strengths:

  • ✅ Code generation at open-source SOTA
  • ✅ Stronger reasoning for complex tasks
  • ✅ Solid frontend aesthetics, high UI fidelity
  • ✅ Excellent tool-calling and agent behavior

2) Extreme value

Compared with Claude Pro:

ItemClaude ProGLM Coding LiteAdvantage
Price$20/month (~145 RMB)20 RMB/month1/7 price
Usagebase quota3x Claude Pro3x usage
Context200K200Kequal

From 240 RMB/year for a full year of AI coding assistance.

3) Seamless support for 20+ tools

Works with almost all mainstream AI coding tools:

image-20260108174825177

Fully supported:

  • Claude Code (officially recommended ⭐)
  • Cline (VS Code extension)
  • Cursor (popular AI editor)
  • OpenCode, Roo Code, Kilo Code
  • Crush, Goose, Factory Droid
  • More coming…

Configure in minutes and use GLM-4.7 in your favorite tools.


2. Holiday promotion details

Promo period

Dec 8, 2024 - Jan 15, 2025

Discount

🎉 50% off first purchase + extra holiday perks

image-20260108174917771

Plan pricing

PlanOriginalFirst-timeRenewalUsage
Lite120 RMB/quarter54 RMB/quarter120 RMB/quarter3x Claude Pro
Pro 🔥600 RMB/quarter270 RMB/quarter600 RMB/quarter5x Lite
Max1200 RMB/quarter540 RMB/quarter1200 RMB/quarter4x Pro

image-20260108174931558

image-20260108175314351

Recommended: Pro annual plan (most popular)

  • ~600 prompts per 5 hours
  • ~3x Claude Max (5x) usage
  • includes vision, web search, web reader, repo MCP
  • 40-60% faster than Lite

Invite friends group deal

Up to 50% bonus credit, no cap.

Invite friends with your link:

  • friend buys first time, you get 50% of the order as bonus
  • bonus credits can be used for renewal
  • invite more, get more

🚀 My invite link:

https://www.bigmodel.cn/glm-coding?ic=T8DZ40WK7M

Copy and share to save together.


3. Use GLM in Claude Code

Claude Code is Anthropic’s official terminal AI coding tool. With GLM Coding Plan, it works great.

Step 1: Install Claude Code

Prerequisites:

  • Node.js 18+
  • Windows users: Git for Windows

Install:

npm install -g @anthropic-ai/claude-code

Verify:

claude --version

Step 2: Configure GLM Coding Plan

  1. Get your Zhipu API Key:

  2. Set env vars:

Windows (PowerShell):

$env:ANTHROPIC_API_KEY="your_zhipu_api_key"

macOS/Linux:

export ANTHROPIC_API_KEY="your_zhipu_api_key"
  1. Configure models:

Edit or create ~/.claude/settings.json:

{
  "env": {
    "ANTHROPIC_DEFAULT_HAIKU_MODEL": "glm-4.5-air",
    "ANTHROPIC_DEFAULT_SONNET_MODEL": "glm-4.7",
    "ANTHROPIC_DEFAULT_OPUS_MODEL": "glm-4.7"
  }
}

image-20260108175619988

This is cc switch, which I will cover in a separate article. It manages models for Claude Code, Codex, and Gemini clients.

Step 3: Start using

cd your-project
claude

The first launch asks if you trust the directory. Select Yes.

Check model status:

In Claude Code:

/status

Confirm the model is GLM-4.7.

image-20260108175922298


If manual config is too painful, Zhipu provides a one-click helper with a GUI.

Features

  • ✅ guided wizard
  • ✅ auto detect and install coding tools
  • ✅ one-click GLM plan setup
  • ✅ MCP management UI
  • ✅ built-in Claude Code plugin marketplace
  • ✅ zh/en UI

Quick start

Option A: npx (recommended)

npx @z_ai/coding-helper

Option B: global install

npm install -g @z_ai/coding-helper
coding-helper

Flow

The wizard walks you through:

Description

  1. Choose UI language
  2. Pick plan (Lite/Pro/Max)
  3. Enter API key
  4. Select tools (Claude Code/OpenCode/Crush, etc.)
  5. Auto install tools (if needed)
  6. Apply plan to tools
  7. Manage MCP (optional)
  8. Done

5. MCP features included

With GLM Coding Plan you get MCP services for free, adding superpowers to your AI.

MCP overview

📖 What is MCP?

MCP (Model Context Protocol) lets AI call external tools and services. With MCP, GLM-4.7 can:

  • understand images and video
  • search the web in real time
  • read web pages
  • analyze GitHub repos

1) Vision MCP

Features:

  • 🎨 UI screenshot to code
  • 📸 image content analysis
  • 🎬 video understanding (MP4/MOV/M4V)
  • 🐛 error screenshot diagnosis
  • 📊 chart analysis
  • 🏗️ architecture diagram understanding

One-click install (Claude Code):

# replace your_api_key
claude mcp add -s user zai-mcp-server --env Z_AI_API_KEY=your_api_key -- npx -y "@z_ai/mcp-server"

Manual config:

{
  "mcpServers": {
    "zai-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@z_ai/mcp-server"],
      "env": {
        "Z_AI_API_KEY": "your_api_key",
        "Z_AI_MODE": "ZHIPU"
      }
    }
  }
}

Usage examples:

  • “Analyze this UI screenshot and generate code”
  • “How do I fix this error screenshot?”
  • “Describe the trend in this chart”

2) Web search MCP

Features:

  • 🔍 real-time web search
  • 📰 latest news
  • 📚 docs lookup
  • 💡 answer search

One-click install:

claude mcp add -s user -t http web-search-prime https://open.bigmodel.cn/api/mcp/web_search_prime/mcp --header "Authorization: Bearer your_api_key"

Manual config:

{
  "mcpServers": {
    "web-search-prime": {
      "type": "http",
      "url": "https://open.bigmodel.cn/api/mcp/web_search_prime/mcp",
      "headers": {
        "Authorization": "Bearer your_api_key"
      }
    }
  }
}

Usage examples:

  • “Search for React 19 new features”
  • “Find Python async best practices”
  • “What is new in AI coding tools in 2025?“

3) Web reader MCP

Features:

  • 🌐 fetch full web content
  • 📄 extract main text + metadata
  • 🔗 list page links
  • 📖 parse technical docs

One-click install:

claude mcp add -s user -t http web-reader https://open.bigmodel.cn/api/mcp/web_reader/mcp --header "Authorization: Bearer your_api_key"

Manual config:

{
  "mcpServers": {
    "web-reader": {
      "type": "http",
      "url": "https://open.bigmodel.cn/api/mcp/web_reader/mcp",
      "headers": {
        "Authorization": "Bearer your_api_key"
      }
    }
  }
}

Usage examples:

  • “Read this URL and summarize”
  • “Extract install steps from this doc”
  • “Parse the key points of this article”

4) Open-source repo MCP

Features:

  • 🔍 search repo docs
  • 📁 get directory structure
  • 📝 read specific files
  • 🐛 view issues/commits

One-click install:

claude mcp add -s user -t http zread https://open.bigmodel.cn/api/mcp/zread/mcp --header "Authorization: Bearer your_api_key"

Manual config:

{
  "mcpServers": {
    "zread": {
      "type": "http",
      "url": "https://open.bigmodel.cn/api/mcp/zread/mcp",
      "headers": {
        "Authorization": "Bearer your_api_key"
      }
    }
  }
}

Usage examples:

  • “Analyze vitejs/vite repo structure”
  • “Search React docs for Hooks”
  • “Read this repo README”

MCP quota

Planweb search/reader/repovision
Lite100/monthshared 5-hour pool
Pro1000/monthshared 5-hour pool
Max4000/monthshared 5-hour pool

Notes:

  • web search/reader/repo share the same quota
  • vision uses a separate 5-hour pool, resets every 5 hours
  • quota reset is monthly unless you upgrade

6. Limited bonus: Zhipu AI IME

Subscribe to any plan and get Zhipu AI input method (limited offer).

Highlights:

  • macOS and Windows
  • unlimited during plan term
  • voice input to text
  • smart correction and completion

Log in with the same phone number and it activates automatically.


7. Zhipu IPO event

Zhipu AI went public in 2025.

image

To celebrate, there are multiple promotions:

🎉 Promo 1: Holiday discount

GLM Coding Plan 50% off first purchase, Dec 8, 2024 - Jan 15, 2025

🎁 Promo 2: Coding Plan gift pack

All Coding Plan users can claim a gift pack.

How to claim:

  1. Open Claude Code or any tool using GLM Coding Plan
  2. Enter: 智谱旺旺
  3. Follow the prompts to submit shipping info

Gift pack includes:

  • 🥛 custom Want Want milk (your name on it)
  • 🎨 limited Zhipu IPO stickers

image-20260108181136059

Important:

  • Period: Jan 8 - Jan 16, 2025
  • Paid users only: any paid plan (Lite/Pro/Max)
  • One per account: limited quantity, first come first served
  • Supported tools: Claude Code, Cline, Cursor, etc.

Step-by-step:

# 1. launch Claude Code
claude

# 2. enter in chat
智谱旺旺

# 3. read the ASCII art and instructions
# 4. submit shipping info
# 5. wait for delivery

🥤 Promo 3: WeChat official account bonus

Follow Zhipu AI on WeChat, send “阿姨助我” to get a milk tea coupon.

🚀 Promo 4: group purchase

Invite friends for group purchase, up to 50% bonus credits.

IPO news: https://mp.weixin.qq.com/s/NFK61KcfIBzAF2EF5ElghQ


8. Take action now

Subscribe

👉 Official page: https://www.bigmodel.cn/glm-coding

👉 My invite link: https://www.bigmodel.cn/glm-coding?ic=T8DZ40WK7M

Steps

  1. Visit the page and register/login
  2. Get API key
  3. Choose plan (Lite/Pro/Max)
  4. Subscribe with invite link for 50% off
  5. Install Claude Code or use coding helper
  6. Configure GLM-4.7
  7. Start coding with AI

Closing

In 2026, embrace AI coding.

GLM-4.7 + Claude Code + GLM Coding Plan = unstoppable.

From 20 RMB/month you get top-tier AI coding help. It might be the best investment of 2025.

Do not wait. The offer ends Jan 15, 2025.

🚀 Subscribe now:

https://www.bigmodel.cn/glm-coding?ic=T8DZ40WK7M

Make GLM-4.7 your coding partner. 10x productivity is real.


Links summary:


This is a personal experience summary, not official promotion.

Like, bookmark, and share so more developers can benefit. 🎉

欢迎关注公众号 FishTech Notes,一块交流使用心得!