🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

@mimicai/core

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mimicai/core

Core engine for Mimic — persona-driven synthetic data generation, schema parsing, database seeding, and MCP server

latest
Source
npmnpm
Version
0.12.1
Version published
Maintainers
1
Created
Source

@mimicai/core

Core engine for Mimic — persona-driven synthetic data generation, schema parsing, database seeding, MCP server, and test runner.

Install

npm install @mimicai/core

What's inside

  • Schema parsing — Prisma files, raw SQL DDL, or live PostgreSQL introspection
  • Blueprint generation — LLM-powered persona data via Vercel AI SDK, or pre-built JSON blueprints
  • Database seeding — Batch INSERT or COPY for high-volume seeding with FK-aware ordering
  • MCP server — Auto-generates tools from your schema for Model Context Protocol agents
  • Test runner — Keyword matching + LLM-as-judge evaluation for agent testing
  • Adapter system — Pluggable adapter registry for databases, API mocks, file storage, and events

Usage

import { loadConfig, parseSchema, generateBlueprint, seedDatabase } from '@mimicai/core';

const config = await loadConfig('mimic.json');
const schema = await parseSchema(config);
const blueprint = await generateBlueprint(schema, config);
await seedDatabase(blueprint, config);

Requirements

  • Node.js >= 22

License

Apache 2.0

Keywords

synthetic-data

FAQs

Package last updated on 06 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts