Use Strale capabilities directly in Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
5 capabilities are free — no API key needed: email-validate, dns-lookup, json-repair, url-to-markdown, iban-validate.
For all 250+ capabilities, sign up at strale.dev for €2 in free trial credits.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"strale": {
"command": "npx",
"args": ["-y", "strale-mcp"],
"env": {
"STRALE_API_KEY": "your_api_key"
}
}
}
}Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"strale": {
"command": "npx",
"args": ["-y", "strale-mcp"],
"env": {
"STRALE_API_KEY": "your_api_key"
}
}
}
}Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"strale": {
"command": "npx",
"args": ["-y", "strale-mcp"],
"env": {
"STRALE_API_KEY": "your_api_key"
}
}
}
}For clients that support remote MCP servers (Streamable HTTP):
{
"mcpServers": {
"strale": {
"type": "streamableHttp",
"url": "https://api.strale.io/mcp",
"headers": {
"Authorization": "Bearer your_api_key"
}
}
}
}Once connected, your agent has access to these tools:
| Tool | Description |
|---|---|
strale_search |
Find capabilities by keyword (no auth required) |
strale_execute |
Run any capability |
strale_methodology |
Get quality scoring methodology |
strale_trust_profile |
Get detailed quality profile for a capability |
strale_balance |
Check wallet balance |
strale_transaction |
Look up a past transaction |
strale_ping |
Health check |
After adding the config, ask your agent:
- "Use Strale to validate the email hello@example.com"
- "Use Strale to check the DNS records for github.com"
- "Search Strale for company data capabilities"