MCP.so
ログイン

mcp-server

@zusdn90

mcp-server について

mcp 서버 개발하기

基本情報

カテゴリ

その他

ランタイム

node

トランスポート

stdio

公開者

zusdn90

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "mcp-server-zusdn90": {
      "command": "python",
      "args": [
        "server.py"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is mcp-server?

mcp-server is a Python-based MCP (Model Context Protocol) server example that provides two simple tools: BMI calculation and weather retrieval. It demonstrates how to build an MCP server using the fastmcp library.

How to use mcp-server?

Install dependencies (pip install httpx fastmcp), then run the server with python server.py. The server exposes two tools: calculate_bmi (takes weight in kg and height in m, returns BMI) and fetch_weather (takes a city name, returns current weather via a mock API endpoint).

Key features of mcp-server

  • BMI calculator from weight and height
  • Weather lookup by city name
  • Built with Python and fastmcp
  • Uses httpx for async HTTP requests
  • Demonstrates MCP tool definition and execution

Use cases of mcp-server

  • Learning how to create a Python MCP server
  • Prototyping simple MCP tools for health or weather data
  • Testing MCP client–server interactions with a minimal example

FAQ from mcp-server

What is mcp-server?

mcp-server is a minimal MCP server example written in Python that showcases defining and running tools using the fastmcp library.

What are the main features of mcp-server?

It includes two tools: calculate_bmi (calculates Body Mass Index) and fetch_weather (retrieves current weather for a city).

What dependencies are required to run mcp-server?

You need httpx and fastmcp. Install them with pip install httpx fastmcp.

How do I start the server?

Run python server.py in the terminal after installing dependencies.

Are there any usage examples?

Yes. The README shows Python code for both tools: calculate_bmi(weight_kg, height_m) and fetch_weather(city) using httpx and fastmcp decorators.

コメント

「その他」の他のコンテンツ