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-2Lines changed: 18 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,11 +70,27 @@ To add this MCP server to [Claude Desktop](https://claude.ai/download):
70
70
71
71
You can easily access this file via the Claude Desktop app by navigating to `Claude > Settings > Developer > Edit Config`.
72
72
73
-
2. Create the binary
73
+
2. Get the binary
74
+
75
+
You have two options to obtain the MCP server binary:
76
+
77
+
**Option A: Download from Releases (Recommended)**
78
+
79
+
1. Go to the [releases page](https://github.com/perses/mcp-server/releases)
80
+
2. Download the appropriate binary for your operating system and architecture
81
+
3. Extract the binary to a location of your choice
82
+
4. Make the binary executable (on Unix-like systems):
83
+
```bash
84
+
chmod +x /path/to/mcp-server
85
+
```
86
+
5. Copy the absolute path to the binary to use in your MCP server configuration
87
+
88
+
**Option B: Build from Source**
89
+
74
90
```bash
75
91
make build
76
92
```
77
-
This should create a `bin` directory which contains the binary named `mcp-server`. Copy the absoluate path to the binary to use in your MCP server configuration.
93
+
This should create a `bin` directory which contains the binary named `mcp-server`. Copy the absolute path to the binary to use in your MCP server configuration.
78
94
79
95
3. Add the following JSON block to the configuration file:
0 commit comments