Want a free personalized recommendation for your software stack?Get yours
That Marketing Buddy
Home/MCP/Searchable
Searchable

Searchable MCP Server

Yes. Searchable ships one of the widest MCP surfaces in AI search: 52 read-only tools at mcp.searchable.com/mcp, secured with OAuth 2.1 and PKCE, and included on every paid plan rather than gated to enterprise.

OFFICIAL MCP✓ alivePublic APIAuth: OAuth 2.1 (PKCE + Dynamic Client Registration)LLMs: Claude (Desktop/Web), Claude Code, ChatGPT, Cursor, Windsurf
MCP status verified 2026-07-30Agent-readiness 9/10
Data from Buddy's database, auto-rechecked weekly

What is the Searchable MCP server?

Searchable tracks how AI engines answer questions about your brand, and its MCP server is how you hand that whole dataset to an agent. The count is the headline: 52 read-only tools, which is not a thin reporting endpoint but essentially the product's read model exposed over one connection.

The tools map to how you actually investigate. Visibility (get_visibility, get_visibility_by_prompt, get_visibility_by_topic, get_visibility_by_location, get_share_of_voice, get_competitors), sources and citations (search_sources, get_source_domain, get_source_page_content, get_source_trends), sentiment (get_sentiment, get_sentiment_history, get_sentiment_competitors), query fanout, prompts and raw answers (list_prompts, get_prompt_answers), site health (get_site_health, get_page_audits, get_website_issues, get_issue_details), content (list_articles, get_article, get_opportunities), and the traffic joins most rivals skip: get_ga4_traffic, get_gsc_performance, get_ai_traffic, plus get_shopping_visibility and get_ads.

Writes exist but are deliberately fenced. The server is read-only by default and the write actions, generate_report, trigger_audit and refresh_sitemap, are scope-gated, so an agent cannot mutate anything unless you granted the scope. Auth is OAuth 2.1 with PKCE and Dynamic Client Registration, meaning you sign in and approve rather than pasting a key into a config file. The older API-key connection still works and is documented as legacy.

For the rest of the picture see the Searchable review, full pricing breakdown, .

Inside Claude / Cursor / Codex

What you can build with the Searchable MCP

Illustrative workflow examples. Exact tool names, parameters, and outputs come from Searchable's MCP server schema — check the docs for the live surface.

searchable-mcplive
>Show me my top 10 keywords by traffic this month
searchable.get_top_keywords({ limit: 10 })
TOP 5 KEYWORDS · LAST 30 DAYS
marketing automation12,400 visits
email marketing software8,920 visits
seo tools 20266,310 visits
best crm small business4,580 visits
mcp marketing tools2,140 visits
Scale to top 50? Just ask.
searchable-mcplive
>Which competitors rank for keywords I'm losing positions on?
searchable.compare_competitor_overlap()
LOSING POSITIONS · 3 KEYWORDS
marketing automation tools→ rival.com (#3)
best email marketing 2026→ competitor.io (#1)
ai marketing assistant→ newentrant.ai (#5)
Want a full SERP gap report?
searchable-mcplive
>Audit my newest blog post and flag low-effort SEO fixes
searchable.audit_url({ url: "mysite.com/post" })
QUICK WINS · 3 FOUND
Missing meta descriptionfix in 30s
H1 doesn't match target keywordfix in 1m
No internal links to top pagesfix in 2m
TMB SCORE FOR SearchableMCP: OfficialAgent fit: 9/10
Read review →

Access, auth, and limits

Point your client at https://mcp.searchable.com/mcp and sign in. Searchable uses OAuth 2.1 with PKCE and Dynamic Client Registration, so the client registers itself, opens Searchable in your browser, and shows a consent screen listing what it will be allowed to do. No API key in a config file, and origin validation on the server side. Probed on 2026-07-30, an unauthenticated JSON-RPC initialize returns 401, so the endpoint is live and genuinely gated. An API-key connection is still documented as the legacy path if your client cannot do OAuth.

The plan rule is simple and worth stating plainly: MCP requires a paid Searchable plan, and both connection methods are unavailable on the free plan, as are API keys. Once you are paying, though, there is no further tier-gating, MCP is listed on Pro at $125/mo exactly as it is on Enterprise at $999/mo. Safety defaults are sensible: read-only unless you grant write scope, and the three write tools (generate_report, trigger_audit, refresh_sitemap) are the low-risk kind.

Where it works and what to build

Client coverage is broad because it is a remote streamable-HTTP server: Claude.ai on web and mobile as a connector, Claude Desktop and Claude Code, ChatGPT through developer-mode connectors, Cursor, Windsurf, and anything else that speaks MCP. Nothing to install per machine, and interactive cards render results inline in clients that support them.

Where it earns its keep is the question a dashboard makes tedious. Ask why your visibility on a topic dropped, and the agent can pull get_visibility_by_topic, check get_share_of_voice against competitors, look at which domains the models cited with search_sources, then cross-reference get_gsc_performance and get_ai_traffic to see whether real traffic moved with it. That chain is four dashboards and a spreadsheet by hand. With write scope granted it can finish by calling trigger_audit and generate_report so the follow-up work is queued and the summary is ready to send.

Which AI clients can use Searchable MCP?

Not every AI assistant supports MCP natively. Per-client picture for Searchable:

ClientSupportNotes
Claude (Desktop/Web)Via connectorsAdded as a connector on Claude.ai (web and mobile) and Claude Desktop; OAuth sign-in, no key pasting.
Claude CodeNative MCPDocumented client for the mcp.searchable.com/mcp streamable HTTP server.
ChatGPTVia connectorsSupported through ChatGPT developer-mode connectors.
CursorNative MCPStandard MCP config against the same server URL.
WindsurfNative MCPListed as supported alongside any other MCP-compatible client.

How to connect Searchable MCP to Claude Desktop

Add this block to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows), then restart Claude Desktop. Cursor and Codex use a similar schema.

{
  "mcpServers": {
    "searchable": {
      "command": "npx",
      "args": ["mcp-remote", "<YOUR_MCP_URL>"]
    }
  }
}
// HTTP-transport MCP. Get your <YOUR_MCP_URL> from the vendor dashboard.
// Server source: https://mcp.searchable.com/mcp
// Claude Code (one-liner): claude mcp add searchable <YOUR_MCP_URL> --transport http

Some MCP servers require an API key. Check the source page for setup: mcp.searchable.com/mcp.

Does Searchable MCP cost extra?

Community (free)

The Searchable MCP server is community-built — free to run, but you still pay for your Searchable subscription.

  • Community MCPs are normally self-hosted from a GitHub repo. There's no extra license fee.
  • Your Searchable account still needs whatever plan is required to access the data the MCP server queries.
  • Trade-off: zero MCP cost, but no guarantee it'll keep working when Searchable changes their UI or API.
MCP cost
Free (self-hosted)
Subscription required
Yes (your tool plan)
Maintained by
Community

Searchable also publishes a REST API

Searchable publishes an API, but per-tier gating wasn't extracted automatically.

API docs
Auth method
SDK languages
OpenAPI spec
Webhooks
Structured outputs
See Searchable API page

What you can do with Searchable from an AI agent

Three shapes of agent workflow. Pick the row that matches how you actually use Claude / Cursor / Codex day to day.

INDIE / SOLO

Skip the dashboard, ask Claude

  • "What keywords moved this week?" answered in seconds
  • Quick one-off questions without leaving the editor
  • Pipe Searchable data into your personal notes / docs without writing a script
Effort: 30 seconds — paste the config, restart Claude
AGENCY

Run client analysis at agent speed

  • Hand the MCP server to your team — every consultant can ask Claude about any client's Searchable account
  • Multi-account workflows without context-switching the Searchable UI
  • Reports you'd normally spend hours on, done before standup
Effort: An afternoon — set up auth per client
IN-HOUSE TEAM

Production agent workflows

  • Embed in your internal Codex / Cursor agents that triage Searchable data daily
  • Combine with other MCP servers in a multi-step agent chain
  • Constrain agents to read-only roles to keep production Searchable safe
Effort: Days — security review + role config

Limits and gotchas

  • Official MCP server — published by Searchable themselves, so it should track product changes.
  • Fallback: the REST API works for any flow the MCP server doesn't cover.
  • Rate limits: MCP calls count against your underlying Searchable API quota. Burst usage from a curious agent can drain a daily allowance fast.
9/10

Agent-readiness verdict

A 9, and the reason Searchable is worth a look even next to cheaper trackers. The surface is broad enough that an agent can run a real investigation rather than fetch one metric, the auth is the modern pattern rather than a key in a JSON file, read-only-by-default with scoped writes is the right safety posture, and access is on the $125 entry plan instead of behind an enterprise upsell. What keeps it off a 10: no webhooks, so an agent cannot be woken by a change, and MCP needs a paid plan, so there is no free way to prototype against it.

Scored by Joonas (TMB).

Searchable MCP & API FAQ

Is the Searchable MCP server official?+
Yes — an official, vendor-maintained server at null.
Can I use the Searchable MCP with Cursor or Codex?+
Yes — MCP is a protocol, not Claude-specific. Any MCP-capable client (Cursor, Codex, Windsurf, Zed) can use the same server config with minor path adjustments.

Sources

Data verified by Joonas on the dates shown. MCP server status auto-rechecked weekly.

Joonas Rotko
Joonas RotkoAuthor & Founder of That Marketing Buddy

10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

Searchable

Try Searchable
WEEKLY NEWSLETTER

The marketing tools worth your money, scored for AI agent readiness

Every week I score the tools for MCP, API, and agent-readiness, then email you the ones that actually deliver, what plugs into Claude and Cursor, the pricing changes, and what to skip. No fluff, no daily spam.

Join for free. One email a week, unsubscribe anytime.