Skip to content

Installation

From Source

Prerequisites

  • Go 1.21 or later

Install via go install

go install github.com/plexusone/multispec/cmd/multispec@latest

This installs the multispec CLI to your $GOPATH/bin directory.

Build from Source

git clone https://github.com/plexusone/multispec.git
cd multispec
make build

The binaries will be placed in the bin/ directory:

  • bin/multispec - Main CLI
  • bin/multispec-mcp - MCP server

Install Locally

make install

This copies the binaries to $GOPATH/bin.

Verify Installation

multispec --version
multispec --help

MCP Server

The MCP server is a separate binary for integration with AI assistants:

# Install both binaries
go install github.com/plexusone/multispec/cmd/multispec@latest
go install github.com/plexusone/multispec/cmd/multispec-mcp@latest

See MCP Server for configuration details.