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.OAuth
The remote MCP server athttps://api.keenable.ai/mcp supports the MCP OAuth authorization flow, so clients can authenticate without manually passing an API key. In practice, most MCP clients have unstable OAuth implementations, so we don’t currently recommend this path. Use an API key instead.
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.
The search query.
Restrict results to a specific site (e.g.
"techcrunch.com").Filter to pages acquired/indexed at or after this point in time.
Filter to pages acquired/indexed at or before this point in time.
Filter to pages published at or after this point in time.
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) — resolves to00:00:00UTC on that date. - 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).
| Value | Resolves to |
|---|---|
2026-01-15 | 2026-01-15T00:00:00Z |
2026-01-15T10:30:00 | 2026-01-15T10:30:00Z (no offset → UTC) |
2026-01-15T10:30:00Z | 2026-01-15T10:30:00Z |
2026-01-15T10:30:00.500-05:00 | 2026-01-15T15:30:00.500Z |
7d | 7 days before request time, truncated to the minute |
30min | 30 minutes before request time, truncated to the minute |
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.
fetch_page_content
Fetch a URL and extract content as clean markdown. Only URLs from the index are supported; this is not a general web scraper.
The URL to fetch.
Maximum number of characters of content to return. Longer content is truncated.
url, title, and content (markdown). See the Fetch reference for the response shape.