AI Web Search
Forge Search Tool
Real-time web knowledge in any AI tool.
All ToolsSubscribe Now
Forge Search
AI Web Search
Give any AI tool access to the live web. Forge Search routes queries through a privacy-respecting search stack (SearXNG + semantic ranking) and returns structured, AI-ready results. Works as an MCP tool in Claude Code, Cursor, or any MCP client. Your AI stops hallucinating facts that changed last month.
Features
- Real-time web results
- Privacy-respecting (SearXNG backend)
- Semantic result ranking
- Deep page content extraction
- Image and news search
- Citation formatting
- Works with any MCP client
API Endpoints
POST
/v1/tools/search/querySearch the web
POST
/v1/tools/search/deepDeep search with full page content
GET
/v1/tools/search/statsSearch statistics
GET
/v1/tools/search/healthHealth check
Use Cases
Give Claude Code access to current documentation
Research current events without knowledge cutoff
Build AI apps that need live data
Fact-check AI responses against the web
Quick Start
const res = await fetch('https://api.optima-forge.com/v1/tools/search/query', {
method: 'POST',
headers: {
'Authorization': 'Bearer ftk_search_your_key_here',
'Content-Type': 'application/json',
},
body: JSON.stringify({
query: 'Next.js 16 new features 2026',
type: 'web',
limit: 5,
}),
});
const { results, search_time_ms } = await res.json();
// results: [{ title, url, snippet, content }, ...]Ready to start?
Get your API key in seconds. $8/month, cancel anytime.