Skip to content

Getting Started

Only Homebrew is supported for now. More installation methods will be added soon.

To install with Homebrew:

Terminal window
brew tap andreswebs/tap
brew install mcbox
Terminal window
mcbox init-config

This will create the default config files at ~/.config/mcbox if they don’t already exist:

  • ~/.config/mcbox/server.json
  • ~/.config/mcbox/tools.json
  • ~/.config/mcbox/tools.bash

The mcbox server is now ready to be used by AI agents. You can add it to your agent configuration.

For example:

  • for Claude Desktop:

    {
    "mcpServers": {
    "mcbox": {
    "command": "mcbox",
    "args": []
    }
    }
    }
  • for GitHub Copilot:

    {
    "servers": {
    "mcbox": {
    "type": "stdio",
    "command": "mcbox",
    "args": []
    }
    }
    }
  • for other MCP clients: use the command mcbox

Now that you have a working mcbox server, you can:

  • Add more tools - Follow our How to Add Tools guide
  • Integrate external programs - Create tools that call Python scripts, APIs, or databases