Installation
One-click install
Add Keenable to Cursor or VS Code with a single click:Install via CLI
The easiest way to set up the Keenable MCP server for local coding agents is via the Keenable CLI. Once you’ve installed the CLI, run the following to be guided through the MCP server setup.Claude Code
Add the Keenable MCP server with the Claude Code CLI:Codex
Add the following to~/.codex/config.toml
Other MCP clients
For Claude Desktop, Cursor, Windsurf, and similar:After adding the Keenable MCP, disable any built-in or third-party search/fetch tools (
WebSearch, WebFetch, brave_search, tavily_search, etc.). Keenable tools replace them — leaving both active causes agents to pick inconsistently.Claude and ChatGPT (remote connectors)
Claude (Desktop, claude.ai, mobile) and ChatGPT connect to the remote MCP server through their custom connector UI — no config file needed. The connection is made from the vendor’s cloud, so your server just needs to be reachable at its public URL.1
Add the connector
In Claude: open a chat, click the + in the composer → Connectors → Add connector (or Settings → Connectors → Add custom connector). In ChatGPT: Settings → Connectors → Add. Paste the server URL and leave OAuth Client ID / Secret empty:
2
Connect
A newly added connector isn’t active until you connect it. Open Manage connectors, find Keenable, and click Connect. The standard connector works with no account — the tools appear immediately.
3
Enable it in a chat
In the composer, click + → Connectors and toggle Keenable on for the conversation.
WebQL (full page content, sign-in required)
WebQL is a deeper search profile that returns full page content per result. It’s available to signed-in users through a second connector. Add it with theforced_search_mode=webql parameter:
Available tools
Two tools are exposed by the MCP server.search_web_pages
Search the web and return ranked results with URLs, titles, and descriptions.
string
required
The search query.
string
Restrict results to a specific site (e.g.
"techcrunch.com").string
Filter to pages acquired/indexed at or after this point in time.
string
Filter to pages acquired/indexed at or before this point in time.
string
Filter to pages published at or after this point in time.
string
Filter to pages published at or before this point in time.
Date and time filters
acquired_after, acquired_before, published_after, and published_before each accept one of the following formats:
- Date in RFC 3339
full-dateform (YYYY-MM-DD) — covers that whole day in UTC. On an_afterbound it resolves to00:00:00on that date; on a_beforebound it resolves to23:59:59.999on that date, so pages from the named day are kept at either end. Pass a timestamp instead to cut at an exact instant. - Timestamp in ISO 8601 form (
YYYY-MM-DDTHH:MM:SS[.sss][±HH:MM]). When a timezone offset is not provided, the timezone is interpreted as UTC. - Relative delta (
<number><unit>, e.g.7d,30min) — resolves to the request time minus the delta, truncated to minute precision. Supported units:min(minutes),h(hours),d(days),mo(months),y(years).
Relative deltas may be combined with absolute values across the two bounds of a window:
2026-05-18T14:23:45Z, acquired_after: "2h" resolves to 2026-05-18T12:23:00Z — a document acquired at 12:22:59Z is dropped, one acquired at 12:23:00Z is kept.
Mind the difference between a date and a timestamp on a _before bound: acquired_before: "2026-05-01" keeps a page acquired at 2026-05-01T14:31:13Z, while acquired_before: "2026-05-01T00:00:00Z" drops it. Use the date form to mean “up to and including that day”, and the timestamp form to cut at midnight.
fetch_page_content
Fetch a URL and extract content as clean markdown. By default only URLs from the index are supported; this is not a general web scraper. Pass live=true to fetch directly from the source, including URLs that are not indexed.
string
required
The URL to fetch.
integer
default:"50000"
Maximum number of characters of content to return. Longer content is truncated.
boolean
default:"false"
Fetch the page live from the source instead of returning Keenable’s indexed copy. Enables fetching URLs that are not indexed.
string
Optional extraction instruction, at most 2000 characters. When set, an LLM reads the fetched page and the returned content is only the output for this instruction instead of the full page. Example:
List all pricing tiers with their monthly prices.url, title, and content (markdown). See the Fetch reference for the response shape.
Metadata for integrators
Platforms embedding Keenable’s MCP tools can read billing usage and control tool behaviour through the MCP_meta side channel. _meta travels alongside the tool result or request and is not part of the model-visible tool content, so none of it enters the agent’s context.
Usage metadata (response _meta)
Every billed (authenticated) tool call returns usage under _meta["keenable/usage"], so you can attribute cost per call without parsing the tool’s text output. Anonymous / unbilled calls omit it.
string
Billing SKU for the operation:
search.realtime, search.pro, search.webql (the WebQL connector), fetch, or fetch.live.integer
Number of billed operations — always
1 for a single tool call.number
Credits metered for this call (the org-specific price for the operation).
boolean
true when drawn from paid credits; false while still on the free allowance.Operator overrides (request _meta)
To control tool behaviour yourself instead of letting the model decide, send overrides under _meta["keenable/overrides"] on a tools/call request. They take precedence over the arguments the model generated.
string
Force the search mode:
realtime or pro. Overrides any mode the model chose.boolean
Bypass cached results for this call.
forced_search_mode still takes precedence over a per-call mode override.
WebQL is connector-only: webql is not a valid per-call mode override (it is ignored), and overrides cannot switch a request into or out of WebQL. To use WebQL, connect with forced_search_mode=webql; those calls are billed under the search.webql SKU.