-
Total Records
-
Data Entities
-
MCP Tools
Data Explorer
Select an entity from the dropdown to preview data
MCP Integration
https://data.auditswarm.com/mcp
Available MCP Tools
get_schema
Get database schema with all tables, columns, types, and row counts. Call this first to discover available data.
query_data
Query any table with filtering, sorting, and pagination. Supports SQL WHERE clauses and ORDER BY.
Example Requests
1. Get Schema (discover all tables)
curl -X POST "https://data.auditswarm.com/mcp" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_schema",
"arguments": {}
}
}'
2. Query Data (find related party vendors)
curl -X POST "https://data.auditswarm.com/mcp" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "query_data",
"arguments": {
"table": "Vendors",
"filter": "isRelatedParty = 1",
"limit": 10
}
}
}'