Skip to content

Commit da8f4e4

Browse files
Add Remote Server Usage section to README.md
- Introduced a new section detailing how to connect to the hosted MCP server on Render. - Provided configuration examples for Claude Desktop and Cursor, including JSON snippets. - Highlighted benefits of using the remote server, such as no local setup and automatic updates.
1 parent 273127e commit da8f4e4

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ A production-ready [Model Context Protocol](https://modelcontextprotocol.io/intr
1313
- [Quick Start](#quick-start)
1414
- [Available Tools](#available-tools)
1515
- [Setup Instructions](#setup-instructions)
16+
- [Remote Server Usage](#remote-server-usage)
1617
- [Local Usage](#local-usage)
1718
- [Google ADK Integration](#google-adk-integration)
1819
- [Example Use Cases](#example-use-cases)
@@ -214,6 +215,53 @@ Add the ScrapeGraphAI MCP server on the settings:
214215

215216
![Cursor MCP Integration](assets/cursor_mcp.png)
216217

218+
## Remote Server Usage
219+
220+
Connect to our hosted MCP server - no local installation required!
221+
222+
### Claude Desktop Configuration (Remote)
223+
224+
Add this to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
225+
226+
```json
227+
{
228+
"mcpServers": {
229+
"scrapegraph-mcp": {
230+
"command": "npx",
231+
"args": [
232+
233+
"https://scrapegraph-mcp.onrender.com/mcp",
234+
"--header",
235+
"X-API-Key:YOUR_API_KEY"
236+
]
237+
}
238+
}
239+
}
240+
```
241+
242+
### Cursor Configuration (Remote)
243+
244+
Cursor supports native HTTP MCP connections. Add to your Cursor MCP settings (`~/.cursor/mcp.json`):
245+
246+
```json
247+
{
248+
"mcpServers": {
249+
"scrapegraph-mcp": {
250+
"url": "https://scrapegraph-mcp.onrender.com/mcp",
251+
"headers": {
252+
"X-API-Key": "YOUR_API_KEY"
253+
}
254+
}
255+
}
256+
}
257+
```
258+
259+
### Benefits of Remote Server
260+
261+
- **No local setup** - Just configure and start using
262+
- **Always up-to-date** - Automatically receives latest updates
263+
- **Cross-platform** - Works on any OS with Node.js
264+
217265
## Local Usage
218266

219267
To run the MCP server locally for development or testing, follow these steps:

0 commit comments

Comments
 (0)