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
12 changes: 12 additions & 0 deletions relayshield/.claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
"name": "RelayShield Security Intelligence",
"description": "Identity threat intelligence for DeFi agents — wallet risk scoring, breach detection, infostealer malware detection, and URL phishing checks. Run security checks before executing transactions or accepting counterparties.",
"plugins": [
{
"name": "relayshield",
"source": ".",
"category": "tools"
}
]
}
12 changes: 12 additions & 0 deletions relayshield/.mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"mcpServers": {
"relayshield": {
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/mcp-server/dist/index.js"],
"env": {
"RELAYSHIELD_API_KEY": "${RELAYSHIELD_API_KEY}",
"RELAYSHIELD_API_URL": "${RELAYSHIELD_API_URL}"
}
}
}
}
36 changes: 36 additions & 0 deletions relayshield/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# RelayShield Security Intelligence — Bankr Plugin

Identity threat intelligence for DeFi agents. Run security checks before executing transactions, evaluating counterparties, or navigating protocol links.

## Tools

| Tool | Use case |
|---|---|
| `relayshield_check_wallet` | Score a wallet for sanctions, darknet, mixer exposure before sending funds |
| `relayshield_check_breach` | Check an email for known data breach exposure |
| `relayshield_check_infostealer` | Detect near-real-time device compromise via infostealer malware logs |
| `relayshield_scan_url` | Scan a DeFi protocol, airdrop, or NFT mint URL for phishing/malware |

## Setup

1. Get a free API key at [rapidapi.com/relayshield/relayshield-security-intelligence](https://rapidapi.com/relayshield/relayshield-security-intelligence)
2. Set `RELAYSHIELD_API_KEY` in your environment
3. Build: `cd mcp-server && npm install && npm run build`

## Environment variables

| Variable | Required | Description |
|---|---|---|
| `RELAYSHIELD_API_KEY` | Yes | RapidAPI subscription key |
| `RELAYSHIELD_API_URL` | No | Override API base URL (default: RapidAPI endpoint) |

## Example usage

```
Before executing a swap: check_wallet on the counterparty address, then scan_url on the protocol link.
```

## Pricing

Free tier: 100 calls/month. Paid plans from $29/month on RapidAPI.
Pay-as-you-go via x402 (USDC on Base or Solana) also supported — contact support@relayshield.net.
1 change: 1 addition & 0 deletions relayshield/mcp-server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
Loading