SEO research toolkit for MCP

Google Ads MCP

This deployment exposes a Model Context Protocol server with two lightweight tools sourced directly from Google. Pull live autocomplete suggestions and Google Trends indices without OAuth or external databases—perfect for keyword discovery inside ChatGPT Developer Mode.

Quick start

  1. Deploy or run locally with pnpm dev (Node.js 18.18+).
  2. No credentials needed—Autocomplete and Trends rely on public endpoints.
  3. Add the MCP server URL https://google-ads-mcp-nine.vercel.app/api/mcp to ChatGPT Developer Mode and invoke the sample payloads below.

Health check

Call GET https://google-ads-mcp-nine.vercel.app/api/mcp to list the available tools. A successful response looks like:

{
  "status": "ok",
  "tools": ["ping", "get_autocomplete_suggestions", "get_trend_index"]
}

Tool invocations

ToolSample payload
Ping
{
  "tool": "ping"
}
Autocomplete suggestions
{
  "tool": "get_autocomplete_suggestions",
  "input": {
    "query": "toroidal transformer"
  }
}
Trend index
{
  "tool": "get_trend_index",
  "input": {
    "keyword": "toroidal transformer",
    "timeRange": "today 12-m",
    "geo": "US"
  }
}

Need help?

Check the project README for setup details, troubleshooting steps, and deployment tips.