作者 jonigl · jonigl/mcp-client-for-ollama
Ollamaを使用してMCPサーバーと対話するためのテキストベースユーザーインターフェース(TUI)クライアントです。エージェントモード、マルチサーバー、モデル切り替え、ストリーミング応答、ツール管理などの機能を備えています。
Ollamaを使用してMCPサーバーと対話するためのテキストベースユーザーインターフェース(TUI)クライアントです。エージェントモード、マルチサーバー対応、モデル切り替え、ストリーミング応答、ツール管理、ヒューマン・イン・ザ・ループ、思考モード、モデルパラメータ設定、MCPプロンプト、カスタムシステムプロンプト、設定の保存などの機能を備えています。ローカルLLMを活用する開発者向けに構築されています。
%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"client-for-ollama": {
"command": "uvx",
"args": [
"mcp-client-for-ollama"
],
"_inferred": true
}
}
}
Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。
{
"mcpServers": {
"client-for-ollama": {
"command": "uvx",
"args": [
"mcp-client-for-ollama"
],
"_inferred": true
}
}
}
Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。
{
"mcpServers": {
"client-for-ollama": {
"command": "uvx",
"args": [
"mcp-client-for-ollama"
],
"_inferred": true
}
}
}
Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。
{
"mcpServers": {
"client-for-ollama": {
"command": "uvx",
"args": [
"mcp-client-for-ollama"
],
"_inferred": true
}
}
}
Claude Desktop と同じ形式。Windsurf を再起動して反映。
{
"mcpServers": [
{
"name": "client-for-ollama",
"command": "uvx",
"args": [
"mcp-client-for-ollama"
]
}
]
}
Continue はマップではなくサーバーオブジェクトの配列を使用。
{
"context_servers": {
"client-for-ollama": {
"command": {
"path": "uvx",
"args": [
"mcp-client-for-ollama"
]
}
}
}
}
context_servers に追加。保存時に Zed がホットリロード。
claude mcp add client-for-ollama -- uvx mcp-client-for-ollama
ワンライナー。claude mcp list で確認、claude mcp remove で削除。