AgentHubAgentHub

Squire

MCP ServerMCP Registry官方收录

io.github.reidgoodbar/squire · v0.6.5

CLI-first remote runtimes for validation and offload tasks, exposed over MCP stdio.

概览

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

安装

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

{
  "mcpServers": {
    "squire": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/reidgoodbar/squire-mcp:0.6.5"
      ]
    }
  }
}

环境变量

SQUIRE_TOKEN可选secret

Optional Squire session or headless token. The public service also supports anonymous access when no token is provided.

SQUIRE_API_BASE_URL可选

Optional API base URL override. Defaults to https://api.squire.run.

相关资源

统一 Manifest

{
  "id": "io.github.reidgoodbar/squire",
  "type": "mcp-server",
  "version": "0.6.5",
  "displayName": "Squire",
  "description": "CLI-first remote runtimes for validation and offload tasks, exposed over MCP stdio.",
  "repository": {
    "url": "https://github.com/reidgoodbar/squire",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "ghcr.io/reidgoodbar/squire-mcp:0.6.5",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "SQUIRE_TOKEN",
            "description": "Optional Squire session or headless token. The public service also supports anonymous access when no token is provided.",
            "isSecret": true
          },
          {
            "name": "SQUIRE_API_BASE_URL",
            "description": "Optional API base URL override. Defaults to https://api.squire.run."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.reidgoodbar/squire",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.reidgoodbar%2Fsquire/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Squire — MCP Server 安装与配置 · AgentHub