npm trawlia-mcpstdioMITupdated 10d ago
Trawlia as an MCP server: web search and page extraction, as two tools any MCP client can call.
What can you do with Trawlia?
trawlia-mcp
Trawlia as an MCP server: web search and page extraction, as two tools any MCP client can call.
Get a free key at trawlia.co/signup - 100 credits a month, no card.
Claude Code
claude mcp add trawlia --env TRAWLIA_API_KEY=twl_... -- npx -y trawlia-mcp
Claude Desktop, Cursor, and anything else reading a JSON config
{
"mcpServers": {
"trawlia": {
"command": "npx",
"args": ["-y", "trawlia-mcp"],
"env": { "TRAWLIA_API_KEY": "twl_..." }
}
}
}
The tools
trawlia_search
Ranked, deduplicated results from the live web.
| Argument | Default | Notes |
|---|---|---|
query |
required | Natural language, not keywords. |
search_depth |
basic |
basic is 1 credit and returns snippets. advanced is 2 and returns full page text. |
topic |
general |
news reaches news indexes and returns publication dates. |
max_results |
5 | Up to 20. These go into your context, so fewer is usually better. |
include_domains / exclude_domains |
- | Host filters. Subdomains are included. |
time_range |
- | day, week, month, year. |
trawlia_extract
Fetches URLs you already have and returns their readable content, with navigation, cookie banners and newsletter modals removed. 1 credit per 5 URLs, so pass the whole list at once.
What the model sees
Results come back as readable text rather than raw JSON, and carry two things a plain response would lose:
- When a page could not be read, the result says so and why, instead of presenting a snippet as though it were the article.
- A coverage line when a source was unavailable, so the model can weigh a thin result set properly rather than reporting it as a confident nothing.
Errors are readable sentences that say whether retrying is worth it. Running out of credits says so and says not to retry; a rate limit says how long to wait.
Costs
| Operation | Credits |
|---|---|
| Basic search | 1 |
| Advanced search | 2 |
| Extraction | 1 per 5 URLs |
Charged before the work and refunded on hard failure. Full price list at trawlia.co/pricing.
Not available
Search and extraction, and nothing else. There is no crawler and no long-running job to poll. If your agent needs to walk a whole site, this is the wrong server for it.
Checking it works
TRAWLIA_API_KEY=twl_... node smoke.mjs
Spends a few credits against the real API and prints what a client sees: the tool list, a rendered search, a rejected parameter, and an extraction. Not in CI, because it costs money and depends on the live web.
Environment
| Variable | Required | Notes |
|---|---|---|
TRAWLIA_API_KEY |
yes | A search-scoped key is enough and is what you should deploy. |
TRAWLIA_BASE_URL |
no | Defaults to https://api.trawlia.co. For pointing at a local server. |
Install
Add Trawlia to your client. Pick the one you use.
claude mcp add trawlia-mcp -- npx -y trawlia-mcpcodex mcp add trawlia-mcp -- npx -y trawlia-mcpamp mcp add trawlia-mcp -- npx -y trawlia-mcp{
"mcpServers": {
"trawlia-mcp": {
"command": "npx",
"args": [
"-y",
"trawlia-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"trawlia-mcp": {
"command": "npx",
"args": [
"-y",
"trawlia-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"trawlia-mcp","command":"npx","args":["-y","trawlia-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"trawlia-mcp": {
"command": "npx",
"args": [
"-y",
"trawlia-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"trawlia-mcp": {
"command": "npx",
"args": [
"-y",
"trawlia-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"trawlia-mcp": {
"command": "npx",
"args": [
"-y",
"trawlia-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"trawlia-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"trawlia-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"trawlia-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"trawlia-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y trawlia-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 3 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Aug 29, 2026 |