Back to MCP directory
publicPublicdnsLocal runtime

mcp

Tenzir MCP Server是一个基于Model Context Protocol的服务,用于连接AI助手与安全数据管道,并将数据映射到Open Cybersecurity Schema Framework (OCSF)。

article

README

🚀 Tenzir MCP Server

Tenzir MCP Server是一个基于Model Context Protocol的服务器,专为Tenzir设计。它能让AI助手与安全数据管道进行交互,并将数据映射到Open Cybersecurity Schema Framework (OCSF),为安全数据处理提供了高效的解决方案。

🚀 快速开始

Tenzir MCP Server可助力AI助手与安全数据管道交互并映射数据到OCSF。以下是使用该服务器的基本步骤。

📦 安装指南

前提条件

MCP服务器要求已安装Tenzir,并且其可在$PATH中被找到:

# 检查Tenzir是否已安装
tenzir --version

若未安装,可按照文档操作,或者直接运行以下命令:

curl https://get.tenzir.app | sh

快速测试

无需安装即可运行:

uv tool run tenzir-mcp --help

💻 使用示例

与Claude配合使用

Claude桌面版

将服务器添加到Claude桌面应用配置中:

{
  "mcpServers": {
    "tenzir": {
      "command": "uv",
      "args": ["tool", "run", "tenzir-mcp"]
    }
  }
}

Claude代码版

使用Claude MCP CLI添加服务器:

# 生产环境使用(从PyPI安装)
claude mcp add tenzir --scope user -- uv tool run tenzir-mcp

# 开发环境使用(从源码运行)
claude mcp add tenzir --scope user -- uv run --project $(pwd) tenzir-mcp

修改服务器配置后,别忘了重启Claude。

📚 详细文档

如需开发设置相关内容,请查看 DEVELOPMENT.md

📄 许可证

本项目采用 Apache License 2.0 许可协议。

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