tool-mcp

Install MCP bridge tools for AI assistant integration - standalone binaries, no containers required

Recipaie - Receta de despliegue

La plantilla que describe cómo desplegar este servicio.

JSON sin procesar
{
  "$schema": "https://recipaie.com/schemas/recipaie.schema.json",
  "name": "tool-mcp",
  "version": "1.0.0",
  "description": "Install MCP bridge tools for AI assistant integration - standalone binaries, no containers required",
  "prerequisites": [
    "Linux, macOS, or Windows with WSL",
    "curl or wget for downloading",
    "Claude Code, Claude Desktop, or Codex installed (for MCP client registration)"
  ],
  "steps": [
    {
      "order": 1,
      "what": "Create local bin directory",
      "why": "MCP tools install as standalone binaries in user's local bin",
      "when": "First installation of any tool-mcp client",
      "skip_if": "~/.local/bin directory already exists",
      "how": "mkdir -p ~/.local/bin",
      "verify": "ls -la ~/.local/bin exists"
    },
    {
      "order": 2,
      "what": "Add local bin to PATH",
      "why": "Ensures binaries are accessible from command line",
      "when": "If ~/.local/bin is not in PATH",
      "skip_if": "echo $PATH | grep -q '.local/bin'",
      "how": "Add 'export PATH=\"$HOME/.local/bin:$PATH\"' to ~/.bashrc or ~/.zshrc",
      "verify": "which pubdoc returns ~/.local/bin/pubdoc after shell restart",
      "comments": [
        "On macOS with zsh: add to ~/.zshrc",
        "On Linux with bash: add to ~/.bashrc",
        "On Windows WSL: add to ~/.bashrc"
      ]
    },
    {
      "order": 3,
      "what": "Download the MCP client binary",
      "why": "Each tool (pubdoc, publog, pubtask, etc.) is a separate binary",
      "when": "Installing a new MCP client or updating",
      "skip_if": "Current version matches latest (check with: pubdoc --version)",
      "how": "Download from https://binary.dixt.io - use 'make install pubdoc' from tool-mcp repo, or download binary directly for your platform (linux-amd64, darwin-arm64, etc.)",
      "verify": "pubdoc --version shows version number",
      "comments": [
        "Available clients: pubdoc, publog, pubtask, pubchk, pubmem, pubvol, pubbin",
        "Binaries are ~6-8MB each with embedded configuration",
        "Auto-updates every 24 hours from binary.dixt.io"
      ]
    },
    {
      "order": 4,
      "what": "Register with MCP clients",
      "why": "Adds the tool to Claude Code/Desktop/Codex configuration",
      "when": "After binary is installed",
      "skip_if": "Tool already registered (check ~/.claude.json or claude mcp list)",
      "how": "pubdoc register",
      "verify": "claude mcp list shows pubdoc",
      "comments": [
        "Registration modifies ~/.claude.json for Claude Code",
        "Also registers with Codex if installed",
        "Use 'pubdoc unregister' to remove"
      ]
    },
    {
      "order": 5,
      "what": "Verify MCP connection",
      "why": "Confirms the tool can communicate with remote MCP server",
      "when": "After registration",
      "how": "pubdoc --tool tool_status",
      "verify": "Response shows version, username, and connection status"
    }
  ],
  "step_count": 5
}
Versión: 1.0.0
Pasos: 5

Requisito previo

Pasos

1 Create local bin directory
Por qué
MCP tools install as standalone binaries in user's local bin
Cuándo
First installation of any tool-mcp client
Omitir si
~/.local/bin directory already exists
Cómo
mkdir -p ~/.local/bin
Verificar
ls -la ~/.local/bin exists
2 Add local bin to PATH
Por qué
Ensures binaries are accessible from command line
Cuándo
If ~/.local/bin is not in PATH
Omitir si
echo $PATH | grep -q '.local/bin'
Cómo
Add 'export PATH="$HOME/.local/bin:$PATH"' to ~/.bashrc or ~/.zshrc
Verificar
which pubdoc returns ~/.local/bin/pubdoc after shell restart
Comentarios
  • On macOS with zsh: add to ~/.zshrc
  • On Linux with bash: add to ~/.bashrc
  • On Windows WSL: add to ~/.bashrc
3 Download the MCP client binary
Por qué
Each tool (pubdoc, publog, pubtask, etc.) is a separate binary
Cuándo
Installing a new MCP client or updating
Omitir si
Current version matches latest (check with: pubdoc --version)
Cómo
Download from https://binary.dixt.io - use 'make install pubdoc' from tool-mcp repo, or download binary directly for your platform (linux-amd64, darwin-arm64, etc.)
Verificar
pubdoc --version shows version number
Comentarios
  • Available clients: pubdoc, publog, pubtask, pubchk, pubmem, pubvol, pubbin
  • Binaries are ~6-8MB each with embedded configuration
  • Auto-updates every 24 hours from binary.dixt.io
4 Register with MCP clients
Por qué
Adds the tool to Claude Code/Desktop/Codex configuration
Cuándo
After binary is installed
Omitir si
Tool already registered (check ~/.claude.json or claude mcp list)
Cómo
pubdoc register
Verificar
claude mcp list shows pubdoc
Comentarios
  • Registration modifies ~/.claude.json for Claude Code
  • Also registers with Codex if installed
  • Use 'pubdoc unregister' to remove
5 Verify MCP connection
Por qué
Confirms the tool can communicate with remote MCP server
Cuándo
After registration
Cómo
pubdoc --tool tool_status
Verificar
Response shows version, username, and connection status

Prodaie - Registro de ejecución

Qué ocurrió cuando una IA ejecutó esta receta en distintos entornos.

Diferencia clave: Cada paso añade los campos

success

(bool) y

details

(string) para registrar lo que ocurrió realmente.

JSON sin procesar
{
  "$schema": "https://recipaie.com/schemas/prodaie.schema.json",
  "name": "tool-mcp",
  "description": "Deployment record showing MCP tool installation across different platforms and common issues encountered",
  "prerequisites": [
    "Linux, macOS, or Windows with WSL",
    "curl or wget for downloading",
    "Claude Code, Claude Desktop, or compatible MCP client"
  ],
  "locations": [
    {
      "path": "macOS (Apple Silicon)",
      "description": "MacBook with M1/M2/M3 chip",
      "status": "complete",
      "step_count": 5,
      "steps": [
        {
          "order": 1,
          "what": "Create local bin directory",
          "why": "MCP tools install as standalone binaries in user's local bin",
          "when": "First installation of any MCP tool",
          "skip_if": "~/.local/bin directory already exists",
          "how": "mkdir -p ~/.local/bin",
          "verify": "ls -la ~/.local/bin exists",
          "success": true,
          "details": "created ~/.local/bin"
        },
        {
          "order": 2,
          "what": "Add local bin to PATH",
          "why": "Ensures binaries are accessible from command line",
          "when": "If ~/.local/bin is not in PATH",
          "skip_if": "echo $PATH | grep -q '.local/bin'",
          "how": "echo 'export PATH=\"$HOME/.local/bin:$PATH\"' >> ~/.zshrc && source ~/.zshrc",
          "verify": "echo $PATH | grep '.local/bin'",
          "success": true,
          "details": "added to ~/.zshrc, reloaded shell"
        },
        {
          "order": 3,
          "what": "Download the MCP client binary",
          "why": "Each MCP tool is a separate binary optimized for your platform",
          "when": "Installing a new MCP client or updating",
          "skip_if": "Current version matches latest",
          "how": "curl -LO https://example.com/mcp-tool/darwin-arm64 && chmod +x mcp-tool && mv mcp-tool ~/.local/bin/",
          "verify": "mcp-tool --version shows version number",
          "success": true,
          "details": "downloaded darwin-arm64 binary, v0.15.2"
        },
        {
          "order": 4,
          "what": "Register with MCP client",
          "why": "Adds the tool to Claude Code/Desktop configuration",
          "when": "After binary is installed",
          "skip_if": "Tool already registered in ~/.claude.json",
          "how": "mcp-tool register",
          "verify": "claude mcp list shows the tool",
          "success": true,
          "details": "registered, appears in claude mcp list"
        },
        {
          "order": 5,
          "what": "Verify MCP connection",
          "why": "Confirms the tool can communicate with remote server",
          "when": "After registration",
          "how": "mcp-tool --tool tool_status",
          "verify": "Response shows version and connection status",
          "success": true,
          "details": "connection verified, auto-update enabled"
        }
      ]
    },
    {
      "path": "Ubuntu 22.04 (WSL2)",
      "description": "Windows Subsystem for Linux - common enterprise setup",
      "status": "complete",
      "step_count": 5,
      "steps": [
        {
          "order": 1,
          "what": "Create local bin directory",
          "why": "MCP tools install as standalone binaries",
          "when": "First installation",
          "skip_if": "~/.local/bin exists",
          "how": "mkdir -p ~/.local/bin",
          "verify": "Directory exists",
          "success": true,
          "details": "created ~/.local/bin"
        },
        {
          "order": 2,
          "what": "Add local bin to PATH",
          "why": "Ensures binaries are accessible",
          "when": "If not in PATH",
          "skip_if": "Already in PATH",
          "how": "echo 'export PATH=\"$HOME/.local/bin:$PATH\"' >> ~/.bashrc",
          "verify": "Path includes .local/bin",
          "success": true,
          "details": "added to ~/.bashrc, opened new terminal to verify"
        },
        {
          "order": 3,
          "what": "Download the MCP client binary",
          "why": "Each tool is a separate binary",
          "when": "Installing or updating",
          "skip_if": "Version matches latest",
          "how": "curl -LO https://example.com/mcp-tool/linux-amd64",
          "verify": "mcp-tool --version works",
          "success": true,
          "details": "downloaded linux-amd64, had to run chmod +x first"
        },
        {
          "order": 4,
          "what": "Register with MCP client",
          "why": "Adds tool to configuration",
          "when": "After install",
          "skip_if": "Already registered",
          "how": "mcp-tool register",
          "verify": "Tool listed",
          "success": true,
          "details": "registration updated ~/.claude.json in Windows home via symlink"
        },
        {
          "order": 5,
          "what": "Verify MCP connection",
          "why": "Confirms communication works",
          "when": "After registration",
          "how": "mcp-tool --tool tool_status",
          "verify": "Shows connection status",
          "success": true,
          "details": "working, note: WSL network sometimes needs wsl --shutdown to reset"
        }
      ]
    },
    {
      "path": "Debian (ARM64 server)",
      "description": "Headless ARM server - Raspberry Pi or cloud ARM instance",
      "status": "partial",
      "step_count": 5,
      "steps": [
        {
          "order": 1,
          "what": "Create local bin directory",
          "why": "MCP tools install as standalone binaries",
          "when": "First installation",
          "skip_if": "Directory exists",
          "how": "mkdir -p ~/.local/bin",
          "verify": "Directory exists",
          "success": true,
          "details": "created ~/.local/bin"
        },
        {
          "order": 2,
          "what": "Add local bin to PATH",
          "why": "Ensures binaries are accessible",
          "when": "If not in PATH",
          "skip_if": "Already in PATH",
          "how": "Add to ~/.bashrc",
          "verify": "Path verified",
          "success": true,
          "details": "added export, sourced bashrc"
        },
        {
          "order": 3,
          "what": "Download the MCP client binary",
          "why": "Each tool is a separate binary",
          "when": "Installing or updating",
          "skip_if": "Version matches",
          "how": "Download linux-arm64 binary",
          "verify": "Binary runs",
          "success": true,
          "details": "downloaded linux-arm64, chmod +x applied"
        },
        {
          "order": 4,
          "what": "Register with MCP client",
          "why": "Adds tool to configuration",
          "when": "After install",
          "skip_if": "Headless server - no GUI client",
          "how": "Skip registration for headless use",
          "verify": "Direct invocation works",
          "success": true,
          "details": "headless server, using direct API invocation instead of registration"
        },
        {
          "order": 5,
          "what": "Verify MCP connection",
          "why": "Confirms communication works",
          "when": "After setup",
          "how": "mcp-tool --tool tool_status",
          "verify": "Shows connection status",
          "success": false,
          "details": "connection timeout, firewall blocking outbound HTTPS on port 443",
          "comments": [
            "Firewall issue resolved by adding outbound HTTPS rule",
            "ARM64 binaries work on Raspberry Pi 4/5 and AWS Graviton instances"
          ]
        }
      ]
    }
  ]
}
Ubicaciones: 3

Ubicaciones

macOS (Apple Silicon) complete

MacBook with M1/M2/M3 chip

Pasos: 5
1 Create local bin directory
Por qué
MCP tools install as standalone binaries in user's local bin
Cuándo
First installation of any MCP tool
Omitir si
~/.local/bin directory already exists
Cómo
mkdir -p ~/.local/bin
Verificar
ls -la ~/.local/bin exists
Resultado
created ~/.local/bin
2 Add local bin to PATH
Por qué
Ensures binaries are accessible from command line
Cuándo
If ~/.local/bin is not in PATH
Omitir si
echo $PATH | grep -q '.local/bin'
Cómo
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc && source ~/.zshrc
Verificar
echo $PATH | grep '.local/bin'
Resultado
added to ~/.zshrc, reloaded shell
3 Download the MCP client binary
Por qué
Each MCP tool is a separate binary optimized for your platform
Cuándo
Installing a new MCP client or updating
Omitir si
Current version matches latest
Cómo
curl -LO https://example.com/mcp-tool/darwin-arm64 && chmod +x mcp-tool && mv mcp-tool ~/.local/bin/
Verificar
mcp-tool --version shows version number
Resultado
downloaded darwin-arm64 binary, v0.15.2
4 Register with MCP client
Por qué
Adds the tool to Claude Code/Desktop configuration
Cuándo
After binary is installed
Omitir si
Tool already registered in ~/.claude.json
Cómo
mcp-tool register
Verificar
claude mcp list shows the tool
Resultado
registered, appears in claude mcp list
5 Verify MCP connection
Por qué
Confirms the tool can communicate with remote server
Cuándo
After registration
Cómo
mcp-tool --tool tool_status
Verificar
Response shows version and connection status
Resultado
connection verified, auto-update enabled
Ubuntu 22.04 (WSL2) complete

Windows Subsystem for Linux - common enterprise setup

Pasos: 5
1 Create local bin directory
Por qué
MCP tools install as standalone binaries
Cuándo
First installation
Omitir si
~/.local/bin exists
Cómo
mkdir -p ~/.local/bin
Verificar
Directory exists
Resultado
created ~/.local/bin
2 Add local bin to PATH
Por qué
Ensures binaries are accessible
Cuándo
If not in PATH
Omitir si
Already in PATH
Cómo
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
Verificar
Path includes .local/bin
Resultado
added to ~/.bashrc, opened new terminal to verify
3 Download the MCP client binary
Por qué
Each tool is a separate binary
Cuándo
Installing or updating
Omitir si
Version matches latest
Cómo
curl -LO https://example.com/mcp-tool/linux-amd64
Verificar
mcp-tool --version works
Resultado
downloaded linux-amd64, had to run chmod +x first
4 Register with MCP client
Por qué
Adds tool to configuration
Cuándo
After install
Omitir si
Already registered
Cómo
mcp-tool register
Verificar
Tool listed
Resultado
registration updated ~/.claude.json in Windows home via symlink
5 Verify MCP connection
Por qué
Confirms communication works
Cuándo
After registration
Cómo
mcp-tool --tool tool_status
Verificar
Shows connection status
Resultado
working, note: WSL network sometimes needs wsl --shutdown to reset
Debian (ARM64 server) partial

Headless ARM server - Raspberry Pi or cloud ARM instance

Pasos: 5
1 Create local bin directory
Por qué
MCP tools install as standalone binaries
Cuándo
First installation
Omitir si
Directory exists
Cómo
mkdir -p ~/.local/bin
Verificar
Directory exists
Resultado
created ~/.local/bin
2 Add local bin to PATH
Por qué
Ensures binaries are accessible
Cuándo
If not in PATH
Omitir si
Already in PATH
Cómo
Add to ~/.bashrc
Verificar
Path verified
Resultado
added export, sourced bashrc
3 Download the MCP client binary
Por qué
Each tool is a separate binary
Cuándo
Installing or updating
Omitir si
Version matches
Cómo
Download linux-arm64 binary
Verificar
Binary runs
Resultado
downloaded linux-arm64, chmod +x applied
4 Register with MCP client
Por qué
Adds tool to configuration
Cuándo
After install
Omitir si
Headless server - no GUI client
Cómo
Skip registration for headless use
Verificar
Direct invocation works
Resultado
headless server, using direct API invocation instead of registration
5 Verify MCP connection
Por qué
Confirms communication works
Cuándo
After setup
Cómo
mcp-tool --tool tool_status
Verificar
Shows connection status
Resultado
connection timeout, firewall blocking outbound HTTPS on port 443
Comentarios
  • Firewall issue resolved by adding outbound HTTPS rule
  • ARM64 binaries work on Raspberry Pi 4/5 and AWS Graviton instances