Stage 1: Retrieve Patchworks setup files
Introduction
Patchworks setup files are stored in a public repository named patchworks-mcp. In this stage, you will retrieve these files.
The steps
Clone the Patchworks MCP repository
Run the following commands from a terminal window to get to your home directory:
cd ~Then run the following command:
git clone https://github.com/gopatchworks/patchworks-mcpThis creates a folder named patchworks-mcp .
Check folder contents
Use the command below to change into the new patchworks-mcp folder:
cd patchworks-mcpNow check the contents of this folder, using the command below:
ls -aThe following files should be listed:
.env.example
A configuration template for environment variables required by the MCP server.
patchworks_client.py
Encapsulates all HTTP calls to the Patchworks API (i.e. logic needed to talk to the API).
pyproject.toml
Tells Python what your project is, and its dependencies (includes FastMCP).
server.py
Connects the APIs with Claude (or any MCP client) via MCP.
Install dependencies
Last updated
Was this helpful?

