Skip to main content

Bloctopus MCP

The instructions in this guide will walk you through installing the latest version of the Bloctopus MCP.

I. Install & Start Docker

  1. If you don't already have Docker installed, follow the instructions here to install the Docker application specific to your machine (e.g. Apple Intel, Apple M1, etc.).

  2. Start the Docker daemon (e.g. open Docker Desktop)

  3. Verify that Docker is running:

    docker image ls

II. Install Kurtosis

  1. If you don't already have Kurtosis installed, follow the instructions here to install it.
  2. Start the Kurtosis engine using kurtosis engine start

III. Install the Bloctopus MCP

Choose the package manager that matches your environment:

brew install 0xbloctopus/tap/blocmcp
info

Homebrew might warn you that your Xcode is outdated or missing entirely. This is a Homebrew requirement, and has nothing to do with Kurtosis (which ships as prebuilt binaries).

To install or update your Xcode, run:

xcode-select --install

IV. Keep Bloctopus MCP Up to Date

Use the matching package manager to upgrade to the latest release whenever a new version ships:

brew update && brew upgrade 0xbloctopus/tap/blocmcp

V. Add Bloctopus MCP to Your Agent

Before connecting the MCP to an agent, create an API key in the Bloctopus platform and note both the key and secret.

  1. Press Cmd + Shift + J to open Cursor settings.
  2. Select Tools & Integrations.
  3. Click New MCP Server.
  4. Add the entry below to your configuration.

Config file: ~/.cursor/mcp.json

{
"mcpServers": {
"BloctopusMCP": {
"type": "stdio",
"command": "blocmcp",
"args": ["serve"],
"env": {"BLOCTOPUS_API_KEY": "<API_KEY>", "BLOCTOPUS_API_SECRET": "<API_SECRET>"}
}
}
}