Back to MCP directory
publicPublicdnsLocal runtime

stun-mcp

一个通过发送STUN Binding Request并返回结果的MCP服务器实现,基于RFC8489协议,支持在VS Code的Agent模式下运行。

article

README

🚀 stun - mcp

stun - mcp是一个MCP服务器,它可以发送STUN(RFC8489)的Binding Request并返回结果。

🚀 快速开始

✨ 主要特性

  • 能够发送STUN的Binding Request并返回结果。

⚠️ 重要提示

⚠️ 重要提示

STUN的数据包处理仅实现了必要的最低限度功能。

📦 安装指南

此文档未提及安装步骤,若有安装相关内容可补充后查看对应美化内容。

💻 使用示例

基础用法

以下是在启用Agent模式的VS Code中的设置方法: 在mcp.json中添加以下配置:

{
    "servers": {
       "stun": {
            "type": "stdio",
            "command": "node",
            "args": [
                "/path/to/stun-mcp/build/main.js"
            ]
        }
    }
}

执行类似以下的提示时,将发送STUN请求并显示结果:

以下のURLにSTUNのリクエストを送り、結果を出力してください
stun:stun1.l.google.com:19302

📚 详细文档

此文档未提供详细文档内容,若有详细说明可补充后查看对应美化内容。

🔧 技术细节

此文档未提供技术实现细节内容,若有技术细节可补充后查看对应美化内容。

📄 许可证

此文档未提及许可证信息,若有许可证相关内容可补充后查看对应美化内容。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client