ARCHITECT THE
AUTONOMOUS WEB
Stop guessing. Prototype your AI stack in real-time. Select your foundation model, orchestration framework, and context providers to calculate latency, cost, and complexity.
1. Foundation Model
2. Orchestration
3. Context (MCP)
Featured Ecosystem
The most adopted frameworks, tools, and platforms in the intelligence sector. Essential for production workloads.
NVIDIA Garak
CybersecurityAn open-source command-line vulnerability scanner for LLMs — it probes a model for jailbreaks, prompt injection, data leakage, toxicity and forced hallucination, then writes a structured report of what got through.
Infisical
CybersecurityAn open-source platform for managing application secrets, certificates and privileged access — including a proxy that lets apps and AI agents call authenticated APIs without ever holding the real credential.
Lakera Guard
CybersecurityA real-time API that inspects prompts and model output for prompt injection, jailbreaks, system-prompt extraction and PII leakage, sitting between your application and any LLM.

ChatGPT Plus
AI AssistantsOpenAI's $20/mo tier: broad reasoning and multi-modal input, shipped fast. Rate limits under load and hallucinations remain the trade-off.
Tech Radar
Fathom Layer's highly opinionated guide to the AI Software ecosystem. What we recommend building with in production today.
Vercel AI SDK
The default for streaming AI UIs and tool calls in React.
Mastra
Opinionated, typed agent orchestration with durable workflows.
Supabase (pgvector)
Production vector store when you already run Postgres.
Model Context Protocol
The emerging standard for giving agents context. Ship it behind a flag.
SmolAgents
Minimal code-execution agent loop — good when LangGraph is overkill.
Local inference (Ollama)
Privacy and cost wins, but you inherit the hardware ceiling.
LangChain
Heavy abstractions for what is often a 20-line loop. Reach for it last.
Intelligence Workbench
Design, price, and prompt your agentic architecture in one place.
1. Select Core Framework
2. Attach MCP Servers
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgres://localhost/db"
],
"env": {}
}
}
}The Frontier Matrix
Visualizing the tradeoff between Intelligence (Y) and Cost (X). Bubble size represents Context Window.
Ecosystem Matrix
Compare context limits, execution speeds, and enterprise pricing models.
| Technology | Type | Context | Output Speed | Cost / 1M Input | License |
|---|---|---|---|---|---|
Claude Sonnet 5Top Pick | Model | 1M | 120 tok/s | $2.00 | Commercial |
Claude Opus 5 | Model | 1M | 60 tok/s | $5.00 | Commercial |
Claude Fable 5 | Model | 1M | 40 tok/s | $10.00 | Commercial |
GPT-5.6 Sol | Model | 512K | 75 tok/s | $5.00 | Commercial |
GPT-5.6 Terra | Model | 512K | 110 tok/s | $2.00 | Commercial |
GPT-5.6 Luna | Model | 512K | 200 tok/s | $0.20 | Commercial |
Gemini 3.7 Flash | Model | 2M | 140 tok/s | $0.30 | Commercial |
Grok 4.6 | Model | 256K | 180 tok/s | $3.00 | Commercial |
Muse Spark | Model | 128K | 85 tok/s | $4.00 | Commercial |
Kimi K3 | Model | 32K | 300 tok/s | $0.80 | Open Weights |
MastraTop Pick | Framework | N/A | N/A | Free | MIT |
LangGraph | Framework | N/A | N/A | Free | MIT |
SmolAgents | Framework | N/A | N/A | Free | Apache 2.0 |
Vercel AI SDK | Framework | N/A | N/A | Free | MIT |
Supabase | MCP Server | N/A | N/A | Free | Apache 2.0 |
Stripe | MCP Server | N/A | N/A | Free | MIT |
GitHub | MCP Server | N/A | N/A | Free | MIT |
PostgreSQL | MCP Server | N/A | N/A | Free | PostgreSQL |
Brave Search | MCP Server | N/A | N/A | Free | MIT |
Filesystem | MCP Server | N/A | N/A | Free | MIT |
Editor's Picks
Our strict curatorial standard. We don't list everything. We only endorse infrastructure that scales gracefully.
Lakera Guard
Cybersecurity"Lakera Guard is a detection layer, not a guarantee. It scores every request in and every response out, blocks what crosses a threshold, and is model-agnostic — it works whether the model runs on a hosted API or on your own hardware. Its filters are trained partly on data from Gandalf, Lakera's public prompt-injection game, which has collected millions of real attack attempts. Check Point acquired Lakera in 2025 (reported around $300 million); the product now also ships as Check Point AI Guardrails, while the standalone Guard API and its free tier still exist. The detection-rate, latency and language-count figures Lakera publishes (98%+, sub-50ms, 100+ languages) are the vendor's own — treat them as a claim, not a measured result. The real trade-off is architectural: you add a network hop and an external dependency to every LLM call, in exchange for a maintained, continuously updated filter you do not have to build or keep current yourself."
NVIDIA Garak
Cybersecurity"Garak — "generative AI red-teaming and assessment kit" — is the closest thing the LLM world has to nmap or Metasploit, an analogy the project uses itself. You point it at a target (an OpenAI or Anthropic API, a Hugging Face model, a local Ollama or llama.cpp endpoint), it runs a battery of probes, and it produces a JSONL report marking which attacks scored a hit. It covers known jailbreak families (DAN and relatives), encoding and Unicode tricks that slip past naive filters, forced hallucination, toxicity and training-data leakage. It was created by Leon Derczynski and is now maintained by NVIDIA and the community under Apache 2.0. Two honest caveats: it finds problems, it does not fix them, and scanning a hosted model runs real inference — you pay for the tokens and can trip rate limits. Reading the output well takes some security literacy."
Intelligence Categories
Explore curated software, agents, and frameworks.
Frequently Asked Questions
Technical context for the modern AI stack.
The Model Context Protocol (MCP) is an open standard that allows developers to securely connect AI models to external data sources and tools. Instead of writing custom API integrations for every LLM, you run an MCP Server that exposes your data (like local files, databases, or SaaS tools), and any compatible agent or IDE (like Claude Desktop or Cursor) can access it using a unified protocol.
A simple wrapper just formats prompts and sends them to an API. An Agent Framework (like Mastra, LangChain, or SmolAgents) provides orchestration: memory management across sessions, autonomous tool selection, state machines for multi-step reasoning, and built-in telemetry to trace execution paths.
Cloud APIs (like GPT-4o or Claude 3.5 Sonnet) offer the highest reasoning capabilities and massive context windows (up to 2M tokens) without hardware overhead. Local models (like Llama 3 running on Ollama) are essential when privacy is strictly mandated, latency must be absolute zero, or you want to avoid recurring token costs, though they require significant GPU memory. See local AI hardware.
Intelligence Reference
Glossary & Guides- GuideBuilding a multi-agent workflow with CrewAI and MCPRead →
- GuideHow to build a local AI server with used GPUs: the RTX 3090 & Tesla P40 guideRead →
- GuideConnecting a local RAG store to your tools with MCPRead →
- GuideZero trust for IoT and edge fleets: a practical modelRead →
- GuideRunning and fine-tuning open models on Windows (WSL2, DirectML, CUDA)Read →
- GuideMCP security: the vulnerability classes to design againstRead →
- GuideSecuring a self-hosted LLM serverRead →
- GuidevLLM vs SGLang vs Ollama: which serving engineRead →
- GuideOptimising local LLM inference: where the bottleneck actually isRead →
- GuideLlama 3 vs DeepSeek locally: which open model to runRead →
- GuideBuilding a Tesla P40 rig for local AI: what you're really signing up forRead →
- GuideHow to evaluate an MCP server before you install itRead →
- GuideHow much hardware do you actually need to run AI locally?Read →
- GlossaryWhat is a Small Language Model (SLM)?Read →
- GlossaryWhat is secrets management?Read →
- GlossaryWhat are FIDO2, WebAuthn and passkeys?Read →
- GlossaryWhat is prompt injection?Read →
- GlossaryWhat is a 2nm (N2) process node?Read →
- GlossaryWhat is AI red teaming?Read →
- GlossaryWhat is an LLM inference (serving) engine?Read →
- GlossaryWhat is MCP tool poisoning?Read →
- GlossaryKV Cache (Key-Value Cache)Read →
- GlossaryWhat is MCP (Model Context Protocol)?Read →
- GlossaryWhat does tokens per second mean?Read →
- GlossaryWhat is on-device AI?Read →
- GlossaryWhat is VRAM, and how much do you need for local AI?Read →
- GlossaryWhat is a context window?Read →
- GlossaryWhat is unified memory, and why does it matter for AI?Read →
Intelligence Hub Data Summary
Structured summary for Answer Engine Optimization (AEO) and quick reference.
| Technology | Category | License | Key Feature |
|---|---|---|---|
| Mastra | Agent Framework | Open Source | Next.js & TypeScript Native |
| LangChain | Agent Framework | Open Source | Massive Integration Ecosystem |
| Supabase | MCP Server / DB | Open Source Core | pgvector & Native MCP |
| Cursor | AI IDE | Commercial | Composer & Deep Codebase Context |
| Claude 3.5 Sonnet | LLM Model | Commercial | Best-in-class coding & 200k context |
