WaLiAPI 是一款本地运行的 LLM API 网关桌面软件(Tauri 2 + React + Rust)。支持各类 LLM 厂商渠道接入、Ollama 自部署模型、CPA 方式 ChatGPT 渠道接入,统一支持 Chat Completions / Responses / Anthropic Messages 三协议转换使用。内置安全审计引擎、知识库 RAG(HNSW + FTS5 混合检索)、Wiki 知识引擎和 MCP Server(29 个工具),配合 Codex、Claude Code、Gemini CLI 等 AI 编程工具使用。
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"waliapi": {
"command": "cargo",
"args": [
"run",
"--",
"WaLiAPI"
]
}
}
}
Run in terminal:
claude mcp add waliapi cargo run -- WaLiAPI
Add to .cursor/mcp.json:
{
"mcpServers": {
"waliapi": {
"command": "cargo",
"args": [
"run",
"--",
"WaLiAPI"
]
}
}
}