AGENTKIT/WORKS

integration · tripwire tier

Xata Database Kit

Database work your agent won't get wrong — schema design, full-text search, and the queries that quietly return nothing.

PRICE$34$24
Buy now — $24

One skill file that routes all structured storage through Xata so your agent stops dumping data into JSON files that break at 10K records. Handles schema design, CRUD operations, full-text search with typo tolerance, aggregation, and free-tier budget tracking. Chains naturally with the Zyte Scraper Kit — scrape data, store it, query it, export it. All in agent language.

$ tree xata-database-kit/✓ actual contents
xata-database-kit/
├── README.md                  ← human overview + quick start
├── INSTALL.md                 ← agent reads this to install itself
├── install.json               ← manifest: destinations + verify checks
├── LICENSE                    ← MIT — commercial use OK
├── SPEC.md                    ← (authoring spec, excluded from zip)
├── skills/
│   └── xata-database/
│       └── SKILL.md           ← the skill: schema, CRUD, search, free tier
├── templates/
│   └── mcp-config.yaml        ← ready-to-paste MCP server block
└── examples/
    └── prompts.md             ← 10 known-good prompts

Why it's different

  • Works via direct API (Python) or MCP/Composio — your agent picks the right mode
  • Full-text search with typo tolerance built into the query procedure
  • Usage/cost tracking warns before storage and compute spend escalates
  • Pipeline-ready: chains with Zyte Scraper Kit (scrape → store → query → export)

Questions, answered

Do I need a paid Xata account?+

Xata Cloud is usage-priced (from $0.012/hr compute + $0.28/GB/mo storage) with a $100 onboarding credit valid for 14 days rather than an unmetered free trial; a free self-hosted open-source option is also available. Note: Xata retired its old 750,000-record free tier when it moved to Postgres branching in 2026, so budget for usage before building on it.

Does this replace PostgreSQL / Supabase?+

For agent-driven workflows, yes. Xata gives your agent a REST API instead of connection strings, ORM configs, and schema migrations. For production apps with millions of users, keep your Postgres — this is the agent's database, not your app's.

How does this work with the Zyte Scraper Kit?+

They're designed to chain: Zyte scrapes the data, Xata stores it. The kit includes pipeline prompts that go end-to-end — 'scrape books.toscrape.com and store all results in Xata' — one sentence, two kits, done.