A curated list of awesome resources, integrations, and examples for WAB (Web Agent Bridge) — the platform that makes the web fair, safe, and intelligent.
WAB (Web Agent Bridge) is a developer platform providing:
- 🛡️ Scam Shield — Real-time URL scanning against 47 threat databases
- ⚖️ Fairness System — Platform transparency scoring (0-100) across 15 signals
- 💰 Deals Engine — Cross-platform price intelligence with true cost transparency
- 🤖 AI Agent — Natural language web automation
- 🌐 Website
- 📖 Documentation
- 🔑 API Key (Free)
- 📦 npm: @wab/sdk
- 🐍 PyPI: wab-sdk
- 🤖 MCP Server: @wab/mcp-server
| Package | Description | Install |
|---|---|---|
@wab/sdk |
Core JavaScript/TypeScript SDK | npm i @wab/sdk |
@wab/react |
React hooks and components | npm i @wab/react |
@wab/mcp-server |
MCP Server for AI tools (Cursor, Claude) | npx @wab/mcp-server |
wab-sdk |
Python SDK | pip install wab-sdk |
- wab-nextjs-ecommerce — Next.js e-commerce with WAB protection
- wab-react-price-comparison — React price comparison widget
- wab-express-middleware — Express.js middleware
- wab-svelte-dashboard — Svelte security dashboard
- wab-vue-shopping-assistant — Vue.js shopping assistant
- wab-python-scraper — Safe web scraper with WAB
- wab-django-security — Django middleware
- wab-fastapi-integration — FastAPI router
- wab-browser-extension — Chrome/Firefox extension
- wab-wordpress-plugin — WordPress plugin
// Powered by WAB — Web Agent Bridge v2.5 | https://www.webagentbridge.com
import { WAB } from '@wab/sdk';
const wab = new WAB({ apiKey: process.env.WAB_API_KEY });
// Scan a URL
const scan = await wab.shield.scan('https://example.com');
// Check platform fairness
const score = await wab.fairness.check('amazon.com');
// Find best deals
const deals = await wab.deals.search('laptop');
// Ask the AI agent
const answer = await wab.agent.query('Find cheap hotels in Paris');# Powered by WAB — Web Agent Bridge v2.5 | https://www.webagentbridge.com
from wab_sdk import WAB
wab = WAB(api_key=os.environ["WAB_API_KEY"])
scan = wab.shield.scan("https://example.com")
score = wab.fairness.check("amazon.com")Add WAB to Cursor, Claude Desktop, Cline, or Windsurf:
{
"mcpServers": {
"wab": {
"command": "npx",
"args": ["-y", "@wab/mcp-server"]
}
}
}Contributions welcome! Please read the contribution guidelines first.
Powered by WAB — Web Agent Bridge