AgentHubAgentHub

Talos Linux MCP Server

MCP ServerMCP Registry官方收录

io.github.Nosmoht/talos-mcp-server · v2.4.3

MCP server for Talos Linux — resources, services, logs, health, config, lifecycle via gRPC.

概览

Talos Linux MCP Server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "talos-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "talos-mcp"
      ]
    }
  }
}

环境变量

TALOSCONFIG可选

Path to talosconfig file (default: ~/.talos/config)

TALOS_CONTEXT可选

Context name override (default: active context from config)

TALOS_ENDPOINTS可选

Comma-separated endpoint overrides

TALOS_MCP_READ_ONLY可选

Set to "true" to disable all mutating tools (default: false)

TALOS_MCP_HTTP_ADDR可选

If set (e.g. ":8080"), serve Streamable HTTP instead of stdio

TALOS_MCP_AUTH_TOKEN可选

Required bearer token when HTTP mode is active (TALOS_MCP_HTTP_ADDR is set)

TALOS_MCP_ALLOWED_NODES可选

Comma-separated IPs, hostnames, and CIDR ranges permitted as tool targets. Unset or empty allows all nodes.

TALOS_MCP_ALLOWED_PATHS可选

Comma-separated path prefixes permitted for talos_read_file and talos_list_files (e.g. /etc,/proc). Unset or empty allows all paths.

TALOS_MCP_SKIP_VERSION_CHECK可选

Set to "true" to bypass upgrade path validation (default: false)

TALOS_MCP_RATE_LIMIT可选

HTTP mode: token-bucket refill rate in requests/second (float, default: 10)

TALOS_MCP_RATE_BURST可选

HTTP mode: token-bucket burst capacity (int, default: 20)

TALOS_MCP_MAX_BODY_SIZE可选

HTTP mode: max POST request body size in bytes (int, default: 4194304 = 4 MiB)

TALOS_MCP_MAX_CONCURRENT可选

HTTP mode: max concurrent POST handlers; returns 503 on overload (int, default: 20)

相关资源

统一 Manifest

{
  "id": "io.github.Nosmoht/talos-mcp-server",
  "type": "mcp-server",
  "version": "2.4.3",
  "displayName": "Talos Linux MCP Server",
  "description": "MCP server for Talos Linux — resources, services, logs, health, config, lifecycle via gRPC.",
  "repository": {
    "url": "https://github.com/Nosmoht/talos-mcp-server",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "talos-mcp",
        "version": "2.4.3",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "TALOSCONFIG",
            "description": "Path to talosconfig file (default: ~/.talos/config)"
          },
          {
            "name": "TALOS_CONTEXT",
            "description": "Context name override (default: active context from config)"
          },
          {
            "name": "TALOS_ENDPOINTS",
            "description": "Comma-separated endpoint overrides"
          },
          {
            "name": "TALOS_MCP_READ_ONLY",
            "description": "Set to \"true\" to disable all mutating tools (default: false)"
          },
          {
            "name": "TALOS_MCP_HTTP_ADDR",
            "description": "If set (e.g. \":8080\"), serve Streamable HTTP instead of stdio"
          },
          {
            "name": "TALOS_MCP_AUTH_TOKEN",
            "description": "Required bearer token when HTTP mode is active (TALOS_MCP_HTTP_ADDR is set)"
          },
          {
            "name": "TALOS_MCP_ALLOWED_NODES",
            "description": "Comma-separated IPs, hostnames, and CIDR ranges permitted as tool targets. Unset or empty allows all nodes."
          },
          {
            "name": "TALOS_MCP_ALLOWED_PATHS",
            "description": "Comma-separated path prefixes permitted for talos_read_file and talos_list_files (e.g. /etc,/proc). Unset or empty allows all paths."
          },
          {
            "name": "TALOS_MCP_SKIP_VERSION_CHECK",
            "description": "Set to \"true\" to bypass upgrade path validation (default: false)"
          },
          {
            "name": "TALOS_MCP_RATE_LIMIT",
            "description": "HTTP mode: token-bucket refill rate in requests/second (float, default: 10)"
          },
          {
            "name": "TALOS_MCP_RATE_BURST",
            "description": "HTTP mode: token-bucket burst capacity (int, default: 20)"
          },
          {
            "name": "TALOS_MCP_MAX_BODY_SIZE",
            "description": "HTTP mode: max POST request body size in bytes (int, default: 4194304 = 4 MiB)"
          },
          {
            "name": "TALOS_MCP_MAX_CONCURRENT",
            "description": "HTTP mode: max concurrent POST handlers; returns 503 on overload (int, default: 20)"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.Nosmoht/talos-mcp-server",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.Nosmoht%2Ftalos-mcp-server/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Talos Linux MCP Server — MCP Server 安装与配置 · AgentHub