Token导航 LogoToken导航TokenDH.com
Metar MCP Server logo
AI代理stdio官方级别未说明来源级核验

Metar MCP Server

MCP Server

一个轻量级的MCP服务器,通过stdio传输协议提供METAR和TAF信息。

工具数

0

提示词数

0

GitHub Stars

1

资源数

0
气象数据PythonVS CodeVS Code

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

tfraudet

提供方

tfraudet

最后核验

2026/5/17 20:20

运行时

Python

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

python3 -m venv .venv

详细介绍

metar-mcp-server

A lightweight MCP server providing METAR and TAF information over the stdio transport protocol.

metar-mcp-server in action

Requirements

  • Python 3.12 or later
  • Docker
  • VS Code, Warp or another MCP Client

How to run it locally

We suggest you to create a virtual environment for running this app with Python 3. Clone this repository and open your terminal/command prompt in a folder.

git clone https://github.com/tfraudet/metar-mcp-server.git
cd ./metar-mcp-server
python3 -m venv .venv

Then, activate the virtual environment:

On Unix systems

source .venv/bin/activate

On Window systems

.venv\scripts\activate

Then, install the requirements:

pip install -r requirements.txt

Build the MCP server as a docker image:

docker build -t metar-mcp-server .

And install the mcp-server package:

Install in VS Code (using python version running locally)

On VS Code, add the following JSON block to your workspace ``.vscode/mcp.json`` file

{
  "servers": {
    "Aviation Weather Center": {
      "type": "stdio",
      "command": "python",
      "args": [
        "${workspaceFolder}/server.py"
      ]
    }
  }
}

Install on Warp (using docker)

See Warp Model Context Protocol Documentation for details.

  1. Navigate Settings > AI > Manage MCP servers.
  2. Add a new MCP server by clicking the + Add button.
  3. Paste the configuration given below:
{
  "Aviation Weather Center": {
    "command": "docker",
    "args": [
      "run",
      "-i",
      "--rm",
      "metar-mcp-server"
    ],
    "env": {},
    "working_directory": null,
    "start_on_launch": true
  }
}

目录标签

目录标签

气象数据PythonVS Code本地部署航空天气MCP协议轻量级服务器

支持客户端

VS Code

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Python

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP