Connect Slaash to Claude Desktop, Cursor, or VS Code via the Model Context Protocol.
The easiest way to connect. Claude auto-discovers OAuth via /.well-known/oauth-authorization-server.
In Claude → Settings → Connectors → Add custom connector, enter:
https://www.slaash.ai/mcp
Claude handles OAuth registration and token exchange automatically.
If your client requires explicit credentials, go to /keys and click "Generate OAuth credentials" to get:
Client ID: cid_xxxxxxxxxxxx Client Secret: xxxxxxxxxxxxxxxxxxxx Token URL: https://www.slaash.ai/oauth/token Authorize URL: https://www.slaash.ai/oauth/authorize
Enter these in the connector's advanced settings.
For clients that don't support OAuth, use a Bearer API key directly.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"slaash": {
"url": "https://www.slaash.ai/mcp",
"headers": {
"Authorization": "Bearer sk-your-key-here"
}
}
}
}
Add to your MCP settings (Settings → MCP Servers):
{
"name": "slaash",
"url": "https://www.slaash.ai/mcp",
"headers": { "Authorization": "Bearer sk-your-key-here" }
}
12 agent primitives exposed as MCP tools:
| Tool | Description |
|---|---|
| slaash.extract | URL + goal → ranked answer nodes (CRFR) |
| slaash.search | Web search + deep parse |
| slaash.crawl | Multi-page intelligent crawl |
| slaash.act | Click, fill forms, extract structured data |
| slaash.plan | Decompose goals into action steps |
| slaash.stream | Token-efficient streaming for large pages |
| slaash.diff | Compare page snapshots, return changes |
| slaash.render | Screenshot a page (Blitz or Chrome) |
| slaash.links | Discover and rank links |
| slaash.explore | Find hidden API endpoints (XHR/fetch) |
| slaash.learn | Teach which nodes were correct (feedback) |
| slaash.inspect | Security scan (injection + firewall) |
Once connected, Claude can use Slaash tools directly:
User: "What's the current Bitcoin price?" Claude: I'll use slaash.extract to check. [calls slaash.extract with url=coinmarketcap.com, goal="bitcoin price USD"] Result: $67,432.15 (from 3 ranked nodes, 99.2% token savings)
MCP requests count against your API key's rate limits (60 req/min, 1,000 req/day on free tier). Monitor usage at /usage.