Enables containerized deployment of the MCP server with Docker and Docker Compose, allowing for easier setup and distribution across machines
Powers the backend API server that handles routing user questions to appropriate specialized agents
Integrates with Ollama to access the deepseek-r1:7b language model for expert responses when specialized agents cannot handle a query
🧠 MCP: マルチエージェントコントロールポイント
このプロジェクトでは、ユーザーの質問を LLM モデルまたは専門エージェント (日付、場所、天気、技術専門家など) にルーティングするマルチエージェント サーバーを実装します。使いやすさを考慮して Streamlit で構築されたシンプルな Web インターフェイスが含まれています。
🚀 機能
- 🌐 FastAPI を使用したバックエンド
- 🧠 専門エージェント(日付、場所、天気、LLM エキスパート)
- 🖥️ Streamlit のビジュアルインターフェース (GUI)
- 🐳 簡単に導入できる Docker コンテナ
- 🔌 ローカルまたはリモートネットワークに対応したクライアント・サーバー通信
📁 プロジェクト構造
⚙️ 要件
🧪 クイックインストール
1. リポジトリをクローンする
2. Streamlitの設定ファイルを作成する
gui
ディレクトリ内に次のファイルを作成します。
以下の内容が含まれます。
3. Docker Composeで実行する
これにより、2 つのコンテナが構築され、持ち上げられます。
- バックエンドは
http://localhost:8000
http://localhost:8501
のグラフィカル インターフェイス
🌍 別のマシンからのアクセス(オプション)
- ポート
8501
正しく公開されていることを確認してください (8000
)。 secrets.toml
ではlocalhost
代わりにサーバーマシンの IP を使用します。- クロスホスト アクセス用にカスタム Docker ネットワークを設定することもできます。
📦 生産用
別のインターフェースと統合する場合は、バックエンドのみを実行できます。
✨ 使用例
Web インターフェースでは、次のような質問を入力できます。
¿Qué día es hoy?
¿Dónde estoy?
¿Qué clima hace?
Explícame qué es Python
アプリは質問に直接回答するか、エージェントに委任するかを決定します。
🛠️ エージェント募集中
エージェント | 関数 |
---|---|
日付 | 現在の日付と時刻を返します |
位置 | IPアドレスで都市と国を検出します |
気候 | 現在の場所の天気を返します |
LLM_エキスパート | ollama 経由でdeepseek-r1:7b モデルをクエリする |
📄 ライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています。
🙋♂️ 著者
[あなたの名前またはエイリアス] によって提供されています。
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
シンプルな Streamlit Web インターフェイスを使用して簡単に対話できるため、ユーザーの質問を専門のエージェント (日付、場所、天気) または LLM エキスパートにルーティングするサーバーです。
Related MCP Servers
- AsecurityFlicenseAqualityA server that enables browser automation using Playwright, allowing interaction with web pages, capturing screenshots, and executing JavaScript in a browser environment through LLMs.Last updated -1218,1151TypeScript
- AsecurityAlicenseAqualityA server that leverages Cloudflare Browser Rendering to extract and process web content for use as context in LLMs, offering tools for fetching pages, searching documentation, extracting structured content, and summarizing content.Last updated -43TypeScriptMIT License
- AsecurityAlicenseAqualityA server that exposes PagerDuty API functionality to LLMs with structured inputs and outputs, enabling management of incidents, services, teams, and users.Last updated -14PythonMIT License
- -securityFlicense-qualityA server that manages conversation context for LLM interactions, storing recent prompts and providing relevant context for each user via REST API endpoints.Last updated -1,137TypeScript