Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the connector in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
Google web, news and Scholar search from any AI agent via the Serply API. 3 tools, API-key auth.
💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → Serply, paste your credentials, mint an MCP API key — done. No Docker, no
git clone, no local server.
Serply + Cursor
Google web, news and Scholar search from any AI agent via the Serply API. 3 tools, API-key auth.
Prerequisites
See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:
SERPLY_API_KEY
Step 1 — Get credentials
This connector wraps the Serply REST API (api.serply.io), which returns Google search results as JSON.
Setup:
- Create an account at https://serply.io (2,500 free credits, no card required) and copy the API key from the dashboard.
- Set
SERPLY_API_KEY.
Authentication: the key is sent as the X-Api-Key header on every call, so it never appears in a logged URL.
…(continued in the in-app connector instructions)
Step 2 — Install the adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Step 3 — Add the connector in Cursor
Cursor reads MCP servers from ~/.cursor/mcp.json. Add this entry:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "X-API-Key": "YOUR_MCP_API_KEY" }
}
}
}
- Get your MCP API key from AnythingMCP → MCP Servers → your server → API keys.
- Save the file and restart Cursor.
- Open Cursor → Settings → MCP to verify
Serplyis listed and "Connected". - Start chatting — all
Serplytools are now invokable.
Available tools
| Tool | What it does |
|---|---|
serply_search | Google web search via Serply |
serply_news | Google News search via Serply |
serply_scholar | Google Scholar search via Serply |
FAQ
Does Cursor support custom MCP servers on the free tier? Yes — MCP is available on Hobby, Pro and Business plans.
Next steps
Was this guide helpful?