Manual Setup
If you prefer to configure the MCP server manually instead of using the .mcpb bundle, you can edit Claude Desktop's configuration file directly.
Configuration File Location
| Platform | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
JSON Configuration
Add the following to the mcpServers section of your config file:
{
"mcpServers": {
"renovatr": {
"command": "node",
"args": ["/path/to/renovatr-mcp/dist/index.js"],
"env": {
"DESIGN_MANAGER_URL": "https://beta.renovatr.app/api/v1/mcp",
"DESIGN_MANAGER_API_KEY": "your-api-key-here"
}
}
}
}
Replace:
/path/to/renovatr-mcp/dist/index.jswith the actual path to the built MCP bridgeyour-api-key-herewith your project-scoped API key
Building from Source
If you want to build the MCP bridge from the repository source:
# Clone and navigate to the MCP client directory
cd mcp-client
# Install dependencies
npm install
# Build
npm run build
The built entry point will be at mcp-client/dist/index.js.
Environment Variables
| Variable | Required | Description |
|---|---|---|
DESIGN_MANAGER_URL | Yes | Your Renovatr MCP endpoint URL |
DESIGN_MANAGER_API_KEY | Yes | Project-scoped API key |
The bridge will exit with an error if either variable is missing.
How the Bridge Works
The MCP bridge is a lightweight Node.js process that:
- Starts a stdio MCP server using the
@modelcontextprotocol/sdk - Receives
tools/listandtools/callrequests from the client - Forwards them as JSON-RPC calls over HTTPS to your Renovatr instance
- Returns the results back via stdio
It does not cache data or maintain state — every tool call is a fresh HTTP request.
Using with Other MCP Clients
The Renovatr MCP bridge works with any MCP client that supports the stdio transport. The configuration will vary by client, but the essentials are the same:
- Command:
node - Args: path to
dist/index.js - Environment:
DESIGN_MANAGER_URLandDESIGN_MANAGER_API_KEY