Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Glm Kimi Ollama

FreeNot checked

Provides three MCP servers for Claude Code to access free/low-cost LLM models: GLM (Zhipu), Kimi (Moonshot), and local Ollama, enabling chat, vision, and offlin

GitHubEmbed

About

Provides three MCP servers for Claude Code to access free/low-cost LLM models: GLM (Zhipu), Kimi (Moonshot), and local Ollama, enabling chat, vision, and offline tasks via natural language.

README

Free & low-cost LLM access for Claude Code — three MCP servers covering GLM (Zhipu), Kimi (Moonshot) and local Ollama models.

  • 🆓 GLM — permanently-free glm-4-flash via the Zhipu China endpoint
  • 🎁 Kimi — Moonshot kimi-k2.6 (new accounts get a ¥15 credit)
  • 🖥️ Ollama — fully local, private, zero-cost models (e.g. qwen3:8b)

All three run over stdio via Node.js — no Python or uv required (Windows users often find python is just a Store stub).

Why

Claude Code is powerful, but API costs add up. This project gives you three cheaper/offline "delegates" you can call from Claude Code:

Provider Model Cost Best for
GLM (Zhipu) glm-4-flash free forever daily Q&A, translation, code gen
Kimi (Moonshot) kimi-k2.6 ¥15 credit on signup vision (kimi_read_media), deep reasoning
Ollama (local) qwen3:8b free, offline privacy, batch, mechanical tasks

Quick start

1. Kimi MCP (patched for the China endpoint)

claude mcp add kimi -s user \
  -e MOONSHOT_API_KEY=sk-xxx \
  -- npx -y mcp-glm-kimi-ollama mcp-kimi

⚠️ Why the patch matters: the upstream kimi-api-mcp hardcodes the international endpoint api.moonshot.ai and a retired model moonshot-v1-128k. China-registered keys return 401 against the wrong host, and the old model no longer exists on the CN endpoint. This repo patches both (see src/kimi-server.mjs), defaulting to api.moonshot.cn + kimi-k2.6.

2. GLM MCP (free)

claude mcp add glm -s user \
  -e GLM_API_KEY=xxx.yyy \
  -e GLM_BASE_URL=https://open.bigmodel.cn/api/anthropic \
  -e GLM_OFFPEAK_MODEL=glm-4-flash \
  -e GLM_PEAK_MODEL=glm-4-flash \
  -e GLM_CHEAP_MODEL=glm-4-flash \
  -e GLM_DELEGATE=on \
  -- npx -y glm-mcp

3. Ollama MCP (local, optional)

winget install Ollama.Ollama
ollama pull qwen3:8b
claude mcp add ollama -s user -e ASK_OLLAMA_MODEL=qwen3:8b -- npx -y @ask-llm/ollama-mcp

Development

npm install
npm test

Docs

License

MIT

from github.com/sinner12123/mcp-glm-kimi-ollama

Installing Glm Kimi Ollama

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/sinner12123/mcp-glm-kimi-ollama

FAQ

Is Glm Kimi Ollama MCP free?

Yes, Glm Kimi Ollama MCP is free — one-click install via Unyly at no cost.

Does Glm Kimi Ollama need an API key?

No, Glm Kimi Ollama runs without API keys or environment variables.

Is Glm Kimi Ollama hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Glm Kimi Ollama in Claude Desktop, Claude Code or Cursor?

Open Glm Kimi Ollama on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Glm Kimi Ollama with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All communication MCPs