Katzilla MCP

Katzilla MCP

Unified API for Government Data and Web Scraping

Category
Visit Server

README

Katzilla

300+ free public & government data sources behind one API key — the data API for AI agents.

npm (mcp) npm (sdk) license

Katzilla aggregates primary-source public data — US federal, case law, health, hazards, economics, 17+ international open-data portals, Eurostat, ECB, WHO, OECD, IMF, World Bank, and more — behind a single REST API and MCP server. Every response ships with structured citation metadata (source, license, URL, update frequency) and quality scoring (freshness, uptime, completeness, confidence).

Get a free API key at https://katzilla.dev/dashboard.

MCP Server

The fastest way to use Katzilla is as an MCP server in Claude Desktop, Cursor, Windsurf, Continue, or any stdio MCP client.

Claude Desktop

Edit claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "katzilla": {
      "command": "npx",
      "args": ["-y", "@katzilla/mcp"],
      "env": {
        "KATZILLA_API_KEY": "kz_your_key_here"
      }
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json (or project-local .cursor/mcp.json):

{
  "mcpServers": {
    "katzilla": {
      "command": "npx",
      "args": ["-y", "@katzilla/mcp"],
      "env": {
        "KATZILLA_API_KEY": "kz_your_key_here"
      }
    }
  }
}

Restart the client — Katzilla's tools show up in the MCP menu. Full MCP package docs: packages/mcp/README.md.

TypeScript SDK

npm install @katzilla/sdk
import { Katzilla } from "@katzilla/sdk";

const kz = new Katzilla({ apiKey: process.env.KATZILLA_API_KEY! });

const quakes = await kz.agent("hazards").action("usgs-earthquakes", {
  minMagnitude: 5,
});
console.log(quakes.data, quakes.citation);

REST API

curl -X POST https://api.katzilla.dev/agents/hazards/actions/usgs-earthquakes \
  -H "X-API-Key: kz_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"minMagnitude": 5, "limit": 10}'

Public endpoints (no auth): /health, /status, /openapi.json, /agents, /agents/tools, /agents/datasets.

Data coverage

  • US federal — congress.gov, SEC EDGAR, Federal Register, Regulations.gov, USAspending, FEC, govinfo, State Department
  • US case law — CourtListener (opinions at every level)
  • US health — FDA recalls / adverse events / devices, NIH ClinicalTrials.gov, CMS, CDC
  • US hazards — USGS earthquakes & water, NWS alerts, FEMA disasters, NASA FIRMS wildfires
  • Economics — BLS, FRED, BEA, Census ACS, Treasury Fiscal Data
  • International portals — UK, France, Germany, Canada, Australia, Brazil, Ireland, Spain, Italy, Poland, and more
  • International bodies — Eurostat, ECB, WHO, OECD, IMF, World Bank, UN Comtrade, SIPRI
  • …plus crypto, space, demographics, energy, transport, agriculture.

Full source list at https://katzilla.dev.

Repository layout

Monorepo (pnpm workspaces).

Package Purpose
packages/api Fastify 5 REST API server
packages/app React 19 + Vite SPA frontend
packages/sdk Official TypeScript SDK (npm)
packages/python-sdk Official Python SDK
packages/mcp Standalone MCP server (npm)
packages/core Shared types, schemas, utilities
packages/agents/* One package per data-source category

Development

pnpm install
pnpm build          # build all packages
pnpm dev            # dev mode (api + app in parallel)
pnpm dev:api        # api only
pnpm dev:app        # frontend only
pnpm typecheck      # typecheck all packages
pnpm test:e2e       # Playwright E2E tests (needs app on :5173)

Required env vars: DATABASE_URL, JWT_SECRET, CREDENTIAL_ENCRYPT_KEY. Data-source keys (optional, BYOK): DATA_GOV_API_KEY, FRED_API_KEY, BLS_API_KEY, etc. See .env.example.

Links

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured