Skip to main content

Install

Binary

Download from GitHub Releases

Download mcpsmithy-<os>-<arch> from the latest release.

go install

go install github.com/iorubs/mcpsmithy/cmd/mcpsmithy@latest

Connect your agent

Optionally, move the binary to a directory in your PATH:

VS Code — add to .vscode/mcp.json:

{
"servers": {
"mcpsmithy": {
"command": "mcpsmithy",
"args": ["serve"]
}
}
}

Docker

# TODO: confirm final image name/registry. For now you can build from source.
docker build mcpsmithy:latest

Connect your agent

VS Code — add to .vscode/mcp.json:

{
"servers": {
"mcpsmithy": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-v", "${workspaceFolder}:/project:ro",
"-w", "/project",
"mcpsmithy:latest",
"serve"
]
}
}
}

Next steps

Once connected, you'll need a .mcpsmithy.yaml config. See the Use Cases section to find a scenario that fits your needs, then follow the tip at the bottom to generate your config with your agent.