Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add keenableai/keenable-mcp --skill keenable-web-searchgit clone --depth 1 https://github.com/keenableai/keenable-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/keenableai/keenable-mcp/keenable-web-search)<a href="https://agentmods.dev/skills/keenableai/keenable-mcp/keenable-web-search"><img src="https://agentmods.dev/badge/skills/keenableai/keenable-mcp/keenable-web-search/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/keenableai/keenable-mcp/keenable-web-search"><img src="https://agentmods.dev/badge/skills/keenableai/keenable-mcp/keenable-web-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00073 | $0.00846 |
| Opus 5 | $0.00036 | $0.00423 |
| Sonnet 5 | $0.00015 | $0.00169 |
| Haiku 4.5 | $0.00007 | $0.00085 |
Grade A, and why
keenable-web-search scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **No dependencies.** Pure Python standard library (`urllib`), so it runs How it starts
The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Keenable Web Search 🔎
A web search and research skill. It searches the live web for current, citable information and returns ranked results with titles, URLs, and snippets. A small bundled Python script (standard library only) calls Keenable's keyless public endpoint, so there is no API key and nothing to install.
What this skill is for
Use it whenever the answer depends on information from the web rather than the model's training data:
- Research — find papers, primary sources, and background on a topic, then read the most relevant pages before drawing conclusions.
- News and current events — look up recent announcements, releases, and developments, with optional date bounds for time-sensitive topics.
- Fact-checking and citation — confirm a claim against a primary source and cite the URL.
- Company, product, and market research — gather references about an organization, product, technology, or trend.
- Documentation lookup — find official docs, changelogs, and references for a library, standard, or API.
Usage
Run the bundled script with a natural-language query (describe the ideal page, not bare keywords):
python3 scripts/search.py "official changelog for the EU AI Act 2025 amendments"
Snippets are starting points. Open the most relevant URL (e.g. with the agent's web-fetch tool) before relying on a claim, and cite the source.
Options
| Flag | What it does |
|---|---|
--site <domain> |
Restrict the search to one site, e.g. --site arxiv.org. |
--published-after / --published-before |
YYYY-MM-DD bounds on publish date, for time-sensitive research. |
--acquired-after / --acquired-before |
YYYY-MM-DD bounds on when the page was indexed. |
--json |
Raw JSON instead of formatted text. |
Examples
# News and current events
python3 scripts/search.py "latest OpenAI model announcements"
# Research papers from one site, recent only
python3 scripts/search.py "diffusion models for inverse problems" \
--site arxiv.org --published-after 2025-01-01
# Documentation lookup
python3 scripts/search.py "Python asyncio TaskGroup reference"
# Machine-readable output for downstream processing
python3 scripts/search.py "EU AI Act timeline" --json
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 98 lines · 73 tokens per session scan A 43b06c1adf3c
keenable-web-search is a skill published in the GitHub repository keenableai/keenable-mcp (4 stars, last pushed 17d ago), licensed MIT. It adds 73 tokens to every session and 846 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
tavily-search
Search the web using Tavily AI search API.
Fetch a Reddit post URL via old.reddit.com HTML scraping — the .json API is blocked for unauthenticated requests since May 2026. Returns structured data: post metadata + nested comments (with depth) + unique external links categorized (github/reddit/external). Persists into capstore tables (reddit.posts, .comments…
unbrowser
Cheap first-pass web discovery without launching Chrome — fetch SSR pages, run bounded JS, find routes/forms/API endpoints, extract structured data, and detect bot-wall or browser-only escalation points.
web-search-plus
Unified search skill with Intelligent Auto-Routing. Uses multi-signal analysis to automatically select between Serper (Google), Tavily (Research), Exa (Neural), Perplexity (AI Answers), You.com (RAG/Real-time), and SearXNG (Privacy/Self-hosted) with confidence scoring.
agent-web-search
Search the live web through the agent-web-search CLI — powered by model-native search grounding and agent search backends. Optimized for complete natural-language questions rather than keyword fragments when online sources or cross-provider web research are needed.
web-access
A set of instructions for finding and reading information on the internet, including public pages and some interactive or login-required sites.