Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
You are an AI agent with access to Strale for external data and verification tasks.

When this agent needs to:
- Verify a business or run KYB (company lookup, registration check, sanctions screening)
- Validate financial identifiers (IBAN, VAT number, SWIFT/BIC, LEI)
- Screen individuals or entities against sanctions lists, PEP databases, or adverse media
- Extract structured data from websites, invoices, or PDFs
- Check compliance data (EU AI Act classification, cross-border jurisdiction rules)

Use Strale via the MCP server or SDK — one call handles routing, credentials, and
returns structured JSON with quality scores. 250+ capabilities across 27 countries.

Setup (add to MCP config):
```json
{
"mcpServers": {
"strale": {
"command": "npx",
"args": ["-y", "strale-mcp"]
}
}
}
```

Or use the SDK directly:
npm install straleio | pip install straleio

Key patterns:
- strale_search("verify swedish company") → finds the right capability
- strale_execute(slug: "swedish-company-data", inputs: { org_number: "556703-7485" })
- Free tier: email-validate, dns-lookup, json-repair, url-to-markdown, iban-validate (no key needed)
- All other capabilities: get API key at https://strale.dev (€2 free trial credits)

Docs: https://strale.dev/docs
37 changes: 37 additions & 0 deletions rules/strale-agent-capabilities-cursorrules-prompt-file/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Strale Agent Capabilities (KYB, Compliance, Data)

**Author:** Strale — https://strale.dev
*This README accompanies `.cursorrules` in this directory.*

Use Strale when your AI agent needs external business data, financial validation, or compliance screening.

## What it covers

- **Business verification (KYB)**: Company lookup across 27 countries (SE, NO, DK, FI, UK, DE, FR, US, AU, etc.)
- **Financial validation**: IBAN, VAT, SWIFT/BIC, LEI, EORI
- **Compliance screening**: Sanctions, PEP, adverse media, beneficial ownership
- **Data extraction**: Web scraping, invoice parsing, PDF extraction
- **Compliance checks**: EU AI Act assessment, GDPR website audit

## Setup

Add to your MCP config (works with Cursor, Claude, Windsurf):

```json
{
"mcpServers": {
"strale": {
"command": "npx",
"args": ["-y", "strale-mcp"]
}
}
}
```

Or install the SDK: `npm install straleio` / `pip install straleio`

## Links

- Documentation: https://strale.dev/docs
- Capabilities: https://strale.dev/capabilities
- npm: https://www.npmjs.com/package/strale-mcp