You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-22Lines changed: 18 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,14 +59,13 @@ This is the simplest way to get started if you have [Docker](https://www.docker.
59
59
}
60
60
```
61
61
62
-
#### Method B: Direct Download
63
-
Use this method if you prefer not to use Docker and a pre-compiled binary is available for your system.
64
-
65
-
**Steps:**
66
-
1. Open the MCP server's [GitHub releases page](https://github.com/render-oss/render-mcp-server/releases/).
67
-
2. Download the executable that corresponds to your system's architecture.
68
-
3. Note the full path to where you saved the downloaded executable.
69
-
4. Configure your MCP client with the following settings. Replace `/path/to/render-mcp-server` with the actual path to the executable and `<YOUR_API_KEY>` with your API key:
62
+
#### Method B: Using the install script (Linux/MacOS only)
63
+
1. Run the following command:
64
+
```shell
65
+
curl -fsSL https://raw.githubusercontent.com/render-oss/render-mcp-server/refs/heads/main/bin/install.sh | sh
66
+
```
67
+
2. Note the full path where the install script saved the downloaded executable. It should have a directory where it was installed e.g., `✨ Successfully installed Render MCP Server to /Users/example/.local/bin/render-mcp-server`
68
+
2. Configure your MCP client with the following settings. Replace `/path/to/render-mcp-server` with the actual path to the executable and `<YOUR_API_KEY>` with your API key:
70
69
```json
71
70
{
72
71
"mcpServers": {
@@ -79,9 +78,18 @@ Use this method if you prefer not to use Docker and a pre-compiled binary is ava
79
78
}
80
79
}
81
80
```
81
+
82
+
#### Method C: Direct Download
83
+
Use this method if you prefer not to use Docker and a pre-compiled binary is available for your system.
84
+
85
+
**Steps:**
86
+
1. Open the MCP server's [GitHub releases page](https://github.com/render-oss/render-mcp-server/releases/).
87
+
2. Download the executable that corresponds to your system's architecture.
88
+
3. Note the full path to where you saved the downloaded executable.
89
+
4. Configure your MCP client with the same settings as Method B.
82
90
> **macOS Users**: If you run the binary directly on macOS, you may need to grant an exception for it to run. See the [Limitations](#limitations) section for more details and a link to Apple's support page.
83
91
84
-
#### Method C: Build from Source
92
+
#### Method D: Build from Source
85
93
Choose this method if no pre-compiled binary suits your system, you want to build from the latest code, or you are a developer modifying the server. You will need [Go (Golang)](https://go.dev/doc/install) installed.
86
94
87
95
**Steps:**
@@ -94,19 +102,7 @@ Choose this method if no pre-compiled binary suits your system, you want to buil
94
102
```
95
103
This will create a `render-mcp-server` executable in the `render-mcp-server` directory.
96
104
3. Note the full path to this newly built executable (e.g., `./render-mcp-server` if you are in the directory, or the full absolute path).
97
-
4. Configure your MCP client with the following settings. Replace `/path/to/render-mcp-server` with the actual path to the executable and `<YOUR_API_KEY>` with your API key:
98
-
```json
99
-
{
100
-
"mcpServers": {
101
-
"render": {
102
-
"command": "/path/to/render-mcp-server",
103
-
"env": {
104
-
"RENDER_API_KEY": "<YOUR_API_KEY>"
105
-
}
106
-
}
107
-
}
108
-
}
109
-
```
105
+
4. Configure your MCP client with the same settings as Method B.
0 commit comments