Legal
Data source: ICIJ Offshore Leaks Database (Reconciliation API)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/offshore-leaks/
claude_desktop_config.json
{
"mcpServers": {
"gnist-offshore-leaks": {
"url": "https://context.gnist.ai/mcp/offshore-leaks/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/offshore-leaks/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_offshore_leaks", "arguments": {"query": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/offshore-leaks/
3 endpoints available:
GET /rest/offshore-leaks/search_offshore_leaksGET /rest/offshore-leaks/get_offshore_entityGET /rest/offshore-leaks/report_feedback
Shell
curl "https://context.gnist.ai/rest/offshore-leaks/search_offshore_leaks?query=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/offshore-leaks/search_offshore_leaks",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"query": "example"
},
)
print(resp.json())
Command Line
Command
gc offshore-leaks
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (3)
search_offshore_leaksSearch the ICIJ Offshore Leaks Database for entities, officers, and intermediaries.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search query — name of entity, person, or intermediary. Example: 'Mossack Fonseca'. |
node_type | string | optional | Node type to search: Entity (companies/trusts), Officer (directors/shareholders), Address, Intermediary (law firms/agents), Other, Node (all). (default: "Entity") |
country | any | optional | ISO country code filter. Example: 'PA' for Panama, 'VGB' for British Virgin Islands. |
source | string | optional | Investigation to search: all, panama-papers, paradise-papers, pandora-papers, offshore-leaks, bahamas-leaks. (default: "all") |
limit | integer | optional | Max results (1-25). (default: 10) |
get_offshore_entityGet detailed properties for an offshore leaks node by ID.
| Parameter | Type | Required | Description |
|---|---|---|---|
node_id | string | required | Node ID from a search result. Example: '10022201'. |
node_type | string | optional | Node type: Entity, Officer, Address, Intermediary, Other. (default: "Entity") |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |