Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions turbollm/web/src/lib/mcp-catalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,18 @@ export const LOCAL_MCPS: LocalEntry[] = [
{ key: 'CONTEXT7_API_KEY', desc: 'Optional — from context7.com/dashboard for higher rate limits', required: false },
],
},
{
id: 'mcp-web-engine',
name: 'MCP Web Engine',
cat: 'Search',
desc: 'Privacy-first, self-hostable & SSRF-hardened web search engine and scraper for AI agents.',
cmd: 'uvx mcp-web-engine',
uvx: true,
argNote: 'Requires a running SearXNG instance.',
envs: [
{ key: 'SEARXNG_URL', desc: 'SearXNG meta-search endpoint (default: http://127.0.0.1:8082/search)', required: true },
],
},
]

export const CLOUD_CATS: string[] = ['All', ...new Set(CLOUD_MCPS.map((m) => m.cat))]
Expand Down