Pipeworx fbiwanted
v1.0.0Search the FBI's Most Wanted list — fugitives, missing persons, and wanted individuals with photos and case details
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description (search FBI wanted) align with declared requirements: only curl is needed and the SKILL.md shows HTTP calls to a remote API that returns wanted-person records.
Instruction Scope
Instructions direct the agent to query https://gateway.pipeworx.io/fbiwanted/mcp (and provide an MCP example). This is expected for a remote-search skill, but it does send user queries to that external service — avoid sending sensitive PII in queries.
Install Mechanism
No install spec is present (instruction-only), which is low-risk. However the provided MCP config uses 'npx -y mcp-remote@latest', which would fetch and execute code from the npm registry at runtime — a common but non-zero risk if you do not trust the upstream package or gateway.
Credentials
The skill requests no environment variables, credentials, or config paths — proportional to its purpose.
Persistence & Privilege
always is false and there are no declarations to modify other skills or system-wide settings. Model invocation is allowed (default) which is normal for skills.
Assessment
This skill is coherent with its purpose: it sends search queries to the Pipeworx gateway and returns FBI wanted records. Before installing, verify you trust the gateway (https://gateway.pipeworx.io) and the Pipeworx project/homepage. Do not submit sensitive personal data or secrets in queries, since those will be transmitted to the external service. Note the MCP example uses npx to fetch mcp-remote@latest at runtime — that will execute code from npm, so if you require stricter controls, avoid using the npx-based MCP flow or inspect the package first.Like a lobster shell, security has layers — review code before you run it.
Runtime requirements
🔎 Clawdis
Binscurl
latest
FBI Wanted
Access the FBI's official Wanted persons database. Search by name, crime type, or browse the full list. Each record includes photos, physical descriptions, charges, reward information, and case details.
Tools
search_wanted— Search the FBI Wanted list by keyword (name, crime type, description). Omit the keyword to browse all entries with pagination.get_wanted_person— Full details for a specific person by their unique identifier (UID).
When to use
- Answering questions about FBI wanted fugitives or missing persons
- Building a crime awareness application with official data
- Journalism research on specific cases or crime categories
- Educational tools about law enforcement and criminal justice
Example
curl -s -X POST https://gateway.pipeworx.io/fbiwanted/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_wanted","arguments":{"query":"cyber","page":1}}}'
Returns matching entries with title, description, charges, reward, images, and status.
MCP config
{
"mcpServers": {
"pipeworx-fbiwanted": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/fbiwanted/mcp"]
}
}
}
Comments
Loading comments...
