/ ディレクトリ / プレイグラウンド / mcp-client-for-ollama
● コミュニティ jonigl ⚡ 即起動

mcp-client-for-ollama

作者 jonigl · jonigl/mcp-client-for-ollama

Ollamaを使用してMCPサーバーと対話するためのテキストベースユーザーインターフェース(TUI)クライアントです。エージェントモード、マルチサーバー、モデル切り替え、ストリーミング応答、ツール管理などの機能を備えています。

Ollamaを使用してMCPサーバーと対話するためのテキストベースユーザーインターフェース(TUI)クライアントです。エージェントモード、マルチサーバー対応、モデル切り替え、ストリーミング応答、ツール管理、ヒューマン・イン・ザ・ループ、思考モード、モデルパラメータ設定、MCPプロンプト、カスタムシステムプロンプト、設定の保存などの機能を備えています。ローカルLLMを活用する開発者向けに構築されています。

ライブデモ

実際の動作

client-for-ollama.replay ▶ 準備完了
0/0

インストール

クライアントを選択

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %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 を開く。保存後、アプリを再起動。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "client-for-ollama": {
      "command": "uvx",
      "args": [
        "mcp-client-for-ollama"
      ],
      "_inferred": true
    }
  }
}

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "client-for-ollama": {
      "command": "uvx",
      "args": [
        "mcp-client-for-ollama"
      ],
      "_inferred": true
    }
  }
}

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "client-for-ollama": {
      "command": "uvx",
      "args": [
        "mcp-client-for-ollama"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop と同じ形式。Windsurf を再起動して反映。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "client-for-ollama",
      "command": "uvx",
      "args": [
        "mcp-client-for-ollama"
      ]
    }
  ]
}

Continue はマップではなくサーバーオブジェクトの配列を使用。

~/.config/zed/settings.json
{
  "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 で削除。

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る