From bff0d3982bce131f89c0e96a94387b37efab1f8a Mon Sep 17 00:00:00 2001 From: Adarsh Divakaran Date: Sat, 27 Jun 2026 18:11:58 +0530 Subject: [PATCH 1/2] docs: README.md - Added install instructions for more MCP clients. Changed the Cursor MCP url to fix clickability. --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c5c147..24df6cd 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A Model Context Protocol (MCP) server implementation that integrates with [SerpA [![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/) [![MIT License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE) [![Install in VS Code](https://img.shields.io/badge/Install%20in-VS%20Code-blue?logo=visualstudiocode)](https://insiders.vscode.dev/redirect/mcp/install?name=serpapi-mcp&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.serpapi.com%2FYOUR_SERPAPI_API_KEY%2Fmcp%22%7D) -[![Install in Cursor](https://img.shields.io/badge/Install%20in-Cursor-blue?logo=cursor)](cursor://anysphere.cursor-deeplink/mcp/install?name=serpapi-mcp&config=eyJ0eXBlIjoiaHR0cCIsInVybCI6Imh0dHBzOi8vbWNwLnNlcnBhcGkuY29tL1lPVVJfU0VSUEFQSV9BUElfS0VZL21jcCJ9) +[![Install in Cursor](https://img.shields.io/badge/Install%20in-Cursor-blue?logo=cursor)](https://cursor.com/en-US/install-mcp?name=serpapi-mcp&config=eyJ0eXBlIjoiaHR0cCIsInVybCI6Imh0dHBzOi8vbWNwLnNlcnBhcGkuY29tL1lPVVJfU0VSUEFQSV9BUElfS0VZL21jcCJ9) ## Features @@ -35,6 +35,28 @@ You can configure Claude Desktop to use the hosted server: } ``` +You can also add the hosted server to these MCP clients: + +**OpenClaw** +```bash +openclaw mcp add serpapi --url https://mcp.serpapi.com/YOUR_SERPAPI_API_KEY/mcp +``` + +**Claude Code** +```bash +claude mcp add --transport http serpapi https://mcp.serpapi.com/YOUR_SERPAPI_API_KEY/mcp +``` + +**Hermes** +```bash +hermes mcp add serpapi --url https://mcp.serpapi.com/YOUR_SERPAPI_API_KEY/mcp +``` + +**Codex** +```bash +codex mcp add serpapi --url https://mcp.serpapi.com/YOUR_SERPAPI_API_KEY/mcp +``` + ### Self-Hosting ```bash git clone https://github.com/serpapi/serpapi-mcp.git From 7802c066300236c4237761a7167ee7a63dab4a31 Mon Sep 17 00:00:00 2001 From: Vlad M Date: Mon, 29 Jun 2026 11:49:41 +0200 Subject: [PATCH 2/2] docs: add --transport flag to OpenClaw example OpenClaw docs require explicit --transport streamable-http for remote HTTP servers. Co-authored-by: Cursor --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24df6cd..e7a97e5 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ You can also add the hosted server to these MCP clients: **OpenClaw** ```bash -openclaw mcp add serpapi --url https://mcp.serpapi.com/YOUR_SERPAPI_API_KEY/mcp +openclaw mcp add serpapi --url https://mcp.serpapi.com/YOUR_SERPAPI_API_KEY/mcp --transport streamable-http ``` **Claude Code**