tools/compliance/data_licence_review
newcompliancev0.3.0pro · $0.002/call

fizzgig__data_licence_review

cross-references known data sources against your attribution text + commercial use.

Sticky tool — re-run after every new third-party data integration. 35 known data sources catalogued: UK gov OGL (Companies House, Land Registry, Environment Agency, Ofsted, ONS, EPC); global open (GLEIF, Wikidata, Wikipedia, OpenStreetMap, GeoNames, World Bank, REST Countries, Open Food Facts, MusicBrainz, Our World in Data); US gov public-domain (EDGAR, NASA, Census, NOAA, USGS, FRED); sustainability disclosures (CDP, SBTN); proprietary mapping (Mapbox, Google Maps); proprietary property (Rightmove, Zoopla); proprietary content/media/weather APIs (Unsplash, TMDB, OpenWeather, YouTube, Spotify). Catches missing attribution for OGL/CC-BY data, share-alike collisions (ODbL/CC-BY-SA in a proprietary product), and TOS-forbidden commercial scraping.

new v0.3.0 pro
// input schema
schema · application/json
{
"type": "object"
"required": [
"project"
]
"properties": {
"project": {
"type": "string"
"description": "the project slug or path"
}
"strict": {
"type": "boolean"
"default": false
"description": "fail on warnings, not just errors"
}
}
}
// output schema
schema · application/json
{
"type": "object"
"properties": {
"ok": {
"type": "boolean"
}
"findings": {
"type": "array"
"items": {
"type": "object"
"properties": {
"severity": {
"enum": [
"info"
"warn"
"high"
"critical"
]
}
"message": {
"type": "string"
}
"fix": {
"type": "string"
}
}
}
}
}
}
// example call from cursor
~/myapp — example output
fizzgig__data_licence_review(project="myapp")
{
"ok": false,
"findings": [
{ "severity": "high",
"message": "policy uses user_id without auth.uid()",
"fix": "USING (auth.uid() = user_id)" }
],
"scanned": 3, "duration_ms": 142
}
// reviews
@maya.codes★★★★★
2 days ago

caught a policy that would have leaked every user's comments. shipped a fix in 4 minutes.

@solo_at_3am★★★★★
1 week ago

first tool i installed. it's the one that pays for itself.

@vibebuilder★★★★
2 weeks ago

works great. one false positive on a join table — easy to ignore.

// primary action
add to your editor
paste this into your mcp config.
.cursor/mcp.json
{
  "fizzgig": {
    "url": "https://mcp.fizzgig.ai",
    "tools": ["data_licence_review"]
  }
}
full setup guide →
// pricing
$0.002 / call
included free in pro plan.