AgentHubAgentHub

MCP Sidecar

MCP ServerMCP Registry官方收录

io.github.lsequeiraa/mcp-sidecar · v0.3.2

Cross-platform MCP server for managing long-lived background processes from any MCP client

概览

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

安装

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

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

环境变量

SIDECAR_MAX_PROCESSES可选

Maximum number of concurrent managed processes (default: 10)

SIDECAR_BUFFER_SIZE可选

Output buffer size per stream in bytes (default: 1048576)

SIDECAR_KILL_TIMEOUT可选

Milliseconds to wait between graceful and forced termination (default: 5000)

SIDECAR_CLEANUP_AFTER可选

Seconds before exited processes are auto-removed. 0 disables cleanup (default: 1800)

SIDECAR_MAX_OUTPUT_SIZE可选

Global cap on bytes returned by the output tool. 0 means unlimited (default: 0)

SIDECAR_ALLOWED_EXECUTABLES可选

Comma-separated allowlist of executable names. When set, enables security mode with direct exec (no shell). Unset means security disabled.

SIDECAR_BLOCKED_PATTERNS可选

Comma-separated regex patterns to reject in commands. Only applies when security is enabled.

SIDECAR_AUDIT_LOG可选

Audit log destination. 'true' writes to cwd, 'temp' writes to OS temp dir, or a directory path. Unset disables audit logging.

相关资源

统一 Manifest

{
  "id": "io.github.lsequeiraa/mcp-sidecar",
  "type": "mcp-server",
  "version": "0.3.2",
  "displayName": "MCP Sidecar",
  "description": "Cross-platform MCP server for managing long-lived background processes from any MCP client",
  "repository": {
    "url": "https://github.com/lsequeiraa/mcp-sidecar",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "mcp-sidecar",
        "version": "0.3.2",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "SIDECAR_MAX_PROCESSES",
            "description": "Maximum number of concurrent managed processes (default: 10)"
          },
          {
            "name": "SIDECAR_BUFFER_SIZE",
            "description": "Output buffer size per stream in bytes (default: 1048576)"
          },
          {
            "name": "SIDECAR_KILL_TIMEOUT",
            "description": "Milliseconds to wait between graceful and forced termination (default: 5000)"
          },
          {
            "name": "SIDECAR_CLEANUP_AFTER",
            "description": "Seconds before exited processes are auto-removed. 0 disables cleanup (default: 1800)"
          },
          {
            "name": "SIDECAR_MAX_OUTPUT_SIZE",
            "description": "Global cap on bytes returned by the output tool. 0 means unlimited (default: 0)"
          },
          {
            "name": "SIDECAR_ALLOWED_EXECUTABLES",
            "description": "Comma-separated allowlist of executable names. When set, enables security mode with direct exec (no shell). Unset means security disabled."
          },
          {
            "name": "SIDECAR_BLOCKED_PATTERNS",
            "description": "Comma-separated regex patterns to reject in commands. Only applies when security is enabled."
          },
          {
            "name": "SIDECAR_AUDIT_LOG",
            "description": "Audit log destination. 'true' writes to cwd, 'temp' writes to OS temp dir, or a directory path. Unset disables audit logging."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.lsequeiraa/mcp-sidecar",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.lsequeiraa%2Fmcp-sidecar/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
MCP Sidecar — MCP Server 安装与配置 · AgentHub