introduction-to-mcp
このプロジェクトは、基本的な計算機能を持つ最小限のMCPサーバーとクライアントの例を示しています。SSEとstdioトランスポートを使用しており、開発者向けのホットリロード機能も備えています。インストールや実行方法が明確に記載されており、初心者でも扱いやすい内容です。
GitHubスター
1
ユーザー評価
未評価
お気に入り
0
閲覧数
27
フォーク
0
イシュー
2
Introduction to MCP
A minimal MCP server and client example demonstrating basic calculator operations using both SSE and stdio transports.
Installation
To install all packages from your requirements.txt
file using pip
, you can use the following command in your terminal:
pip install -r requirements.txt
Running the Server
Make sure you have installed the mcp
package. You can do this by running the following command in your terminal:
pip install mcp[cli]
Then, you can run the server.py
script using the following command:
mcp dev server.py
You can also run the script using Python directly:
python server.py
Use python server.py
for normal execution. Use mcp dev server.py
for development with hot-reloading and a better developer experience.
Important Note
When you run
mcp dev server.py
, you are starting the MCP Inspector and its proxy server, not your FastMCP server directly. The MCP Inspector runs its own proxy (default port 6277) and does not use the port (8050) specified in yourserver.py
.
To run your FastMCP server on port 8050 as defined in server.py, you should execute:
python server.py
The mcp dev command is for development and debugging with the MCP Inspector, not for running your server directly on the specified port. If you want to use the Inspector, connect your client to the proxy port (6277). If you want your server to listen on 8050, run it with
python server.py
.
Running the Client
STDIO Client
Launches the server as a subprocess and connects to it using the stdio
transport. This is useful for testing and debugging.
python client_stdio.py
SSE Client
Connects to the server using the sse
transport. This is useful for real-time updates and notifications.
python client_sse.py