API & Connectors
Proofled plugs into the tools you already sell with
API & connectors
Use Proofled from Make.com, n8n, and Claude Cowork. External tools need an API key. The website scanner stays free in the browser.
Prefer step-by-step docs? See Docs.
v1 endpoints live
MCP endpoint live
API-key flows
first delivery channel
Paste this as a custom connector remote MCP URL (replace with your real key):
https://proofled.sheessaleemllc.com/mcp?api_key=YOUR_API_KEY
- Claude → Customize → Connectors → Add custom connector
- Name: Proofled
- Paste the URL above
- Enable in Cowork → ask Claude to scan a website or find LinkedIn / email (Connect)
Full guide: Docs → Claude Cowork
Preferred: create a key under Settings → API keys after admin approval. Or add a server key in your hosting environment variables:
STACKSIGNAL_API_KEY=your_secret_here
Authorization: Bearer YOUR_API_KEY # or X-API-Key: YOUR_API_KEY
Base URL: https://proofled.sheessaleemllc.com
| What | How |
|---|---|
| Health (no key) | GET /api/v1/health |
| Scan one site | POST /api/v1/scan |
| Scan many (plan bulk limit) | POST /api/v1/bulk |
| OpenAPI | GET /api/v1/openapi |
| MCP (Claude) | POST /mcp |
Example
POST https://proofled.sheessaleemllc.com/api/v1/scan
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{"url":"https://example.com"}Make.com
- HTTP → Make a request
- POST
https://proofled.sheessaleemllc.com/api/v1/scan - Headers: Authorization = Bearer YOUR_KEY, Content-Type = application/json
- Body JSON: {"url":"https://example.com"}
n8n
- HTTP Request node · POST · same URL
- Header Authorization: Bearer YOUR_KEY
- JSON body with your URL field
If remote connectors are not on your plan, use the local bridge file in GitHub: mcp/stacksignal-bridge.mjs. It speaks MCP over stdio and forwards to the live /mcp endpoint, so all 7 tools stay in sync (scan_website, analyze_gaps, find_connect, bulk_scan, draft_pitch, list_signals, list_capabilities).
{
"mcpServers": {
"stacksignal": {
"command": "node",
"args": ["./mcp/stacksignal-bridge.mjs"],
"env": {
"STACKSIGNAL_API_URL": "https://proofled.sheessaleemllc.com",
"STACKSIGNAL_API_KEY": "YOUR_API_KEY"
}
}
}
}